/* Test-only stylesheet. Production assets remain unchanged. */
.mockup-home {
    overflow-x: hidden;
}

/* Final header, schedule-card and interaction treatment for the selected design. */
.network .main-nav {
    border-bottom-color: #ec3e82;
    background: #000;
}

.network .nav-row {
    min-height: 76px;
}

.network .brand-logo {
    width: 44px;
    height: 44px;
}

.network .nav-links {
    align-items: center;
}

.network .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 0;
    border: 0;
    background: transparent !important;
    color: #edf4f8 !important;
    transition: color 160ms ease;
}

.network .nav-link:hover,
.network .nav-link:focus-visible,
.network .brand:hover,
.network .brand:focus-visible {
    background: transparent !important;
    color: #ec3e82 !important;
}

.network .nav-icon,
.network .sheet-drag-handle,
.network .mobile-toggle {
    display: none;
}

.network .nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.network .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.network .nav-cta:hover,
.network .action:hover,
.network .schedule-button:hover,
.network .premium-button:hover,
.network .reading-link:hover,
.network .join-courses-all:hover {
    background: rgba(236, 62, 130, 0.1) !important;
    color: #fff !important;
}

.network .hero-description a:hover,
.network .course-detail a:hover,
.network .about-world a:hover,
.network .final-footer a:hover,
.network .faq-list-full a:hover {
    background: transparent !important;
    color: #ff6dac !important;
}

.network .schedule-next,
.network .upcoming-card {
    position: relative;
    overflow: hidden;
}

.network .club-ribbon {
    position: absolute;
    z-index: 5;
    top: 14px;
    right: -37px;
    width: 132px;
    padding: 6px 0;
    transform: rotate(45deg);
    border: 0;
    background: linear-gradient(45deg, #00b960, #00e77c);
    color: #071d13;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.8px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.network .club-ribbon.paid {
    background: linear-gradient(45deg, #d93370, #f05a94);
    color: #fff;
}

.network .club-ribbon.cc {
    background: linear-gradient(45deg, #b90f1d, #ef3340);
    color: #fff;
}

.network .club-ribbon.bb,
.network .club-ribbon.random {
    background: linear-gradient(45deg, #168bb8, #25aee4);
    color: #041d29;
}

.network .club-ribbon.big,
.network .club-ribbon.skills,
.network .club-ribbon.course {
    background: linear-gradient(45deg, #d79512, #efb33d);
    color: #251703;
}

.network .schedule-button.cc {
    --tone: #ef3340;
}

.network .schedule-free.cc,
.network .upcoming-kind.cc {
    background: #d82331;
    color: #fff;
}

.network .schedule-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.network .schedule-meta i,
.network .upcoming-card p > i,
.network .upcoming-date > i {
    width: 13px;
    color: #25aee4;
    font-size: 10px;
    text-align: center;
}

.network .upcoming-card p > i {
    margin-right: 6px;
}

.network .upcoming-date {
    padding-right: 25px;
}

.network .upcoming-date b {
    font-size: 21px;
}

.network .upcoming-date sup,
.network .schedule-meta sup {
    position: relative;
    top: -0.22em;
    margin-left: 1px;
    font-size: 0.48em;
    line-height: 0;
}

.network #speaking-courses {
    scroll-margin-top: 136px;
}

@media (max-width: 850px) {
    .network .nav-row {
        min-height: 64px;
    }

    .network .brand-logo {
        width: 40px;
        height: 40px;
    }

    .network .mobile-toggle {
        position: relative;
        z-index: 30001;
        display: flex;
        width: 30px;
        height: 24px;
        flex-direction: column;
        justify-content: space-around;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .network .mobile-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 10px;
        background: #fff;
        transform-origin: 1px;
        transition: transform 240ms ease, opacity 180ms ease;
    }

    .network .mobile-toggle.is-active span:first-child { transform: rotate(45deg); }
    .network .mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
    .network .mobile-toggle.is-active span:nth-child(3) { transform: rotate(-45deg); }

    .network .nav-links {
        position: fixed;
        z-index: 30000;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid !important;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 20px 20px 30px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px 24px 0 0;
        background: #111116 !important;
        box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.75);
        transform: translateY(102%);
        transition: transform 320ms cubic-bezier(0.37, 0, 0.63, 1);
    }

    .network .nav-links.active {
        transform: translateY(0);
    }

    .network .sheet-drag-handle {
        display: block;
        width: 40px;
        height: 4px;
        grid-column: 1 / -1;
        margin: 0 auto 8px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.2);
    }

    .network .nav-links .nav-link {
        display: flex !important;
        min-height: 92px;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 14px 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.03) !important;
        color: #fff !important;
        font-size: 12px;
        text-align: center;
    }

    .network .nav-links .nav-link:hover,
    .network .nav-links .nav-link:focus-visible {
        border-color: rgba(236, 62, 130, 0.45);
        background: rgba(236, 62, 130, 0.1) !important;
        color: #ec3e82 !important;
    }

    .network .nav-link .nav-icon {
        display: flex;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(236, 62, 130, 0.12);
        color: #ec3e82;
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .network .hero,
    .network .globe-fallback {
        background-color: #000;
    }

    .network .nav-actions .nav-cta {
        display: none;
    }
}

/* The production template uses a semantic h2 for the host section. */
.network .guide-copy h2 {
    max-width: 700px;
    margin: 0 0 18px;
    font-size: clamp(33px, 4vw, 54px);
    line-height: 0.95;
    text-transform: uppercase;
}

.network .guide-step > div {
    color: #dce5ec;
    font-size: 12px;
    line-height: 1.5;
}

.network .guide-step > div strong {
    display: block;
    margin-bottom: 4px;
    color: #f6f9fc;
    font-size: 13px;
}

.mockup-home::before {
    content: 'DESIGN TEST - NOT INDEXED';
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 2147483647;
    padding: 8px 10px;
    border: 1px solid rgba(255, 20, 147, 0.55);
    border-radius: 4px;
    background: rgba(12, 20, 29, 0.92);
    color: #fff;
    font: 700 11px/1 Inter, sans-serif;
    letter-spacing: 0.08em;
}

/* The production renderer mounts inside the selected schedule layout. */
.network .schedule-main,
.network #clubs-list-1 {
    min-width: 0;
    width: 100%;
}

.network .mockup-loading {
    min-height: 220px;
    display: grid;
    place-items: center;
    padding: 30px;
    border: 1px solid #34495b;
    background: #101b25;
    color: #c6d5e1;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.network #clubs-list-1 .featured-club,
.network #clubs-list-1 .agenda-row,
.network #clubs-list-1 .c2-card {
    border-radius: 6px;
}

.network #clubs-list-1 .featured-club {
    margin-bottom: 22px;
    border: 1px solid #ec3e82;
    background: #101b25;
    box-shadow: none;
}

.network #clubs-list-1 .featured-content {
    padding: 28px;
}

.network #clubs-list-1 .featured-content h3 {
    font-family: Manrope, Arial, sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: 0;
    text-transform: none;
}

.network #clubs-list-1 .agenda-list {
    gap: 10px;
}

.network #clubs-list-1 .agenda-row {
    border-color: #34495b;
    background: #101b25;
}

.network #clubs-list-1 .agenda-row:hover {
    border-color: #25aee4;
    transform: translateX(3px);
}

.network #clubs-list-1 .btn-agenda,
.network #clubs-list-1 .btn-neon {
    border-radius: 4px;
    font-family: Manrope, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.network #clubs-list-1 .featured-badge,
.network #clubs-list-1 .badge-new {
    border-radius: 3px;
}

.network #clubs-list-1 .spots-text,
.network #clubs-list-1 .featured-meta-item {
    color: #c6d5e1;
}

.network .hero-next-club.is-live {
    border-left-color: #ec3e82;
}

.network .hero-next-club.is-live b {
    color: #ec3e82;
}

.network .schedule-button {
    cursor: pointer;
}

.network .schedule-button::after {
    content: "\2192";
}

.network .schedule-button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.network .schedule-button.paid,
.network .schedule-button.cc {
    --tone: #ec3e82;
}

.network .schedule-button.bb,
.network .schedule-button.random {
    --tone: #25aee4;
}

.network .schedule-button.big,
.network .schedule-button.skills,
.network .schedule-button.course {
    --tone: #efb33d;
}

.network .schedule-free.paid,
.network .schedule-free.cc,
.network .upcoming-kind.paid,
.network .upcoming-kind.cc {
    background: #ec3e82;
    color: #fff;
}

.network .schedule-free.bb,
.network .schedule-free.random,
.network .upcoming-kind.bb,
.network .upcoming-kind.random {
    background: #25aee4;
    color: #062434;
}

.network .schedule-free.big,
.network .schedule-free.skills,
.network .upcoming-kind.big,
.network .upcoming-kind.skills,
.network .upcoming-kind.course {
    background: #efb33d;
    color: #2a1c02;
}

.network .upcoming-kind {
    width: fit-content;
    padding: 4px 6px;
}

.network .upcoming-spots {
    display: block;
    margin-top: 8px;
    color: #aab9c7;
    font-size: 10px;
}

.network .upcoming-spots strong {
    color: #f6f9fc;
}

.network .course-date b {
    font-size: 19px;
}

.network .mockup-empty {
    min-height: 220px;
    display: grid;
    place-content: center;
    gap: 8px;
    padding: 30px;
    border: 1px solid #34495b;
    background: #101b25;
    color: #c6d5e1;
    text-align: center;
}

.network .mockup-empty strong {
    color: #fff;
    font-size: 22px;
}

.network .schedule-upcoming .schedule-extra {
    display: none;
}

.network .schedule-expand {
    width: 100%;
    min-height: 42px;
    margin-top: 10px;
    border: 1px solid #34495b;
    border-left: 4px solid #ec3e82;
    border-radius: 0;
    background: #101b25;
    color: #f6f9fc;
    cursor: pointer;
    font: 800 11px/1 Manrope, Arial, sans-serif;
    letter-spacing: 0;
    text-transform: uppercase;
}

.network .schedule-expand:hover {
    border-color: #ec3e82;
}

.network .schedule-side-rail {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.network .join-courses {
    padding: 20px;
    border: 1px solid #35495a;
    background: #101b25;
}

.network .join-courses-head h3 {
    margin: 7px 0 8px;
    font-size: 24px;
    line-height: 1.05;
}

.network .join-courses-head > p:last-child {
    margin: 0;
    color: #aab9c7;
    font-size: 11px;
    line-height: 1.45;
}

.network .join-course-list {
    display: grid;
    gap: 6px;
    margin-top: 14px;
}

.network .course-loading {
    display: block;
    padding: 14px;
    border: 1px solid #2d3b48;
    color: #aab9c7;
    font-size: 11px;
}

.network .join-course-card {
    --course-tone: #25aee4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: 88px;
    padding: 10px 11px;
    border: 1px solid #2d3b48;
    border-left: 3px solid var(--course-tone);
    background: #131f2a;
}

.network .join-course-card.course-green {
    --course-tone: #56d9aa;
}

.network .join-course-card.course-red {
    --course-tone: #ec3e82;
}

.network .join-course-card.course-yellow {
    --course-tone: #efb33d;
}

.network .join-course-main {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-width: 0;
}

.network .course-swatch {
    width: 6px;
    height: 38px;
    background: var(--course-tone);
}

.network .join-course-copy {
    min-width: 0;
}

.network .join-course-copy > span {
    display: block;
    overflow: hidden;
    color: #8fa5b6;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.network .join-course-copy h4 {
    margin: 3px 0 2px;
    color: #fff;
    font-size: 16px;
    line-height: 1.05;
}

.network .join-course-copy h4 small {
    color: var(--course-tone);
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.network .join-course-copy p {
    margin: 0;
    color: #aab9c7;
    font-size: 8px;
    line-height: 1.25;
}

.network .join-course-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 66px;
}

.network .join-course-action strong {
    color: var(--course-tone);
    font-size: 14px;
}

.network .join-course-action a,
.network .join-courses-all {
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.network .join-course-action a {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    gap: 5px;
    padding: 0 5px;
    border: 1px solid #415669;
    border-left: 3px solid var(--course-tone);
    line-height: 1.1;
}

.network .join-course-action a b {
    color: var(--course-tone);
    font-size: 13px;
}

.network .join-courses-all {
    display: block;
    margin-top: 15px;
    padding-top: 13px;
    border-top: 1px solid #2d3b48;
    color: #25aee4;
}

@media (min-width: 901px) {
    .network .join-panel {
        padding: 18px;
    }

    .network .join-panel h3 {
        font-size: 21px;
    }

    .network .join-panel > p {
        font-size: 11px;
    }

    .network .join-steps {
        margin: 14px 0;
    }

    .network .join-step {
        padding: 9px 0;
    }

    .network .join-step span {
        display: none;
    }

    .network .join-details {
        gap: 5px;
    }

    .network .join-courses {
        padding: 16px;
    }

    .network .join-courses-head h3 {
        font-size: 21px;
    }

    .network .join-courses-head > p:last-child {
        display: none;
    }

    .network .join-course-card {
        min-height: 82px;
        padding-block: 8px;
    }
}

.network .faq-index-side a.is-active {
    border-left-color: #ec3e82;
    color: #fff;
}

.network .faq-filter-status {
    margin: -4px 0 14px;
    color: #8fa5b6;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.network .faq-list-full details[hidden] {
    display: none;
}

@media (max-width: 900px) {
    .network .schedule-grid {
        grid-template-columns: 1fr;
    }

    .network .join-panel {
        position: static;
    }
}

@media (max-width: 600px) {
    html,
    body,
    .network,
    .network .hero {
        max-width: 100%;
        overflow-x: clip;
    }

    .mockup-home::before {
        display: none;
    }

    .network .main-nav {
        top: 42px;
    }

    .network .nav-cta {
        display: none;
    }

    .network .brand {
        font-size: 13px;
    }

    .network .hero-wrap {
        display: flex;
        min-height: auto;
        flex-direction: column;
        padding: 28px 0 48px;
    }

    .network .globe-stack {
        order: -1;
        width: min(100%, 320px);
        margin: 0 auto 22px;
        padding: 0;
    }

    .network .globe-holder {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        opacity: 1;
    }

    .network .globe-holder::before,
    .network .globe-holder::after,
    .network .globe-mount {
        display: none;
    }

    .network .globe-fallback {
        inset: 0;
        border-radius: 6px;
        background-color: #05080b;
        background-size: contain;
    }

    .network .globe-fallback::after {
        display: none;
    }

    .network .globe-country-flags {
        margin-top: 10px;
    }

    .network .hero-copy {
        width: 100%;
        padding-top: 0;
    }

    .network .hero-copy h1 {
        font-size: 38px;
    }

    .network .hero-copy h1 small {
        font-size: 14px;
        line-height: 1.25;
    }

    .network .actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .network .hero-next-club {
        width: 100%;
    }

    .network .schedule-next {
        grid-template-columns: 1fr;
    }

    .network .schedule-photo {
        min-height: 180px;
    }

    .network .join-panel {
        display: block;
    }

    .network .join-steps {
        margin: 22px 0;
    }

    .network .join-course-card {
        min-height: 92px;
    }

    .network #clubs-list-1 .featured-content {
        padding: 22px 18px;
    }
}

/* Keep final colour decisions after the earlier test-only compatibility rules. */
.network .schedule-button.cc {
    --tone: #ef3340;
}

.network .schedule-free.cc,
.network .upcoming-kind.cc {
    background: #d82331;
    color: #fff;
}

@media (max-width: 600px) {
    .network .hero,
    .network .globe-fallback {
        background-color: #000;
    }
}

/* Second refinement pass: stronger contrast and clearer information hierarchy. */
.network .nav-cta {
    border-color: #ec3e82;
    background: #ec3e82;
    color: #fff !important;
}

.network .nav-cta:hover,
.network .nav-cta:focus-visible {
    border-color: #ff66a6;
    background: #ff4d98 !important;
    color: #fff !important;
}

.network .proof-mark {
    color: #ec3e82;
    font-size: 19px;
}

.network .proof-mark img {
    display: block;
    width: 32px;
    height: 22px;
    border: 1px solid #526a7d;
    object-fit: cover;
}

.network .proof-statement-list .proof > div {
    min-width: 0;
    flex: 1;
}

.network .rhythm-option.featured {
    background: rgba(236, 62, 130, 0.17);
    box-shadow: inset 5px 0 0 #ec3e82;
}

.network .rhythm-option.best-value {
    background: rgba(37, 132, 96, 0.2);
    box-shadow: inset 5px 0 0 #56d9aa;
}

.network .rhythm-option.best-value .credit-number {
    color: #56d9aa;
}

.network .rhythm-option.best-value .premium-button {
    --tone: #56d9aa;
}

.network .credit-action {
    display: grid;
    gap: 6px;
    width: 129px;
}

.network .credit-action .premium-button {
    width: 100%;
}

.network .credit-notice {
    color: #ff66a6;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.7px;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
}

.network .rhythm-option.best-value .credit-notice {
    color: #56d9aa;
}

@media (max-width: 600px) {
    .network .credit-action {
        grid-column: 2;
        justify-self: start;
    }
}

/* Pure-black desktop section canvas preview; cards and panels retain their surfaces. */
@media (min-width: 851px) {
    .network,
    .network .hero,
    .network .happy-speakers,
    .network .club-schedule,
    .network .host-guide-section,
    .network .premium-practice,
    .network .process-section,
    .network .why-join,
    .network .end-faq,
    .network .about-world,
    .network .learn-final,
    .network .final-cta,
    .network .final-footer {
        background: #000;
    }

    .network .globe-country-flags img,
    .network .happy-country-row img {
        border-color: #000;
    }
}

/* Desktop card experiment: black surfaces with restrained pink structure. */
@media (min-width: 851px) {
    .network {
        --mockup-card-border: rgba(236, 62, 130, 0.72);
    }

    .network .hero {
        border-bottom-color: #ec3e82;
    }

    .network .happy-speakers,
    .network .club-schedule,
    .network .host-guide-section,
    .network .premium-practice,
    .network .process-section,
    .network .why-join,
    .network .end-faq,
    .network .about-world,
    .network .learn-final,
    .network .final-cta,
    .network .final-footer {
        border-top-color: #ec3e82;
    }

    .network .proofs.proof-statement,
    .network .happy-layout,
    .network .schedule-next,
    .network .upcoming-card,
    .network .join-panel,
    .network .join-courses,
    .network .join-course-card,
    .network .schedule-expand,
    .network .mockup-empty,
    .network .rhythm,
    .network .rhythm-intro,
    .network .rhythm-option,
    .network .premium-course,
    .network .offer-card,
    .network .guide-layout,
    .network .guide-step,
    .network .guide-note,
    .network .process-route,
    .network .route-step,
    .network .why-catalogue,
    .network .why-item,
    .network .faq-index,
    .network .faq-index-side,
    .network .faq-list-full details,
    .network .reading-room,
    .network .reading-article,
    .network .hero-next-club {
        border-color: var(--mockup-card-border);
        background: #000;
    }

    .network .proof-statement-lead,
    .network .proof-statement-list .proof,
    .network .happy-intro,
    .network .happy-review,
    .network .join-step,
    .network .included,
    .network .included div,
    .network .guide-steps,
    .network .footer-question,
    .network .footer-bottom-final {
        border-color: var(--mockup-card-border);
    }

    .network .rhythm-option.featured,
    .network .rhythm-option.best-value {
        background: #000;
    }

    .network .schedule-photo::after {
        background: linear-gradient(90deg, transparent 45%, #000);
    }

    .network .route-step::after {
        background: #000;
    }
}

.network .hero-copy .eyebrow {
    color: #fff !important;
}

.network .hero-copy .hero-speak-word {
    color: #ec3e82;
}

/* Let Globe.gl's real directional light create the day/night transition. */
.network .globe-holder::after {
    display: none;
}

.network .upcoming-meta {
    display: grid;
    gap: 5px;
}

.network .upcoming-meta > span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.network .upcoming-meta i {
    width: 13px;
    flex: 0 0 13px;
    color: #ec3e82;
    font-size: 10px;
    text-align: center;
}

.network .upcoming-platform {
    color: #f6f9fc;
    font-weight: 800;
}

.network .inline-heading-character {
    position: absolute;
    top: 50%;
    left: -0.96em;
    display: block !important;
    width: 0.9em !important;
    height: 0.9em !important;
    margin: 0;
    border: 0;
    transform: translateY(-48%);
    object-fit: contain;
}

/* Country artwork shares Korea's visual scale on desktop. */
@media (min-width: 851px) {
    .network .country-character,
    .network .section-character,
    .network .heading-country-art {
        width: 88px !important;
        height: 88px !important;
        flex: 0 0 88px;
        border: 0;
        object-fit: contain;
    }

    .network .inline-heading-character.country-character {
        left: -92px;
        width: 88px !important;
        height: 88px !important;
    }
}

.network .proof-lead-character {
    display: block;
    width: 68px;
    height: 68px;
    margin: 18px 0 0;
    object-fit: contain;
}

.network .section-copy-character {
    display: block !important;
    width: 88px !important;
    height: 88px !important;
    border: 0;
    object-fit: contain;
}

.network .section-copy-character--above {
    margin: 0 0 18px;
}

.network .section-copy-character--below {
    margin: 20px 0 0;
}

@media (max-width: 600px) {
    .network .section-copy-character {
        width: 68px !important;
        height: 68px !important;
    }

    .network .proof-lead-character {
        margin-top: 14px;
    }
}

.network .heading-character-word {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

/* A wider benefit index replaces the cramped six-column strip. */
@media (min-width: 851px) {
    .network .why-catalogue {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        border: 0;
        background: transparent;
        counter-reset: benefit;
    }

    .network .why-item,
    .network .why-item:last-child {
        position: relative;
        display: grid;
        grid-template-columns: 70px minmax(0, 1fr);
        grid-template-rows: auto 1fr;
        gap: 7px 18px;
        min-height: 174px;
        padding: 25px 54px 24px 24px;
        border: 1px solid var(--mockup-card-border);
        background: #000;
        counter-increment: benefit;
    }

    .network .why-item::after {
        content: "0" counter(benefit);
        position: absolute;
        top: 22px;
        right: 20px;
        color: #ec3e82;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.8px;
    }

    .network .why-item img {
        grid-row: 1 / span 2;
        width: 62px;
        height: 62px;
        align-self: start;
    }

    .network .why-item h3 {
        margin: 0;
        padding-right: 22px;
        font-size: 20px;
        line-height: 1.15;
    }

    .network .why-item p {
        margin: 0;
        font-size: 13px;
        line-height: 1.55;
    }
}

/* Desktop typography audit: three clear tiers for body, card copy and metadata. */
@media (min-width: 851px) {
    .network .hero-description {
        font-size: 16px;
        line-height: 1.65;
    }

    .network .happy-head > p,
    .network .happy-intro > p:not(.happy-kicker),
    .network .schedule-head > p,
    .network .premium-head > p,
    .network .process-head > p,
    .network .why-head > p,
    .network .end-faq-head > p,
    .network .about-world > .wrap > p:not(.about-kicker),
    .network .learn-head-final > p,
    .network .final-cta > .wrap > p:not(.learn-kicker) {
        font-size: 15px;
        line-height: 1.65;
    }

    .network .proof strong {
        font-size: 16px;
    }

    .network .proof span {
        font-size: 12px;
        line-height: 1.45;
    }

    .network .happy-intro h3 {
        font-size: 28px;
    }

    .network .happy-review blockquote {
        font-size: 14px;
        line-height: 1.55;
    }

    .network .happy-person,
    .network .happy-person b,
    .network .happy-country-row span {
        font-size: 11px;
        line-height: 1.4;
    }

    .network .schedule-next-copy > p,
    .network .join-panel > p:not(.schedule-kicker),
    .network .rhythm-intro > p,
    .network .premium-course p,
    .network .guide-copy .host-story {
        font-size: 14px;
        line-height: 1.6;
    }

    .network .schedule-meta,
    .network .upcoming-card p,
    .network .upcoming-spots,
    .network .schedule-capacity,
    .network .join-step span,
    .network .join-details,
    .network .included div,
    .network .option-copy span,
    .network .guide-step span,
    .network .route-step-copy p,
    .network .why-item p,
    .network .faq-list-full details p,
    .network .reading-article p,
    .network .footer-grid-final p,
    .network .footer-grid-final a {
        font-size: 12px;
        line-height: 1.5;
    }

    .network .join-step strong,
    .network .included b,
    .network .guide-step strong {
        font-size: 13px;
    }

    .network .option-price span,
    .network .guide-note span,
    .network .footer-bottom-final {
        font-size: 11px;
        line-height: 1.45;
    }

    .network .offer-card p,
    .network .faq-index-side a {
        font-size: 13px;
        line-height: 1.5;
    }

    .network .faq-list-full summary {
        font-size: 14px;
    }

    .network .premium-button,
    .network .schedule-button,
    .network .reading-link,
    .network .join-course-action a,
    .network .join-courses-all {
        font-size: 10px;
    }

    .network .join-course-copy > span,
    .network .join-course-copy h4 small,
    .network .join-course-copy p {
        font-size: 11px;
        line-height: 1.4;
    }
}

@media (min-width: 851px) {
    .network .hero-description,
    .network .happy-head > p,
    .network .happy-intro > p:not(.happy-kicker),
    .network .schedule-head > p,
    .network .schedule-next-copy > p,
    .network .join-panel > p:not(.schedule-kicker),
    .network .premium-head > p,
    .network .rhythm-intro > p,
    .network .premium-course p,
    .network .offer-card p,
    .network .guide-copy .host-story,
    .network .process-head > p,
    .network .why-head > p,
    .network .end-faq-head > p,
    .network .about-world > .wrap > p:not(.about-kicker),
    .network .learn-head-final > p,
    .network .reading-article p,
    .network .final-cta > .wrap > p:not(.learn-kicker) {
        color: #edf2f6;
    }

    .network .proof span,
    .network .happy-person,
    .network .schedule-meta,
    .network .schedule-capacity,
    .network .upcoming-card p,
    .network .upcoming-spots,
    .network .join-step span,
    .network .join-details,
    .network .included div,
    .network .option-copy span,
    .network .option-price span,
    .network .guide-step span,
    .network .guide-note span,
    .network .route-step-copy p,
    .network .why-item p,
    .network .faq-index-side a,
    .network .faq-list-full details p,
    .network .footer-grid-final p,
    .network .footer-grid-final a,
    .network .footer-bottom-final {
        color: #dce5ec;
    }

    .network .schedule-meta i,
    .network .upcoming-card p > i,
    .network .upcoming-date > i {
        color: #ec3e82;
    }

    .network .schedule-head > p {
        font-size: 16px;
    }

    .network .schedule-next-copy > p {
        font-size: 14px;
        line-height: 1.55;
    }

    .network .schedule-meta {
        font-size: 12px;
    }

    .network .upcoming-kind {
        font-size: 10px;
    }

    .network .upcoming-card h3 {
        font-size: 17px;
        line-height: 1.25;
    }

    .network .upcoming-card p {
        font-size: 12px;
        line-height: 1.55;
    }

    .network .upcoming-spots,
    .network .schedule-capacity,
    .network .join-step span,
    .network .join-details {
        font-size: 11px;
    }

    .network .upcoming-card .schedule-button {
        font-size: 10px;
    }

    .network .join-courses-head > p:last-child,
    .network .course-loading,
    .network .join-course-copy > span,
    .network .join-course-copy p {
        color: #dce5ec;
    }

    .network .join-courses-head > p:last-child,
    .network .course-loading {
        font-size: 12px;
    }

    .network .join-course-copy > span {
        font-size: 10px;
    }

    .network .join-course-copy h4 {
        font-size: 17px;
        line-height: 1.15;
    }

    .network .join-course-copy h4 small,
    .network .join-course-copy p {
        font-size: 10px;
    }

    .network .join-course-action a,
    .network .join-courses-all {
        font-size: 10px;
    }
}

/* Schedule categories use one stable colour everywhere. */
.network .schedule-next,
.network .upcoming-card {
    --club-tone: #56d9aa;
}

.network .schedule-next[data-club-type="regular"],
.network .upcoming-card[data-club-type="regular"] {
    --club-tone: #56d9aa;
}

.network .schedule-next[data-club-type="cc"],
.network .upcoming-card[data-club-type="cc"] {
    --club-tone: #ef3340;
}

.network .schedule-next[data-club-type="bb"],
.network .upcoming-card[data-club-type="bb"] {
    --club-tone: #25aee4;
}

.network .schedule-next[data-club-type="paid"],
.network .upcoming-card[data-club-type="paid"] {
    --club-tone: #ec3e82;
}

.network .schedule-next[data-club-type="random"],
.network .upcoming-card[data-club-type="random"] {
    --club-tone: #efb33d;
}

.network .schedule-next[data-club-type],
.network .upcoming-card[data-club-type] {
    border-top: 3px solid var(--club-tone);
}

.network .schedule-next[data-club-type] .schedule-status,
.network .upcoming-card[data-club-type] .upcoming-date,
.network .schedule-next[data-club-type] .schedule-meta i,
.network .upcoming-card[data-club-type] .upcoming-meta i {
    color: var(--club-tone);
}

.network .schedule-next[data-club-type] .schedule-status::before {
    background: var(--club-tone);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--club-tone) 18%, transparent);
}

.network .schedule-button.free,
.network .schedule-button.big,
.network .schedule-button.skills {
    --tone: #56d9aa;
}

.network .schedule-button.cc {
    --tone: #ef3340;
}

.network .schedule-button.bb {
    --tone: #25aee4;
}

.network .schedule-button.paid {
    --tone: #ec3e82;
}

.network .schedule-button.random,
.network .schedule-button.course {
    --tone: #efb33d;
}

.network .schedule-free.free,
.network .upcoming-kind.free {
    background: #56d9aa;
    color: #07261a;
}

.network .schedule-free.cc,
.network .upcoming-kind.cc {
    background: #ef3340;
    color: #fff;
}

.network .schedule-free.bb,
.network .upcoming-kind.bb {
    background: #25aee4;
    color: #061f2a;
}

.network .schedule-free.paid,
.network .upcoming-kind.paid {
    background: #ec3e82;
    color: #fff;
}

.network .schedule-free.random,
.network .upcoming-kind.random {
    background: #efb33d;
    color: #2a1c02;
}

.network .club-ribbon.free,
.network .club-ribbon.big,
.network .club-ribbon.skills {
    background: linear-gradient(45deg, #35b982, #63e2b3);
    color: #07261a;
}

.network .club-ribbon.cc {
    background: linear-gradient(45deg, #b90f1d, #ef3340);
    color: #fff;
}

.network .club-ribbon.bb {
    background: linear-gradient(45deg, #168bb8, #25aee4);
    color: #061f2a;
}

.network .club-ribbon.paid {
    background: linear-gradient(45deg, #c92d69, #ec3e82);
    color: #fff;
}

.network .club-ribbon.random,
.network .club-ribbon.course {
    background: linear-gradient(45deg, #d79512, #efb33d);
    color: #2a1c02;
}

/* Keep course links legible when hovered. */
.network .join-course-action a {
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.network .join-course-action a:hover,
.network .join-course-action a:focus-visible {
    border-color: #ec3e82;
    background: #ec3e82 !important;
    color: #fff !important;
}

.network .join-course-action a:hover b,
.network .join-course-action a:focus-visible b {
    color: #fff;
}

/* Yellow section labels are clearer against the black canvas. */
.network .schedule-head .schedule-kicker,
.network .why-head .why-kicker {
    color: #efb33d;
}

/* Give each premium credit tier its own restrained surface colour. */
@media (min-width: 851px) {
    .network .rhythm-option {
        --credit-tone: #25aee4;
        border-color: color-mix(in srgb, var(--credit-tone) 52%, #000);
        background: #0a2233 !important;
        box-shadow: inset 5px 0 0 var(--credit-tone);
    }

    .network .rhythm-option:nth-child(2) {
        --credit-tone: #efb33d;
        background: #292009 !important;
    }

    .network .rhythm-option:nth-child(3) {
        --credit-tone: #ec3e82;
        background: #2a0f1d !important;
    }

    .network .rhythm-option:nth-child(4) {
        --credit-tone: #56d9aa;
        background: #0d281e !important;
    }

    .network .rhythm-option .credit-number,
    .network .rhythm-option .credit-notice {
        color: var(--credit-tone);
    }

    .network .rhythm-option .premium-button {
        --tone: var(--credit-tone);
    }
}

/* Keep the reviews heading and Polish character together on wide screens. */
@media (min-width: 1100px) {
    .network .happy-speakers .happy-head {
        grid-template-columns: minmax(600px, 1.2fr) minmax(0, 0.8fr);
        gap: 40px;
    }

    .network .happy-head .section-title-row {
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .network .happy-head h2 {
        font-size: 38px;
    }
}
/* Reserved manual AdSense placements keep ads separate from site controls. */
.network .homepage-ad {
  padding: 28px 0;
  border-top: 1px solid var(--pink);
  background: #000;
}

.network .homepage-ad-inner {
  min-height: 118px;
}

.network .homepage-ad-label {
  display: block;
  margin-bottom: 8px;
  color: #9ba8b4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.network .homepage-ad .adsbygoogle {
  min-height: 90px;
}

@media (max-width: 600px) {
  .network .homepage-ad {
    padding: 20px 0;
  }

  .network .homepage-ad-inner {
    min-height: 116px;
  }

  .network .homepage-ad .adsbygoogle {
    min-height: 100px;
  }
}
