* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #17202a;
    background: #f7f7f5;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================
   HEADER
   ========================= */

.site-header {
    border-bottom: 1px solid #d8d8d4;
    background: #f7f7f5;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    gap: 30px;
    font-size: 15px;
}

.main-nav a:hover {
    text-decoration: underline;
}


/* =========================
   HERO
   ========================= */

.hero {
    padding: 110px 0 120px;
    border-bottom: 1px solid #d8d8d4;
}

.eyebrow {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #687078;
}

.hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(52px, 8vw, 100px);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.hero-text {
    max-width: 650px;
    margin: 35px 0 0;
    font-size: 21px;
    color: #525a61;
}

.hero-actions {
    margin-top: 40px;
}

.button {
    display: inline-block;
    padding: 13px 22px;
    background: #17202a;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.button:hover {
    opacity: 0.85;
}


/* =========================
   GENERAL SECTIONS
   ========================= */

.section {
    padding: 90px 0;
    border-bottom: 1px solid #d8d8d4;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.section h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section p {
    margin-top: 0;
    color: #525a61;
}


/* =========================
   UPCOMING SESSION
   ========================= */

.session-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid #17202a;
}

.session-date,
.session-type {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #687078;
}

.session-preview h2 {
    margin: 10px 0;
}


/* =========================
   PAGE HEADER
   ========================= */

.page-header {
    padding: 80px 0;
    border-bottom: 1px solid #d8d8d4;
}

.page-header h1 {
    margin: 0;
    font-size: clamp(48px, 7vw, 80px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.page-header p:last-child {
    max-width: 600px;
    margin-top: 25px;
    font-size: 19px;
    color: #525a61;
}


/* =========================
   PROGRAMME HEADER
   ========================= */

.programme-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}


/* =========================
   MONTHLY CALENDAR
   ========================= */

.calendar-section {
    padding: 60px 0 80px;
    border-bottom: 1px solid #d8d8d4;
}

.calendar-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.month-nav {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.calendar-header .month-nav:last-child {
    text-align: right;
}

.month-nav:hover {
    text-decoration: underline;
}


/* Weekday names */

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 2px solid #17202a;
    border-bottom: 1px solid #d8d8d4;
}

.calendar-weekdays div {
    padding: 12px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #687078;
}


/* Calendar rows */

.calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}


/* Individual day */

.calendar-day {
    min-height: 130px;
    padding: 10px;
    border-right: 1px solid #d8d8d4;
    border-bottom: 1px solid #d8d8d4;
}

.calendar-day:first-child {
    border-left: 1px solid #d8d8d4;
}

.calendar-date {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
}


/* Days belonging to previous/next month */

.outside-month {
    background: #eeeeeb;
    color: #9a9fa3;
}


/* Today */

.today .calendar-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border: 2px solid #17202a;
    border-radius: 50%;
}


/* Calendar events */

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.calendar-event {
    display: block;
    padding: 7px 8px;
    border-left: 3px solid #17202a;
    background: #e5e5e1;
    font-size: 11px;
    line-height: 1.25;
}

.calendar-event:hover {
    text-decoration: underline;
}

.calendar-event-time {
    display: block;
    margin-bottom: 2px;
    font-size: 10px;
    font-weight: 700;
}

.calendar-event-title {
    display: block;
    font-weight: 600;
}


/* =========================
   DETAILED PROGRAMME
   ========================= */

.programme-section {
    padding: 70px 0 110px;
}

.programme-day {
    margin-bottom: 75px;
}

.day-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 15px;
    border-bottom: 2px solid #17202a;
}

.day-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.day-date {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.programme-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 100px;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid #d8d8d4;
}

.programme-time {
    font-size: 16px;
    line-height: 1.3;
}

.programme-time strong {
    font-weight: 700;
}

.programme-time span {
    padding: 0 3px;
    color: #687078;
}

.programme-time small {
    display: block;
    margin-top: 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #687078;
}

.programme-content {
    max-width: 700px;
}

.session-type {
    margin: 0 0 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    color: #687078;
}

.programme-content h2 {
    margin: 0 0 10px;
    font-size: 29px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.programme-content p {
    margin: 4px 0;
}

.programme-content .speaker {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #17202a;
}

.programme-content .room {
    margin: 4px 0 0;
    font-size: 14px;
    color: #687078;
}

.programme-action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.text-link {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.text-link:hover {
    text-decoration: underline;
}

.empty-programme {
    padding: 30px 0;
    color: #687078;
}


/* =========================
   SESSION DETAIL
   ========================= */

.session-detail {
    max-width: 900px;
}

.session-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #d8d8d4;
}

.session-meta div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.meta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #687078;
}

.session-description {
    padding: 60px 0;
    font-size: 18px;
}

.session-join {
    padding-bottom: 50px;
}

.session-back {
    padding-top: 30px;
    border-top: 1px solid #d8d8d4;
}


/* =========================
   CONTACT
   ========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-email {
    font-size: 25px;
    font-weight: 600;
}

.contact-email:hover {
    text-decoration: underline;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
    padding: 40px 0;
    font-size: 13px;
    color: #687078;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

    .container {
        width: min(100% - 32px, 1120px);
    }


    /* Header */

    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 0;
    }

    .main-nav {
        gap: 20px;
    }


    /* Hero */

    .hero {
        padding: 70px 0 80px;
    }

    .hero h1 {
        font-size: 55px;
    }


    /* General sections */

    .two-column,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    /* Programme header */

    .programme-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }


    /* Calendar */

    .calendar-section {
        padding: 40px 0 50px;
    }

    .calendar-header {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .calendar-header h2 {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .calendar-header .month-nav:first-child {
        grid-column: 1;
        grid-row: 2;
    }

    .calendar-header .month-nav:last-child {
        grid-column: 2;
        grid-row: 2;
        text-align: right;
    }

    .calendar-weekdays div {
        padding: 8px 4px;
        font-size: 9px;
    }

    .calendar-day {
        min-height: 85px;
        padding: 6px;
    }

    .calendar-date {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .calendar-event {
        padding: 5px;
        font-size: 9px;
    }

    .calendar-event-time {
        font-size: 9px;
    }

    .calendar-event-title {
        display: none;
    }


    /* Detailed programme */

    .programme-item {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 0;
    }

    .programme-action {
        justify-content: flex-start;
    }

    .programme-content h2 {
        font-size: 25px;
    }

    .day-heading {
        flex-direction: column;
        gap: 5px;
    }


    /* Session detail */

    .session-meta {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .speaker-photo-link {
    width: 48px;
    height: 48px;
    }

    .speaker-photo {
        width: 48px;
        height: 48px;
    }
    .speaker-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    }

    .speaker-profile-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .speaker-profile-photo {
        width: 110px;
        height: 110px;
    }
    .hero-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    }

    .hero-logo {
        justify-content: flex-start;
    }

    .hero-logo img {
        width: 150px;
        height: 150px;
    }
    .subgroup-grid {
    grid-template-columns: 1fr;
    }

    .subgroup-members {
        grid-template-columns: 1fr;
    }

    .subgroup-person img,
    .subgroup-member img,
    .subgroup-person-placeholder,
    .subgroup-member-placeholder {
        width: 55px;
        height: 55px;
    }
    .session-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    }

    .session-speaker {
        padding-top: 0;
    }

    .session-speaker-photo,
    .session-speaker-placeholder {
        width: 42px;
        height: 42px;
    }
    .member-profile-header {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 30px;
    }

    .member-profile-photo {
        width: 100px;
        height: 100px;
    }

    .member-title {
        font-size: 17px;
    }

    .member-session {
        align-items: flex-start;
    }

    .member-session h2 {
        font-size: 22px;
    }

}

/* =========================
   SPEAKERS
   ========================= */

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 35px;
}

.speaker-card {
    display: block;
}

.speaker-card-photo {
    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;

    background: #e5e5e1;

    margin-bottom: 18px;
}

.speaker-card-info h2 {
    margin: 0;

    font-size: 25px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.speaker-card-info p {
    margin: 7px 0;

    font-size: 14px;
    color: #687078;
}

.speaker-card-info span {
    display: inline-block;

    margin-top: 8px;

    font-size: 12px;
    font-weight: 700;
}

.speaker-card:hover .speaker-card-info h2 {
    text-decoration: underline;
}


/* Individual speaker */

.speaker-profile-header {
    display: flex;
    align-items: center;
    gap: 45px;
}

.speaker-profile-photo {
    width: 150px;
    height: 150px;

    object-fit: cover;

    border-radius: 50%;
}

.speaker-profile {
    max-width: 900px;
}

.speaker-bio {
    max-width: 700px;

    font-size: 18px;
}

.speaker-contact {
    margin-top: 60px;
}

.speaker-sessions {
    margin-top: 70px;
}

.speaker-session {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    padding: 25px 0;

    border-top: 1px solid #d8d8d4;
}

.speaker-session:last-child {
    border-bottom: 1px solid #d8d8d4;
}

.speaker-session span:first-child {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #687078;
}

.speaker-session h2 {
    margin: 6px 0 0;

    font-size: 24px;
    line-height: 1.2;
}

.speaker-session:hover h2 {
    text-decoration: underline;
}
/* =========================
   SPEAKER PHOTO
   ========================= */

.speaker-photo-link {
    display: block;
    width: 58px;
    height: 58px;
    margin-top: 18px;
}

.speaker-photo {
    width: 58px;
    height: 58px;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}

.speaker-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #303943;
    color: #f7f7f5;

    font-size: 20px;
    font-weight: 700;
}


/* Speaker link */

.speaker-link {
    font-weight: 600;
}

.speaker-link:hover {
    text-decoration: underline;
}


/* =========================
   SUBGROUP TAGS
   ========================= */

.subgroup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 12px;
}

.subgroup-tag {
    display: inline-block;

    padding: 4px 9px;

    border: 1px solid #c8c9c5;
    border-radius: 3px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;

    color: #687078;
}

.subgroup-tag:hover {
    border-color: #17202a;
    color: #17202a;
}
/* =========================================================
   DARK THEME
   ========================================================= */

body {
    color: #edf1f5;
    background: #0d1217;
}

.site-header {
    background: #0d1217;
    border-bottom-color: #28323b;
}

.site-title {
    color: #f4f6f8;
}

.main-nav a {
    color: #c9d1d9;
}

.main-nav a:hover {
    color: #ffffff;
}

.eyebrow {
    color: #8fa4b7;
}

.hero {
    border-bottom-color: #28323b;
}

.hero-text {
    color: #aeb8c2;
}

.button {
    background: #edf1f5;
    color: #0d1217;
}

.button:hover {
    opacity: 0.85;
}

.section {
    border-bottom-color: #28323b;
}

.section p {
    color: #aeb8c2;
}

.page-header {
    border-bottom-color: #28323b;
}

.page-header p:last-child {
    color: #aeb8c2;
}


/* Programme */

.calendar-section {
    border-bottom-color: #28323b;
}

.calendar-weekdays {
    border-top-color: #edf1f5;
    border-bottom-color: #28323b;
}

.calendar-weekdays div {
    color: #8fa4b7;
}

.calendar-day {
    border-right-color: #28323b;
    border-bottom-color: #28323b;
}

.calendar-day:first-child {
    border-left-color: #28323b;
}

.outside-month {
    background: #11171d;
    color: #59646e;
}

.today .calendar-date {
    border-color: #edf1f5;
}

.calendar-event {
    background: #182129;
    border-left-color: #78b9ed;
    color: #e8edf2;
}

.calendar-event:hover {
    background: #202c36;
}

.calendar-event-time {
    color: #8fc7f5;
}

.month-nav {
    color: #9ac9ee;
}

.month-nav:hover {
    color: #ffffff;
}


/* Detailed programme */

.day-heading {
    border-bottom-color: #edf1f5;
}

.day-date,
.day-name {
    color: #dbe2e8;
}

.programme-item {
    border-bottom-color: #28323b;
}

.programme-time {
    color: #edf1f5;
}

.programme-time span,
.programme-time small {
    color: #81909d;
}

.session-type {
    color: #8fb9d9;
}

.programme-content .speaker {
    color: #edf1f5;
}

.programme-content .room {
    color: #8f9ba6;
}

.text-link {
    color: #9ac9ee;
}

.text-link:hover {
    color: #ffffff;
}


/* Speaker photos */

.speaker-placeholder {
    background: #202a33;
    color: #edf1f5;
}


/* Speaker pages */

.speaker-card-photo {
    background: #182129;
}

.speaker-card-info p {
    color: #8f9ba6;
}

.speaker-card-info span {
    color: #9ac9ee;
}

.speaker-card:hover .speaker-card-info h2 {
    color: #ffffff;
}

.speaker-profile-photo {
    border: 1px solid #3a4650;
}

.speaker-bio {
    color: #aeb8c2;
}

.speaker-session {
    border-top-color: #28323b;
}

.speaker-session:last-child {
    border-bottom-color: #28323b;
}

.speaker-session span:first-child {
    color: #81909d;
}

.speaker-session:hover h2 {
    color: #ffffff;
}


/* Session detail */

.session-meta {
    border-bottom-color: #28323b;
}

.meta-label {
    color: #81909d;
}

.session-description {
    color: #aeb8c2;
}

.session-back {
    border-top-color: #28323b;
}


/* Contact */

.contact-email {
    color: #9ac9ee;
}

.contact-email:hover {
    color: #ffffff;
}


/* Footer */

.site-footer {
    color: #81909d;
    border-top-color: #28323b;
}
/* =========================
   HOME HERO LOGO
   ========================= */

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: center;
    gap: 80px;
}

.hero-content {
    min-width: 0;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    display: block;
    width: 240px;
    height: 240px;
    object-fit: contain;
}
/* =========================
   SUBGROUPS
   ========================= */

.subgroup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.subgroup-card {
    display: block;

    padding: 35px;

    border: 1px solid #28323b;
    background: #11181e;
}

.subgroup-card:hover {
    border-color: #6e9fc5;
}

.subgroup-card h2 {
    margin: 0 0 12px;

    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.subgroup-card p:not(.eyebrow) {
    color: #aeb8c2;
}

.subgroup-head {
    margin-top: 25px;
    font-size: 13px;
}

.subgroup-head strong {
    color: #edf1f5;
}

.subgroup-card-link {
    display: inline-block;

    margin-top: 20px;

    font-size: 12px;
    font-weight: 700;

    color: #9ac9ee;
}


/* Individual subgroup */

.subgroup-detail {
    max-width: 900px;
}

.subgroup-section-block {
    padding: 45px 0;

    border-bottom: 1px solid #28323b;
}

.subgroup-section-block:first-child {
    padding-top: 0;
}


/* People */

.subgroup-person,
.subgroup-member {
    display: flex;
    align-items: center;

    gap: 20px;
}

.subgroup-person img,
.subgroup-member img,
.subgroup-person-placeholder,
.subgroup-member-placeholder {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 50%;
}

.subgroup-person-placeholder,
.subgroup-member-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #202a33;
    color: #edf1f5;

    font-size: 20px;
    font-weight: 700;
}

.subgroup-person h2,
.subgroup-member h2 {
    margin: 0;

    font-size: 21px;
}

.subgroup-person p,
.subgroup-member p {
    margin: 4px 0 0;

    color: #8f9ba6;
    font-size: 14px;
}

.subgroup-person:hover h2,
.subgroup-member:hover h2 {
    text-decoration: underline;
}


/* Multiple members */

.subgroup-members {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;
}


/* Related sessions */

.subgroup-session {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 0;

    border-top: 1px solid #28323b;
}

.subgroup-session:last-child {
    border-bottom: 1px solid #28323b;
}

.subgroup-session > div > span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #81909d;
}

.subgroup-session h2 {
    margin: 6px 0;

    font-size: 24px;
    line-height: 1.2;
}

.subgroup-session p {
    margin: 0;

    color: #8f9ba6;
}

.subgroup-session:hover h2 {
    text-decoration: underline;
}
/* =========================
   SESSION HEADER
   ========================= */

.session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.session-header-main {
    min-width: 0;
}

.session-header-main h1 {
    max-width: 850px;
}


/* Speaker on the right */

.session-speaker {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    flex-shrink: 0;

    min-width: 150px;

    padding-top: 10px;
}

.session-speaker-label {
    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;

    color: #8fa4b7;
}

.session-speaker-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.session-speaker-photo,
.session-speaker-placeholder {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    object-fit: cover;
    border-radius: 50%;
}

.session-speaker-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #202a33;
    color: #edf1f5;

    font-size: 15px;
    font-weight: 700;
}

.session-speaker-info strong {
    font-size: 16px;
    color: #edf1f5;
}

.session-speaker:hover .session-speaker-info strong {
    text-decoration: underline;
}


/* Session title link */

.session-title-link {
    display: inline;
}

.session-title-link:hover {
    text-decoration: underline;
}


/* Session subgroup section */

.session-subgroups {
    padding: 30px 0;

    border-bottom: 1px solid #28323b;
}

.session-subgroups .meta-label {
    display: block;
    margin-bottom: 12px;
}
/* =========================================================
   MEMBER PROFILE
   ========================================================= */

.member-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.member-profile-info {
    min-width: 0;
}

.member-profile-info h1 {
    max-width: 800px;
}

.member-title {
    margin-top: 20px;
    font-size: 19px;
    color: #aeb8c2;
}

.member-profile-photo-wrapper {
    flex-shrink: 0;
}

.member-profile-photo {
    display: block;

    width: 150px;
    height: 150px;

    object-fit: cover;

    border-radius: 50%;

    border: 1px solid #3a4650;
}


/* Main profile */

.member-profile {
    max-width: 900px;
}

.member-profile-section {
    padding: 50px 0;

    border-bottom: 1px solid #28323b;
}

.member-profile-section:first-child {
    padding-top: 0;
}


/* About */

.member-bio {
    max-width: 760px;

    font-size: 18px;
    line-height: 1.7;

    color: #aeb8c2;
}

.member-bio p {
    margin: 0 0 20px;
}


/* Contact */

.member-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.member-contact-link {
    display: inline-block;

    padding: 9px 15px;

    border: 1px solid #3a4650;

    font-size: 12px;
    font-weight: 700;

    color: #9ac9ee;
}

.member-contact-link:hover {
    border-color: #9ac9ee;
    color: #ffffff;
}


/* Subgroups */

.member-subgroups {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* Presentations */

.member-sessions {
    margin-top: 5px;
}

.member-session {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 28px 0;

    border-top: 1px solid #28323b;
}

.member-session:last-child {
    border-bottom: 1px solid #28323b;
}

.member-session-main {
    min-width: 0;
}

.member-session-date {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;

    color: #81909d;
}

.member-session h2 {
    margin: 0;

    font-size: 25px;
    line-height: 1.2;
}

.member-session-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 8px;

    font-size: 12px;

    color: #81909d;
}

.member-session-arrow {
    flex-shrink: 0;

    font-size: 18px;
    font-weight: 700;

    color: #9ac9ee;
}

.member-session:hover h2 {
    text-decoration: underline;
}

.empty-member-sessions {
    color: #81909d;
}


/* Back */

.member-profile-back {
    padding-top: 30px;
}
.session-resources {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    padding: 40px 0 50px;
}

.resource-link {
    font-size: 13px;
    font-weight: 700;
    color: #9ac9ee;
}

.resource-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Programme — Multiple Speakers */

.programme-speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 14px;
}

.programme-speaker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #aeb8c2;
    font-size: 12px;
    font-weight: 600;
}

.programme-speaker:hover {
    color: #edf1f5;
}

.programme-speaker-photo,
.programme-speaker-placeholder {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}

.programme-speaker-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #202a33;
    color: #edf1f5;
    font-size: 10px;
    font-weight: 700;
}

/* Subgroup icons */

.subgroup-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.subgroup-card-info {
    min-width: 0;
    flex: 1;
}

.subgroup-card-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subgroup-card-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 700px) {

    .subgroup-card {
        align-items: flex-start;
    }

    .subgroup-card-icon {
        width: 70px;
        height: 70px;
    }

}
/* Subgroup detail header */

.subgroup-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.subgroup-detail-title {
    min-width: 0;
}

.subgroup-detail-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subgroup-detail-icon img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

@media (max-width: 700px) {

    .subgroup-detail-header {
        align-items: flex-start;
        gap: 25px;
    }

    .subgroup-detail-icon {
        width: 80px;
        height: 80px;
    }

    .subgroup-detail-icon img {
        width: 80px;
        height: 80px;
    }

}