/* --------------------------------------------------
   ORGANISERS SECTION
-------------------------------------------------- */

.rs-label {
    display: inline-block;
    font-family: var(--ed-font-body);
    font-size: var(--ed-text-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ed-contrast);
    margin: 0;
}

.rs-section__header {
    margin-bottom: var(--ed-space-8);
}

.rs-section__header > h2 {
    font-size: var(--ed-text-3xl);
}

.rs-organisers__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
}

.rs-organisers__col {
    padding-block: var(--ed-space-12);
}

.rs-organisers__name {
    font-family: var(--ed-font-title);
    font-size: var(--ed-text-3xl);
    font-weight: 500;
    color: var(--ed-ink);
    margin: var(--ed-space-2) 0 var(--ed-space-6);
}


/* The link wrapper */
.rs-organisers__logo {
    display: block;
    margin-bottom: var(--ed-space-8);
}

/* The actual image inside the link */
.rs-organisers__logo img {
    max-height: 60px;
    width: auto;
    max-width: 100%; /* Ensures it doesn't overflow horizontally */
    object-fit: contain;
    display: block;
}

.rs-organisers__bio {
    font-size: var(--ed-text-base);
    color: var(--ed-ink-muted);
    line-height: 1.75;
    max-width: 52ch;
    margin: 0;
}

/* Divider — horizontal on mobile, vertical on desktop */
.rs-organisers__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 768px) {
    .rs-organisers__grid {
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto;
        align-items: start;
        gap: 0;
    }

    .rs-organisers__col {
        padding-block: 0;
        padding-inline: var(--ed-space-12);
    }

    .rs-organisers__col:first-child {
        padding-left: 0;
    }

    .rs-organisers__col:last-child {
        padding-right: 0;
    }

    .rs-organisers__divider {
        width: 1px;
        height: 100%;
        min-height: 300px;
        background: rgba(255, 255, 255, 0.12);
    }
}