:root {
    --wip-serc-blue: #005a8b;
    --wip-serc-dark: #17324d;
    --wip-serc-pink: #c5006d;
    --wip-serc-light: #f5f7f9;
    --wip-serc-border: #e1e6ea;
    --wip-text: #495057;
}


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

.wip-page {
    background: #fff;
    color: var(--wip-text);
}

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

.wip-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 0 0 28px 28px;

    background:
        linear-gradient(
            90deg,
            #e0007aeb 0%,
            rgb(173 0 109 / 77%) 45%,
            #700877c7 100%
        ),
        url(/img/about/wip/wash.jpg) center / cover no-repeat;
}

.wip-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 65px 0;
    color: #fff;
}

.wip-hero h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.wip-hero-lead {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #fff;
}


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

.wip-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.wip-event-meta-item {
    display: flex;
    align-items: center;
    padding: 12px 18px;

    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px;

    color: #fff;
    font-weight: 600;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


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

.wip-section {
    padding: 60px 0;
}

.wip-section-light {
    background: var(--wip-serc-light);
}

.wip-section-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--wip-serc-pink);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.wip-section-label-light {
    color: #fff;
}

.wip-section-title {
    margin-bottom: 18px;

    color: var(--wip-serc-dark);

    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
}

.wip-section-title-small {
    font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.wip-section-intro {
    max-width: 800px;

    color: var(--wip-text);

    font-size: 1.08rem;
    line-height: 1.75;
}


/* =========================================
   INTRO CARD
   ========================================= */

.wip-intro-card {
  
    padding: 32px;

    background: #fff;
    border: 1px solid var(--wip-serc-border);
    border-radius: 18px;
}

.wip-intro-card p {
    line-height: 1.75;
}

.wip-intro-card p:last-child {
    margin-bottom: 0;
}


/* =========================================
   INFO CARDS
   ========================================= */

.wip-info-card {
    height: 100%;
    padding: 26px;

    background: #fff;
    border: 1px solid var(--wip-serc-border);
    border-radius: 16px;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.wip-info-card:hover {
    transform: translateY(-4px);

    border-color: #d3dce2;
    box-shadow: 0 12px 30px rgba(0,0,0,.07);
}

.wip-info-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,90,139,.08);
    border-radius: 12px;

    color: var(--wip-serc-blue);
    font-size: 1.2rem;
}

.wip-info-card h3 {
    margin-bottom: 10px;

    color: var(--wip-serc-dark);

    font-size: 1.1rem;
    font-weight: 700;
}

.wip-info-card p {
    line-height: 1.65;
}


/* =========================================
   SIMPLE CARDS
   ========================================= */

.wip-simple-card {
    height: 100%;
    padding: 28px;

    background: #fff;
    border: 1px solid var(--wip-serc-border);
    border-radius: 16px;
}

.wip-simple-card h2,
.wip-simple-card h3 {
    color: var(--wip-serc-dark);
    font-weight: 700;
}

.wip-simple-card p {
    line-height: 1.7;
}

.wip-simple-card a {
    color: var(--wip-serc-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wip-simple-card a:hover {
    color: #00466d;
}


/* =========================================
   LISTS
   ========================================= */

.wip-list {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.wip-list li {
    margin-bottom: 15px;
    line-height: 1.65;
}

.wip-list li:last-child {
    margin-bottom: 0;
}

.wip-pink-icon {
    color: var(--wip-serc-pink);
}


/* =========================================
   HIGHLIGHT BOX
   ========================================= */

.wip-highlight-box {
    margin-bottom: 20px;
    padding: 25px;

    background: var(--wip-serc-pink);
    border-radius: 16px;

    color: #fff;
}

.wip-highlight-label {
    margin-bottom: 7px;

    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;

    opacity: .9;
}

.wip-highlight-title {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.25;
}


/* =========================================
   DARK PANELS
   ========================================= */

.wip-dark-panel {
    overflow: hidden;

    background: var(--wip-serc-dark);
    border-radius: 22px;

    color: #fff;
}

.wip-dark-panel-content {
    padding: 38px;
}

.wip-dark-panel-side {
    height: 100%;
    padding: 38px;

    background: rgba(255,255,255,.05);
}

.wip-dark-panel h2,
.wip-dark-panel h3 {
    color: #fff;
}

.wip-dark-panel p {
    line-height: 1.7;
}

.wip-dark-panel a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wip-dark-panel a:hover {
    color: #fff;
}

.wip-dark-list {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.wip-dark-list li {
    margin-bottom: 14px;
    line-height: 1.65;
}

.wip-dark-list li:last-child {
    margin-bottom: 0;
}


/* =========================================
   DARK NOTE
   ========================================= */

.wip-dark-note {
    margin-top: 26px;
    padding: 20px;

    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;

    color: #fff;
}


/* =========================================
   PROGRAMME BREAK
   ========================================= */

.wip-break-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    background: #fff;
    border: 1px solid var(--wip-serc-border);
    border-radius: 999px;

    color: var(--wip-serc-dark);

    font-weight: 700;
}


/* =========================================
   FINAL CTA
   ========================================= */

.wip-final-title {
    margin-bottom: 16px;

    color: #fff;

    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
}

.wip-final-copy {
    max-width: 700px;

    color: #fff;

    font-size: 1.08rem;
    line-height: 1.75;
}


/* =========================================
   ACCESSIBILITY / FOCUS
   ========================================= */

.wip-page a:focus-visible {
    outline: 3px solid rgba(224,0,122,.35);
    outline-offset: 3px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991.98px) {

    .wip-hero {
        min-height: 420px;
    }

    .wip-dark-panel-side {
        border-top: 1px solid rgba(255,255,255,.12);
    }

}


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

@media (max-width: 767.98px) {

    .wip-hero {
        min-height: 400px;
        border-radius: 0 0 18px 18px;
    }

    .wip-hero-content {
        padding: 45px 0;
    }

    .wip-hero h1 {
        font-size: clamp(2.5rem, 12vw, 3.7rem);
    }

    .wip-hero-lead {
        font-size: 1.08rem;
    }

    .wip-event-meta {
        flex-direction: column;
    }

    .wip-event-meta-item {
        width: 100%;
    }

    .wip-section {
        padding: 44px 0;
    }

    .wip-intro-card,
    .wip-simple-card,
    .wip-info-card {
        padding: 24px;
    }

    .wip-dark-panel-content,
    .wip-dark-panel-side {
        padding: 26px;
    }

    .wip-highlight-box {
        padding: 22px;
    }

}


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

@media (max-width: 575.98px) {

    .wip-section-title {
        font-size: 1.8rem;
    }

    .wip-hero h1 {
        font-size: 2.7rem;
    }

    .wip-event-meta-item {
        padding: 11px 14px;
        font-size: .95rem;
    }

    .wip-intro-card,
    .wip-simple-card,
    .wip-info-card {
        border-radius: 14px;
    }

    .wip-dark-panel {
        border-radius: 18px;
    }

}

/* Video */
.embed-container {
    width: 80%;
    margin-inline: auto;
    aspect-ratio: 16 / 9;
}

.embed-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media
(max-width: 767.98px) {
    .embed-container {
        width: 100%;
    }
}