/* Australia agenda v2 — card timeline (screenshot-style logic, site colors) */

.detail-agenda.agenda-v2-page {
    padding: 70px 0;
}

.agenda-v2-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
}

.agenda-v2-intro p {
    color: var(--navy_color);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 0;
    opacity: 0.85;
}

.agenda-tracks-bar {
    position: sticky;
    top: 94px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 32, 96, 0.1);
    border-radius: 0;
    padding: 16px 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 32, 96, 0.08);
    transition: box-shadow 0.3s ease;
}

.agenda-tracks-bar.is-stuck {
    box-shadow: 0 8px 28px rgba(0, 32, 96, 0.12);
}

.agenda-tracks-bar .tracks-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.agenda-tracks-bar .tracks-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy_color);
    margin: 0;
}

.agenda-tracks-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.agenda-track-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy_color);
    background: #fff;
    border: 1px solid rgba(0, 32, 96, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    min-height: 38px;
}

.agenda-track-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 32, 96, 0.1);
}

.agenda-track-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.agenda-track-pill .dot-all { background: var(--navy_color); }
.agenda-track-pill .dot-keynote { background: var(--navy_color); }
.agenda-track-pill .dot-breakout { background: var(--cyan_color); }
.agenda-track-pill .dot-partnerconnect { background: var(--green_color); }
.agenda-track-pill .dot-afterparty { background: var(--yellow_color, #ffe641); }
.agenda-track-pill .dot-myagenda { background: var(--pink_color); }

.agenda-track-pill.is-active {
    background: var(--navy_color);
    color: #fff;
    border-color: var(--navy_color);
}

.agenda-track-pill.is-active .dot-all,
.agenda-track-pill.is-active .dot-keynote,
.agenda-track-pill.is-active .dot-breakout,
.agenda-track-pill.is-active .dot-partnerconnect,
.agenda-track-pill.is-active .dot-afterparty,
.agenda-track-pill.is-active .dot-myagenda {
    background: #fff;
}

.agenda-session-card .session-desc-preview {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.agenda-session-card .session-view-details {
    font-size: 13px;
    font-weight: 600;
    color: var(--bright_blue_color);
    text-decoration: underline;
    margin-bottom: 12px;
    opacity: 0.85;
}

.agenda-v2-empty,
.agenda-v2-myagenda-empty {
    color: rgba(0, 32, 96, 0.7);
    font-size: 16px;
}

.agenda-keynote-speakers {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 32, 96, 0.1);
}

.agenda-speakers-intro {
    max-width: 560px;
    margin: 0 auto 32px;
    color: rgba(0, 32, 96, 0.7);
    font-size: 15px;
}

.agenda-speaker-tile {
    text-align: center;
    height: 100%;
    padding: 16px 12px;
    border-radius: 12px;
    background: rgba(198, 240, 224, 0.2);
    border: 1px solid rgba(0, 32, 96, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.agenda-speaker-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 32, 96, 0.08);
}

.agenda-speaker-tile-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    display: block;
    background: var(--navy_color);
}

.agenda-speaker-tile-photo.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
}

.agenda-speaker-tile-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy_color);
    margin: 0 0 6px;
    line-height: 1.3;
}

.agenda-speaker-tile-role {
    font-size: 13px;
    color: rgba(0, 32, 96, 0.65);
    margin: 0;
    line-height: 1.45;
}

.agenda-my-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy_color);
    background: var(--green_color);
    padding: 6px 12px;
    white-space: nowrap;
}

.agenda-partner-note {
    font-size: 14px;
    color: var(--navy_color);
    margin-bottom: 28px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid rgba(0, 32, 96, 0.1);
    box-shadow: 0 4px 20px rgba(0, 32, 96, 0.08);
    border-left: 3px solid var(--cyan_color);
}

.agenda-v2-timeline {
    position: relative;
    padding-left: 0;
}

.agenda-v2-timeline::before {
    content: '';
    position: absolute;
    left: 137px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: #333;
    border-radius: 2px;
}

.agenda-timeline-slot {
    display: grid;
    grid-template-columns: 110px 24px 1fr;
    gap: 0 16px;
    align-items: start;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.agenda-timeline-slot.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.agenda-timeline-slot.is-slot-empty {
    display: none;
}

.agenda-v2-time {
    text-align: right;
    padding-top: 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy_color);
    line-height: 1.3;
}

.agenda-v2-time .time-end {
    display: block;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.55;
    margin-top: 2px;
}

.agenda-v2-rail {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 26px;
}

.agenda-v2-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(180deg, #001744 0%, #256CF7 50%, #25D1F7 100%);
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agenda-timeline-slot.is-visible .agenda-v2-dot {
    animation: agendaDotPop 0.4s ease forwards;
}

@keyframes agendaDotPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.agenda-timeline-slot[data-kind="party"] .agenda-v2-dot {
    border-color: var(--yellow_color, #ffe641);
    background: var(--navy_color);
}

.agenda-v2-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agenda-v2-cards.is-parallel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.agenda-v2-cards.is-parallel:has(.agenda-session-card[data-type="partner-connect"]) {
    grid-template-columns: 1.35fr 1fr;
}

.agenda-v2-cards.is-parallel .agenda-session-card[data-type="partner-connect"] {
    order: 1;
}

.agenda-session-card {
    background: #fff;
    padding: 20px 22px 20px 24px;
    box-shadow: 0 2px 16px rgba(0, 32, 96, 0.08);
    border: 1px solid rgba(0, 32, 96, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.agenda-session-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--navy_color);
}

.agenda-session-card[data-type="breakout"]::before {
    background: var(--cyan_color);
}

.agenda-session-card[data-type="partner-connect"]::before {
    background: var(--green_color);
}

.agenda-session-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 32, 96, 0.12);
}

.agenda-session-card.is-filtered-out {
    display: none !important;
}

.agenda-session-card .card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.agenda-session-card .card-meta-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.agenda-type-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.agenda-type-badge.keynote {
    background: var(--navy_color);
    color: #fff;
}

.agenda-type-badge.breakout {
    background: var(--cyan_color);
    color: var(--navy_color);
}

.agenda-type-badge.partner-connect {
    background: var(--green_color);
    color: var(--navy_color);
}

.agenda-level-tag {
    font-size: 12px;
    color: rgba(0, 32, 96, 0.55);
}

.agenda-room-tag {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 32, 96, 0.45);
}

.agenda-session-card .session-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy_color);
    line-height: 1.35;
    margin: 0 0 6px;
}

.agenda-session-card .session-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 32, 96, 0.6);
    margin-bottom: 10px;
}

.agenda-session-card .session-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 32, 96, 0.8);
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.agenda-add-btn {
    font-size: 13px;
    padding: 8px 16px;
    border: 2px solid var(--yellow_color);
    background: #fff;
    color: var(--navy_color);
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
}

.agenda-add-btn:hover {
    background: var(--yellow_color);
}

.agenda-add-btn.is-added {
    background: var(--yellow_color);
}

.agenda-add-btn.is-conflict,
.agenda-add-btn.is-conflict:hover {
    background: #f5f5f5;
    color: rgba(0, 32, 96, 0.45);
    border-color: rgba(0, 32, 96, 0.2);
    cursor: not-allowed;
    transform: none;
}

.agenda-session-card .agenda-add-btn {
    position: relative;
    z-index: 1;
}

/* Session detail modal */
.aus-agenda-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 32, 96, 0.2);
}

.aus-agenda-modal .modal-header {
    border-bottom: 2px solid var(--navy_color);
    color: var(--navy_color);
    padding: 20px 24px;
    align-items: flex-start;
}

.aus-agenda-modal .modal-header .btn-close {
    opacity: 0.85;
}

.aus-modal-header-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.aus-agenda-modal .aus-modal-time {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: var(--navy_color);
}

.aus-agenda-modal .aus-modal-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.aus-agenda-modal .aus-modal-meta .agenda-level-tag,
.aus-agenda-modal .aus-modal-meta .agenda-room-tag {
    color: rgba(0, 32, 96, 0.45);
}

.aus-agenda-modal .modal-body {
    padding: 28px 28px 16px;
}

.aus-agenda-modal .aus-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy_color);
    line-height: 1.35;
    margin-bottom: 8px;
}

.aus-agenda-modal .aus-modal-subtitle {
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 32, 96, 0.6);
    margin-bottom: 16px;
}

.aus-agenda-modal .aus-modal-description {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(0, 32, 96, 0.85);
    margin-bottom: 20px;
}

.aus-agenda-modal .aus-modal-partner-note {
    color: rgba(0, 32, 96, 0.7);
    margin-bottom: 20px;
}

.aus-agenda-modal .aus-modal-speakers-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy_color);
    margin-bottom: 16px;
}

.aus-agenda-modal .aus-speaker-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    background: rgba(198, 240, 224, 0.25);
    border-radius: 10px;
    height: 100%;
}

.aus-agenda-modal .aus-speaker-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--navy_color);
}

.aus-agenda-modal .aus-speaker-photo.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.aus-agenda-modal .aus-speaker-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy_color);
    margin: 0 0 4px;
}

.aus-agenda-modal .aus-speaker-role {
    font-size: 13px;
    color: rgba(0, 32, 96, 0.7);
    margin: 0 0 6px;
    line-height: 1.45;
}

.aus-agenda-modal .aus-speaker-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy_color);
    text-decoration: underline;
}

.aus-agenda-modal .modal-footer {
    border-top: 1px solid rgba(0, 32, 96, 0.08);
    padding: 16px 24px;
    gap: 10px;
}

.aus-agenda-modal .aus-modal-close-btn {
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 16px;
}

.agenda-v2-utility-band {
    padding: 14px 24px;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(0, 32, 96, 0.08);
    box-shadow: 0 2px 12px rgba(0, 32, 96, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
}

.agenda-v2-utility-band h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--navy_color);
    line-height: 1.35;
}

.agenda-v2-utility-band.is-expo {
    background: linear-gradient(260deg, #25D1F7 30%, #FFFFFF 100%);
    border-color: rgba(37, 209, 247, 0.35);
}

.agenda-v2-utility-band.is-break {
    background: linear-gradient(260deg, rgba(198, 240, 224, 0.65) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(198, 240, 224, 0.8);
}

.agenda-v2-utility-band.is-registration {
    background: #fff;
}

.agenda-v2-utility-band.has-details {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.agenda-v2-utility-band.has-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 32, 96, 0.1);
}

.agenda-v2-utility-band .utility-details-hint {
    font-size: 12px;
    font-weight: 600;
    color: var(--bright_blue_color);
    text-decoration: underline;
    white-space: nowrap;
    opacity: 0.75;
}

.aus-agenda-utility-modal .aus-utility-location {
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 32, 96, 0.75);
    margin-bottom: 14px;
}

.aus-agenda-utility-modal .aus-utility-location::before {
    content: 'Location: ';
    font-weight: 700;
    color: var(--navy_color);
}

.agenda-v2-card-party {
    background: var(--navy_color);
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 32, 96, 0.2);
    grid-column: 1 / -1;
    animation: agendaPartyGlow 3s ease-in-out infinite alternate;
}

@keyframes agendaPartyGlow {
    from { box-shadow: 0 8px 32px rgba(0, 32, 96, 0.2); }
    to { box-shadow: 0 12px 40px rgba(0, 32, 96, 0.35); }
}

.agenda-v2-card-party h6 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 6px;
}

.agenda-v2-card-party .party-time {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin: 0;
}

@media (max-width: 991.98px) {
    .agenda-v2-timeline::before {
        left: 6px;
    }

    .agenda-timeline-slot {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-left: 36px;
    }

    .agenda-v2-time {
        text-align: left;
        padding-top: 0;
        grid-column: 1;
    }

    .agenda-v2-rail {
        position: absolute;
        left: 0;
        top: 4px;
        padding: 0;
    }

    .agenda-v2-cards {
        grid-column: 1;
    }

    .agenda-v2-cards.is-parallel {
        grid-template-columns: 1fr;
    }

    .agenda-tracks-bar .tracks-row {
        flex-direction: column;
        align-items: stretch;
    }

    .agenda-tracks-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .agenda-track-pill {
        flex-shrink: 0;
    }
}

/* Fixed continue bar */
.agenda-continue-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background: #fff;
    border-top: 1px solid rgba(0, 32, 96, 0.12);
    box-shadow: 0 -8px 32px rgba(0, 32, 96, 0.12);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.agenda-continue-bar.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.agenda-continue-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.agenda-continue-bar-text {
    font-size: 15px;
    color: var(--navy_color);
}

.agenda-continue-btn {
    white-space: nowrap;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
}

body.has-agenda-continue-bar {
    padding-bottom: 76px;
}

@media (max-width: 575px) {
    .agenda-continue-bar-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .agenda-continue-btn {
        width: 100%;
        text-align: center;
    }
}

/* Registration sidebar */
.aus-registration-summary {
    position: sticky;
    top: 24px;
    background: #fff;
    border: 1px solid rgba(0, 32, 96, 0.12);
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 32, 96, 0.08);
}

.aus-reg-summary-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy_color);
    margin: 0 0 20px;
}

.aus-reg-pass-row,
.aus-reg-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--navy_color);
}

.aus-reg-pass-row {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 32, 96, 0.1);
    margin-bottom: 12px;
}

.aus-reg-pass-price,
.aus-reg-total-price {
    font-weight: 600;
}

.aus-reg-total-row {
    font-weight: 700;
    margin-bottom: 20px;
}

.aus-reg-sessions-block {
    padding-top: 16px;
    margin-bottom: 16px;
}

.aus-reg-sessions-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy_color);
    margin: 0 0 12px;
}

.aus-reg-sessions-empty {
    font-size: 13px;
    color: rgba(0, 32, 96, 0.65);
    margin: 0;
    line-height: 1.5;
}

.aus-reg-sessions-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aus-reg-session-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 32, 96, 0.08);
    font-size: 13px;
    line-height: 1.45;
}

.aus-reg-session-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.aus-reg-session-time {
    font-weight: 700;
    color: var(--navy_color);
}

.aus-reg-session-title {
    color: rgba(0, 32, 96, 0.85);
}

.aus-reg-summary-note {
    font-size: 12px;
    color: rgba(0, 32, 96, 0.55);
    margin: 0;
    line-height: 1.45;
}

/* Pass selection cards */
.aus-pass-section {
    margin-top: 8px;
}

.aus-pass-intro {
    font-size: 14px;
    color: rgba(0, 32, 96, 0.65);
    margin: 0;
}

.aus-pass-card {
    border: 1px solid rgba(0, 32, 96, 0.15);
    border-radius: 12px;
    background: #fff;
    margin-bottom: 12px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.aus-pass-card.is-selected {
    border-color: rgba(0, 32, 96, 0.45);
    background: rgba(198, 240, 224, 0.25);
    box-shadow: 0 4px 16px rgba(0, 32, 96, 0.06);
}

.aus-pass-card-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    margin: 0;
    cursor: pointer;
}

.aus-pass-card.is-locked .aus-pass-card-label {
    cursor: default;
}

.aus-pass-checkbox {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--navy_color);
}

.aus-pass-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.aus-pass-card-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.aus-pass-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy_color);
}

.aus-pass-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.aus-pass-badge-complimentary {
    background: rgba(61, 154, 95, 0.15);
    color: #2d7a4a;
}

.aus-pass-badge-addon {
    background: rgba(0, 32, 96, 0.08);
    color: var(--navy_color);
}

.aus-pass-badge-date {
    background: rgba(255, 166, 77, 0.18);
    color: #9a5b12;
}

.aus-pass-card-desc {
    font-size: 14px;
    color: rgba(0, 32, 96, 0.75);
    line-height: 1.5;
}

.aus-pass-card-note {
    font-size: 13px;
    color: var(--navy_color);
    line-height: 1.45;
}

.aus-pass-card-note a {
    color: var(--navy_color);
    font-weight: 600;
}

.aus-training-sessions {
    border-top: 1px solid rgba(0, 32, 96, 0.1);
    padding: 0 20px 18px 52px;
}

.aus-training-sessions-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy_color);
    margin: 0 0 12px;
}

.aus-training-sessions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}

.aus-training-session-option {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: rgba(0, 32, 96, 0.85);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .aus-training-sessions {
        padding-left: 20px;
    }

    .aus-training-sessions-grid {
        grid-template-columns: 1fr;
    }
    .aus-modal-header-main {
        display: block;
    }
    .aus-agenda-modal .aus-modal-time { margin-bottom: 10px;}
}

/* Register form — preferences & consent layout (theme unchanged) */
.register.basic .aus-reg-section {
    margin-top: 4px;
}

.register.basic .aus-reg-pref-box,
.register.basic .aus-reg-consent-box {
    border: 1px solid #CFD1D2;
    border-radius: 6px;
    padding: 20px;
    background: #fff;
}

.register.basic .aus-reg-expert-box {
    border-top: 1px solid #e8eaeb;
    padding-top: 16px;
}

.register.basic .aus-reg-expert-heading {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark_blue_color);
    margin: 0;
}

.register.basic .aus-reg-expert-optional {
    font-weight: 500;
    color: #6b7280;
}

.register.basic .aus-reg-expert-subtext,
.register.basic .aus-reg-expert-hint {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.45;
    margin: 0;
}

.register.basic .aus-reg-expert-hint {
    font-size: 0.82rem;
}

.register.basic .aus-reg-expert-question {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark_blue_color);
    margin: 0;
}

.register.basic .expert-interest-dropdown {
    max-width: 100%;
}

.register.basic .expert-interest-toggle {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 2.25rem;
}

.register.basic .expert-interest-label {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
}

.register.basic .expert-interest-menu {
    max-height: 280px;
    overflow-y: auto;
}

.register.basic .expert-interest-option {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    white-space: normal;
    line-height: 1.4;
}

.register.basic .expert-interest-option .form-check-input {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.register.basic .expert-interest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.register.basic .expert-interest-chip {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef6fb;
    border: 1px solid #cfe3f2;
    color: var(--dark_blue_color);
    font-size: 0.82rem;
    line-height: 1.3;
    word-break: break-word;
}

.register.basic .aus-reg-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.register.basic .aus-reg-radio-row .form-check {
    margin-bottom: 0;
}

.register.basic .aus-reg-consent-box {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.register.basic .aus-reg-consent-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    margin: 0;
    border-bottom: 1px solid #e8eaeb;
    cursor: pointer;
}

.register.basic .aus-reg-consent-row:last-child {
    border-bottom: none;
}

.register.basic .aus-reg-consent-row .form-check-input {
    margin-top: 3px;
    flex-shrink: 0;
}

.register.basic .aus-reg-consent-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark_blue_color);
}

.register.basic .aus-reg-consent-text a {
    color: var(--dark_blue_color);
    font-weight: 600;
    text-decoration: underline;
}

.register.basic .aus-reg-consent-group {
    padding-top: 14px;
    margin-top: 4px;
    border-top: 1px solid #e8eaeb;
}

.register.basic .aus-reg-consent-lead {
    font-size: 14px;
    line-height: 1.55;
    color: var(--dark_blue_color);
    margin: 0 0 12px;
    opacity: 0.9;
}

.register.basic .aus-reg-consent-question {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark_blue_color);
}

.register.basic .aus-reg-consent-box p.error {
    margin: 4px 0 8px;
    font-size: 13px;
}

.register.basic #expertInterestSection {
    max-width: 100%;
}
