/* LABDE Events module — brand colours from the LABDE logo */
.labde-events {
    --labde-blue: #426F98;
    --labde-deep: #1F3B51;
    --labde-pink: #832450;
    --labde-dark: #0F1F2C;
    --labde-line: #E3E7EB;
    --labde-grey: #6B7A89;
}

.labde-events__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.labde-events__item + .labde-events__item {
    border-top: 1px solid var(--labde-line);
}

.labde-events__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 2px;
    text-decoration: none;
    color: inherit;
    transition: background .15s ease;
}

.labde-events__link:hover {
    background: rgba(66, 111, 152, .06);
    text-decoration: none;
}

.labde-events__thumb {
    flex: none;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--labde-line);
}

.labde-events__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.labde-events__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.labde-events__title {
    font-weight: 700;
    font-size: 14.5px;
    line-height: 1.35;
    color: var(--labde-dark);
}

.labde-events__meta {
    font-size: 12.5px;
    color: var(--labde-grey);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.labde-events__time {
    color: var(--labde-pink);
    font-weight: 700;
}

.labde-events__venue::before {
    content: "· ";
    color: var(--labde-line);
}

.labde-events__org {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--labde-blue);
    font-weight: 600;
}

.labde-events__orglogo {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
}

.labde-events__empty {
    font-size: 13.5px;
    color: var(--labde-grey);
    margin: 6px 0;
}

.labde-events__more {
    margin: 12px 0 0;
    font-size: 13px;
}

.labde-events__more a {
    color: var(--labde-pink);
    font-weight: 700;
    text-decoration: none;
}

.labde-events__more a:hover {
    text-decoration: underline;
}
