

/* ============================================================
   MASTER PAGE — HEADER, LANGUAGE SWITCHER AND FOOTER
   ============================================================ */

.error-field {
            border: 2px solid red !important;
            background-color: #ffe6e6 !important;
        }

        .sjwp-master {
            --sjwp-master-navy: #082f78;
            --sjwp-master-blue: #075ccf;
            --sjwp-master-cyan: #00b9e8;
            --sjwp-master-yellow: #ffd323;
            font-family: "Montserrat", sans-serif;
        }

        .sjwp-site-header {
            position: relative;
            z-index: 50;
            background: #fff;
            box-shadow: 0 8px 28px rgba(8, 47, 120, .1);
        }

        .sjwp-site-header::after {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--sjwp-master-blue) 0%, var(--sjwp-master-cyan) 72%, var(--sjwp-master-yellow) 100%);
            content: "";
        }

        .sjwp-header-language {
            display: flex;
            align-items: center;
        }

        .sjwp-language-control {
            display: inline-flex !important;
            align-items: center;
            gap: 8px;
            padding: 0 !important;
            overflow: visible;
            background: transparent !important;
            border: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }

        .sjwp-language-control ul,
        .sjwp-language-control > div {
            display: inline-flex !important;
            align-items: center;
            gap: 8px;
            margin: 0 !important;
            padding: 0 !important;
            list-style: none !important;
            background: transparent !important;
            border: 0 !important;
            box-shadow: none !important;
        }

        .sjwp-language-control li,
        .sjwp-language-control li.active,
        .sjwp-language-control li.current {
            float: none !important;
            margin: 0 !important;
            padding: 0 !important;
            border: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
        }

        .sjwp-language-control a {
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            min-width: 88px;
            min-height: 42px;
            padding: 10px 16px !important;
            color: var(--sjwp-master-navy) !important;
            background: #fff !important;
            border: 1px solid #cbd7e6 !important;
            border-radius: 7px !important;
            font-size: 13px !important;
            font-weight: 800 !important;
            line-height: 1.2;
            text-align: center;
            text-decoration: none !important;
            box-shadow: 0 3px 9px rgba(8, 47, 120, .07) !important;
            transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        .sjwp-language-control a span {
            display: inline !important;
            min-width: 0 !important;
            min-height: 0 !important;
            padding: 0 !important;
            color: inherit !important;
            background: transparent !important;
            border: 0 !important;
            border-radius: 0 !important;
            font-size: 13px !important;
            box-shadow: none !important;
        }

        .sjwp-language-control a:hover,
        .sjwp-language-control a:focus {
            color: var(--sjwp-master-blue) !important;
            background: #f5f9ff !important;
            border-color: #90b5e5 !important;
            box-shadow: 0 5px 13px rgba(8, 47, 120, .12) !important;
            transform: translateY(-1px);
        }

        .sjwp-header-language.is-el .sjwp-language-control li:first-child a,
        .sjwp-header-language.is-el .sjwp-language-control > a:first-of-type,
        .sjwp-header-language.is-el .sjwp-language-control > div > a:first-of-type,
        .sjwp-header-language.is-en .sjwp-language-control li:last-child a,
        .sjwp-header-language.is-en .sjwp-language-control > a:last-of-type,
        .sjwp-header-language.is-en .sjwp-language-control > div > a:last-of-type {
            color: #fff !important;
            background: var(--sjwp-master-navy) !important;
            border-color: var(--sjwp-master-navy) !important;
            box-shadow: 0 5px 14px rgba(8, 47, 120, .2) !important;
        }

        .sjwp-header-language.is-el .sjwp-language-control li:first-child a:hover,
        .sjwp-header-language.is-el .sjwp-language-control li:first-child a:focus,
        .sjwp-header-language.is-en .sjwp-language-control li:last-child a:hover,
        .sjwp-header-language.is-en .sjwp-language-control li:last-child a:focus {
            color: #fff !important;
            background: var(--sjwp-master-navy) !important;
        }

        .sjwp-language-control a + a,
        .sjwp-language-control li + li {
            margin-left: 0 !important;
        }

		/* Remove inherited active-language background */
.sjwp-language-control li,
.sjwp-language-control li.active,
.sjwp-language-control li.current,
.sjwp-language-control li:hover,
.sjwp-language-control li:focus {
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

/* Remove coloured decorations added by the original switcher */
.sjwp-language-control li::before,
.sjwp-language-control li::after,
.sjwp-language-control a::before,
.sjwp-language-control a::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border: 0 !important;
    content: none !important;
}

/* Active language button */
.sjwp-header-language.is-el
.sjwp-language-control li:first-child a,
.sjwp-header-language.is-en
.sjwp-language-control li:last-child a {
    overflow: hidden !important;
    color: #fff !important;
    background: var(--sjwp-master-navy) !important;
    border: 1px solid var(--sjwp-master-navy) !important;
    border-radius: 7px !important;
    outline: 0 !important;
    box-shadow: none !important;
}
		
		#lang li.active {
 		 background-color: #fff !important; 
			}
        .sjwp-header-main {
            display: flex;
            align-items: stretch;
            width: calc(100% - 48px);
            max-width: 1440px;
            min-height: 132px;
            margin: 0 auto;
            padding: 18px 0;
            background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
        }

        .sjwp-header-utility {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 14px;
            width: auto;
            min-height: 0;
            margin: 0;
            padding: 0;
            border-bottom: 0;
        }

        .sjwp-header-content {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            flex: 1 1 auto;
            flex-direction: column;
            gap: 17px;
            min-width: 0;
            margin-left: 44px;
        }

        .sjwp-brand {
            display: flex;
            align-items: center;
            flex: 0 0 auto;
        }

        .sjwp-brand-logo,
        .sjwp-brand-museum {
            color: var(--sjwp-master-navy);
            text-decoration: none;
        }

        .sjwp-brand-logo:hover,
        .sjwp-brand-logo:focus,
        .sjwp-brand-museum:hover,
        .sjwp-brand-museum:focus {
            color: var(--sjwp-master-navy);
            text-decoration: none;
        }

        .sjwp-brand-logo img {
            display: block;
            width: 188px;
            height: auto;
        }

        .sjwp-brand-museum {
            display: flex;
            align-items: center;
            margin-right: 22px;
       
            border-right: 1px solid #dfe6ed;
        }

        .sjwp-brand-museum img {
            display: block;
            width: 142px;
            max-height: 72px;
            object-fit: contain;
        }

        .sjwp-site-nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex: 0 1 auto;
            gap: 12px;
            margin: 0;
        }

        .sjwp-site-nav a {
            position: relative;
            padding: 9px 4px 11px;
            color: #243956;
            border: 0;
            border-radius: 0;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.25;
            text-decoration: none;
            white-space: nowrap;
            transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
        }

        .sjwp-site-nav a:hover,
        .sjwp-site-nav a:focus {
            color: var(--sjwp-master-blue);
            background: transparent;
            text-decoration: none;
        }

        .sjwp-site-nav a::after {
            position: absolute;
            right: 4px;
            bottom: 3px;
            left: 4px;
            height: 2px;
            background: var(--sjwp-master-cyan);
            content: "";
            opacity: 0;
            transform: scaleX(.35);
            transition: opacity .2s ease, transform .2s ease;
        }

        .sjwp-site-nav a:hover::after,
        .sjwp-site-nav a:focus::after {
            opacity: 1;
            transform: scaleX(1);
        }

        .sjwp-header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 0 0 auto;
        }

        .sjwp-header-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 20px;
            color: var(--sjwp-master-navy);
            background: var(--sjwp-master-yellow);
            border-color: var(--sjwp-master-yellow);
            border-radius: 7px;
            font-size: 13px;
            font-weight: 800;
            line-height: 1.25;
            text-decoration: none;
            white-space: nowrap;
            box-shadow: 0 8px 19px rgba(208, 166, 0, .24);
            transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        .sjwp-header-cta:hover,
        .sjwp-header-cta:focus {
            color: var(--sjwp-master-navy);
            background: #ffdc4f;
            border-color: #ffdc4f;
            box-shadow: 0 11px 24px rgba(208, 166, 0, .3);
            transform: translateY(-2px);
            text-decoration: none;
        }

        .sjwp-site-footer {
            padding: 54px 0 28px;
            color: rgba(255, 255, 255, .72);
            background: #071f46;
        }

        .sjwp-footer-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 45px;
            padding-bottom: 35px;
        }

        .sjwp-footer-brand img {
            display: block;
            width: 205px;
            max-width: 100%;
            margin-bottom: 18px;
            filter: brightness(0) invert(1);
            opacity: .92;
        }

        .sjwp-footer-brand p {
            max-width: 430px;
            margin: 0;
            font-size: 13px;
            line-height: 1.7;
        }

        .sjwp-footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 10px 24px;
            max-width: 490px;
        }

        .sjwp-footer-links a {
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
        }

        .sjwp-footer-links a:hover,
        .sjwp-footer-links a:focus {
            color: var(--sjwp-master-yellow);
            text-decoration: none;
        }

        .sjwp-footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }

        .sjwp-footer-bottom p {
            margin: 0;
            font-size: 12px;
            line-height: 1.7;
			color: #fff !important;
        }
		
		.sjwp-footer-bottom p a {color: #fff; text-decoration: underline;}

        .sjwp-footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            margin-left: 5px;
            color: #fff !important;
            background: rgba(255, 255, 255, .08);
            border-radius: 50%;
            text-decoration: none;
        }

        .sjwp-footer-social a:hover,
        .sjwp-footer-social a:focus {
            color: var(--sjwp-master-navy);
            background: var(--sjwp-master-yellow);
        }

        @media (max-width: 1199px) {
            .sjwp-header-main {
                flex-wrap: wrap;
                width: calc(100% - 30px);
                padding: 22px 0 20px;
            }

            .sjwp-header-content {
                align-items: flex-end;
                margin-left: 25px;
            }

            .sjwp-site-nav {
                justify-content: flex-end;
                width: auto;
                margin: 0;
                overflow-x: auto;
                padding-bottom: 3px;
            }

        }

        @media (max-width: 767px) {
            .sjwp-footer-top,
            .sjwp-footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }

            .sjwp-language-control a {
                min-width: 58px;
                padding: 8px 14px !important;
            }

            .sjwp-header-main {
                min-height: 0;
            }

            .sjwp-header-content {
                align-items: stretch;
                width: 100%;
                margin: 18px 0 0;
            }

            .sjwp-header-utility {
                justify-content: flex-end;
            }

            .sjwp-brand-logo img {
                width: 132px;
            }

            .sjwp-brand-museum {
                margin-right: 13px;
                padding-right: 13px;
            }

            .sjwp-brand-museum img {
                width: 100px;
                max-height: 56px;
            }

            .sjwp-site-nav {
                justify-content: flex-start;
                gap: 16px;
                width: 100%;
            }

            .sjwp-site-nav a {
                padding: 9px;
                font-size: 11px;
            }

            .sjwp-header-cta {
                padding: 12px 15px;
                font-size: 12px;
            }

            .sjwp-site-footer {
                padding-top: 42px;
            }

            .sjwp-footer-links {
                justify-content: flex-start;
            }

            .sjwp-footer-social a {
                margin: 0 5px 0 0;
            }
        }

/* Mobile navigation toggle */
.sjwp-nav-toggle {
    display: none;
}

@media (max-width: 767px) {
    .sjwp-header-main {
        position: relative;
        padding-top: 20px;
        padding-bottom: 18px;
    }

    .sjwp-brand {
        justify-content: flex-start;
        width: calc(100% - 58px);
        padding: 0;
    }

    .sjwp-brand-museum {
        margin-right: 17px;
        padding-right: 17px;
    }

    .sjwp-brand-museum img {
        width: 110px;
        max-height: 68px;
    }

    .sjwp-brand-logo img {
        width: 155px;
    }

    .sjwp-header-content {
        position: static;
        align-items: center;
        gap: 14px;
        margin-top: 15px;
    }

    .sjwp-header-utility {
        justify-content: center;
        width: 100%;
    }

    .sjwp-nav-toggle {
        position: absolute;
        top: 38px;
        right: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 42px;
        padding: 0;
        color: var(--sjwp-master-navy);
        background: #fff;
        border: 1px solid #cbd7e6;
        border-radius: 7px;
        box-shadow: 0 3px 9px rgba(8, 47, 120, .07);
        cursor: pointer;
    }

    .sjwp-nav-toggle:hover,
    .sjwp-nav-toggle:focus {
        color: var(--sjwp-master-blue);
        border-color: #90b5e5;
        outline: none;
    }

    .sjwp-nav-toggle:focus-visible {
        outline: 3px solid rgba(0, 185, 232, .35);
        outline-offset: 3px;
    }

    .sjwp-nav-toggle-lines,
    .sjwp-nav-toggle-lines::before,
    .sjwp-nav-toggle-lines::after {
        display: block;
        width: 22px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        content: "";
        transition: transform .2s ease, opacity .2s ease;
    }

    .sjwp-nav-toggle-lines {
        position: relative;
    }

    .sjwp-nav-toggle-lines::before,
    .sjwp-nav-toggle-lines::after {
        position: absolute;
        left: 0;
    }

    .sjwp-nav-toggle-lines::before {
        top: -7px;
    }

    .sjwp-nav-toggle-lines::after {
        top: 7px;
    }

    .sjwp-nav-toggle[aria-expanded="true"] .sjwp-nav-toggle-lines {
        background: transparent;
    }

    .sjwp-nav-toggle[aria-expanded="true"] .sjwp-nav-toggle-lines::before {
        top: 0;
        transform: rotate(45deg);
    }

    .sjwp-nav-toggle[aria-expanded="true"] .sjwp-nav-toggle-lines::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .sjwp-site-nav {
        display: none;
        width: 100%;
        margin: 8px 0 0;
        padding: 8px 0 2px;
        overflow: visible;
        background: #fff;
    }

    .sjwp-site-nav.is-open,
    .sjwp-nav-toggle[aria-expanded="true"] + .sjwp-site-nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sjwp-site-nav a {
        display: block;
        width: 100%;
        padding: 13px 4px !important;
        border-bottom: 1px solid #e6edf5;
        font-size: 13px;
        text-align: left;
        white-space: normal;
    }

    .sjwp-site-nav a:last-child {
        border-bottom: 0;
    }

    .sjwp-site-nav a::after {
        display: none;
    }
}

/* ============================================================
   STOCKHOLM JUNIOR WATER PRIZE — MAIN LANDING PAGE
   ============================================================ */

.sjwp-page {
        --sjwp-navy: #082f78;
        --sjwp-blue: #075ccf;
        --sjwp-cyan: #00b9e8;
        --sjwp-yellow: #ffd323;
        --sjwp-pale: #eef9fd;
        --sjwp-text: #263c61;
        color: var(--sjwp-text);
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
    }

    .sjwp-page *,
    .sjwp-page *::before,
    .sjwp-page *::after {
        box-sizing: border-box;
    }

   .sjwp-hero {
    width: 100%;
    height: auto;
    overflow: visible;
    background: #075ccf;
}

.sjwp-hero img {
    display: block;
    width: 100%;
    height: auto;
}

    .sjwp-section {
        padding: 85px 0;
    }

    .sjwp-section--pale {
        background: var(--sjwp-pale);
    }

    .sjwp-eyebrow {
        display: block;
        margin-bottom: 9px;
        color: var(--sjwp-blue);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .08em;
        line-height: 1.4;
    }

    .sjwp-heading {
        position: relative;
        margin: 0 0 34px;
        padding-bottom: 16px;
        color: var(--sjwp-navy);
        font-size: 41px;
        font-weight: 700;
        line-height: 1.2;
    }

    .sjwp-heading::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 46px;
        height: 4px;
        background: var(--sjwp-yellow);
        content: "";
    }

    .sjwp-copy p {
        margin: 0 0 17px;
        font-size: 17px;
        line-height: 1.8;
    }

    .sjwp-copy p:last-child {
        margin-bottom: 0;
    }

    .sjwp-identity {
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(180deg, #ffffff 0%, #ffffff 78%, #f7fcfe 100%);
    }

    .sjwp-identity::after {
        position: absolute;
        right: -180px;
        bottom: -280px;
        width: 560px;
        height: 560px;
        background: rgba(0, 185, 232, .035);
        border-radius: 50%;
        content: "";
        pointer-events: none;
    }

    .sjwp-identity .container {
        position: relative;
        z-index: 1;
    }

    .sjwp-identity-heading {
        max-width: 900px;
    }

    .sjwp-intro-copy {
        width: 100%;
        max-width: none;
    }

    .sjwp-identity-lead {
        max-width: 1120px;
        margin-bottom: 25px !important;
        color: var(--sjwp-navy);
        font-size: 21px !important;
        font-weight: 600;
        line-height: 1.65 !important;
    }

    .sjwp-identity-closing {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        max-width: 1080px;
        margin-top: 38px;
        padding-top: 22px;
        border-top: 1px solid rgba(0, 185, 232, .28);
    }

    .sjwp-identity-closing-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        color: #fff;
        background: linear-gradient(135deg, var(--sjwp-cyan), var(--sjwp-blue));
        border-radius: 50%;
        box-shadow: 0 8px 18px rgba(0, 185, 232, .2);
        font-size: 21px;
    }

    .sjwp-identity-closing p {
        position: relative;
        margin: 0 !important;
        padding-top: 12px;
        color: var(--sjwp-navy);
        font-size: 22px !important;
        font-weight: 700;
        line-height: 1.55 !important;
    }

    .sjwp-identity-closing p::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 46px;
        height: 3px;
        background: var(--sjwp-yellow);
        border-radius: 999px;
        content: "";
    }

    .sjwp-facts-panel {
        max-width: 1050px;
        margin: 55px auto 0;
        padding: 0;
    }

    .sjwp-facts-title {
        margin: 0 0 34px;
        color: var(--sjwp-navy);
        font-size: 25px;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1.3;
        text-align: center;
        text-transform: none;
    }

    .sjwp-facts-title::after {
        display: block;
        width: 54px;
        height: 3px;
        margin: 13px auto 0;
        background: var(--sjwp-yellow);
        border-radius: 999px;
        content: "";
    }

    .sjwp-facts {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        margin: 0;
    }

    .sjwp-fact-wrap {
        display: flex;
        width: auto;
        padding: 0;
    }

    .sjwp-fact-wrap + .sjwp-fact-wrap {
        border-left: 0;
    }

    .sjwp-fact {
        position: relative;
        width: 100%;
        min-height: 205px;
        padding: 58px 28px 30px;
        overflow: hidden;
        text-align: left;
        background: #fff;
        border: 1px solid rgba(15, 60, 125, .1);
        border-radius: 20px;
        box-shadow: 0 10px 24px rgba(23, 41, 87, .08);
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .sjwp-fact::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--sjwp-blue), #49c7e8);
        content: "";
    }

    .sjwp-fact:hover {
        box-shadow: 0 15px 30px rgba(23, 41, 87, .12);
        transform: translateY(-4px);
    }

    .sjwp-fact-number {
        position: absolute;
        top: 20px;
        right: 22px;
        color: #91a8bd;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .08em;
    }

    .sjwp-icon-circle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
        color: var(--sjwp-blue);
        background: #dff2fb;
        border-radius: 50%;
        font-size: 21px;
    }

    .sjwp-fact strong {
        display: block;
        min-height: 0;
        margin: 0 0 16px;
        color: var(--sjwp-navy);
        font-size: 27px;
        line-height: 1.2;
    }

    .sjwp-fact p {
        margin: 0;
        color: var(--sjwp-text);
        font-size: 15px;
        line-height: 1.6;
    }

    .sjwp-audience-list {
        display: grid;
        gap: 30px;
    }

    .sjwp-audience-card {
        display: grid;
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        overflow: hidden;
        background: #fff;
        border: 1px solid #dfe9f0;
        border-radius: 20px;
        box-shadow: 0 10px 28px rgba(23, 41, 87, .08);
    }

    .sjwp-audience-card--reverse {
        grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    }

    .sjwp-audience-media {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        overflow: hidden;
        background: #fff;
    }

    .sjwp-audience-image {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 315px;
        object-fit: contain;
    }

    .sjwp-audience-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 38px 42px;
    }

    .sjwp-audience-content h3 {
        margin: 0 0 14px;
        color: var(--sjwp-navy);
        font-size: 23px;
        font-weight: 700;
        line-height: 1.3;
    }

    .sjwp-audience-content p {
        margin: 0 0 15px;
        color: #344966;
        font-size: 16px;
        line-height: 1.75;
    }

    .sjwp-audience-content p:last-child {
        margin-bottom: 0;
    }

    .sjwp-participate {
        position: relative;
        overflow: hidden;
        padding: 82px 0;
        color: #fff;
        background:
            radial-gradient(
                circle at 12% 18%,
                rgba(0, 185, 232, .22) 0,
                rgba(0, 185, 232, 0) 32%
            ),
            radial-gradient(
                circle at 88% 85%,
                rgba(255, 211, 35, .10) 0,
                rgba(255, 211, 35, 0) 24%
            ),
            linear-gradient(
                135deg,
                #064899 0%,
                #075ccf 52%,
                #064fad 100%
            );
    }

    .sjwp-participate::before,
    .sjwp-participate::after {
        position: absolute;
        left: -10%;
        width: 120%;
        border-radius: 50% 50% 0 0 / 45% 45% 0 0;
        content: "";
        pointer-events: none;
    }

    .sjwp-participate::before {
        bottom: -145px;
        height: 250px;
        background: rgba(0, 185, 232, .24);
        transform: rotate(-2deg);
    }

    .sjwp-participate::after {
        bottom: -185px;
        height: 280px;
        background: rgba(255, 255, 255, .11);
        transform: rotate(2deg);
    }

    .sjwp-participate .container {
        position: relative;
        z-index: 1;
    }

    .sjwp-participate .sjwp-eyebrow,
    .sjwp-participate .sjwp-heading,
    .sjwp-participate h3 {
        color: #fff;
    }

    .sjwp-participate .sjwp-heading {
        margin-bottom: 42px;
    }

    .sjwp-path {
        display: flex;
        align-items: flex-start;
        min-height: 112px;
        padding: 0 24px;
    }

    .sjwp-path + .sjwp-path {
        border-left: 1px solid rgba(255, 255, 255, .35);
    }

    .sjwp-path-icon {
        flex: 0 0 54px;
        margin-right: 20px;
        color: #fff;
        font-size: 48px;
        line-height: 1;
    }

    .sjwp-path h3 {
        margin: 0 0 9px;
        font-size: 20px;
        font-weight: 700;
    }

    .sjwp-path p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
        font-size: 16px;
        line-height: 1.65;
    }

    .sjwp-actions {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 24px;
    }

    .sjwp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 45px;
        padding: 11px 22px;
        color: var(--sjwp-blue) !important;
        background: #fff;
        border: 1px solid #fff;
        border-radius: 7px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none !important;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .sjwp-btn i {
        margin-right: 9px;
    }

    .sjwp-btn:hover,
    .sjwp-btn:focus {
        box-shadow: 0 7px 18px rgba(0, 0, 0, .16);
        transform: translateY(-2px);
    }

    .sjwp-btn--yellow {
        color: var(--sjwp-navy) !important;
        background: var(--sjwp-yellow);
        border-color: var(--sjwp-yellow);
    }

    .sjwp-btn--blue {
        color: #fff !important;
        background: var(--sjwp-blue);
        border-color: var(--sjwp-blue);
    }

    .sjwp-timeline {
        position: relative;
        display: flex;
        margin: 8px -10px 0;
    }

    .sjwp-timeline::before {
        position: absolute;
        top: 16px;
        right: 16.666%;
        left: 16.666%;
        height: 2px;
        background: #1a75ee;
        content: "";
    }

    .sjwp-step {
        position: relative;
        z-index: 1;
        width: 33.333%;
        padding: 0 10px;
    }

    .sjwp-step-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        margin: 0 auto 18px;
        color: #fff;
        background: var(--sjwp-blue);
        border-radius: 50%;
        font-weight: 700;
    }

    .sjwp-step-card {
        min-height: 126px;
        padding: 24px;
        text-align: center;
        background: #fff;
        border: 1px solid #dfe8f0;
        border-radius: 9px;
        box-shadow: 0 4px 14px rgba(23, 41, 87, .06);
    }

    .sjwp-step-card strong {
        display: block;
        margin-bottom: 7px;
        color: var(--sjwp-navy);
        font-size: 16px;
    }

    .sjwp-step-card span {
        font-size: 15px;
        line-height: 1.55;
    }

    .sjwp-faq-cta {
        padding: 48px 0;
        background: #eaf7fc;
        border-top: 1px solid #d7edf6;
    }

    .sjwp-faq-inner {
        display: flex;
        align-items: center;
    }

    .sjwp-faq-inner .sjwp-icon-circle {
        flex: 0 0 58px;
        width: 58px;
        height: 58px;
        margin: 0 22px 0 0;
        font-size: 26px;
    }

    .sjwp-faq-copy {
        flex: 1 1 auto;
    }

    .sjwp-faq-copy .sjwp-eyebrow {
        margin-bottom: 4px;
    }

    .sjwp-faq-copy h2 {
        margin: 0 0 5px;
        color: var(--sjwp-navy);
        font-size: 23px;
        font-weight: 700;
    }

    .sjwp-faq-copy p {
        margin: 0;
        font-size: 16px;
        line-height: 1.6;
    }

    .sjwp-faq-action {
        flex: 0 0 auto;
        margin-left: 28px;
    }

    .sjwp-contact {
        padding: 45px 0;
        color: #fff;
        background: #063875;
        border-top: 3px solid var(--sjwp-cyan);
    }

    .sjwp-contact .sjwp-eyebrow,
    .sjwp-contact h2 {
        color: #fff;
    }

    .sjwp-contact h2 {
        margin: 0 0 18px;
        font-size: 29px;
        font-weight: 700;
    }

    .sjwp-contact-details {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 32px;
    }

    .sjwp-contact-details a,
	 .sjwp-contact-details p,
    .sjwp-contact-details span {
        color: #fff;
        font-size: 15px;
    }

    .sjwp-contact-details i {
        width: 20px;
        margin-right: 8px;
        color: var(--sjwp-cyan);
        text-align: center;
    }

    @media (max-width: 991px) {
        .sjwp-section,
        .sjwp-participate {
            padding: 65px 0;
        }

        .sjwp-facts-panel {
            margin-top: 30px;
            margin-left: 0;
        }

        .sjwp-audience-card,
        .sjwp-audience-card--reverse {
            grid-template-columns: 1fr;
        }

        .sjwp-audience-card--reverse .sjwp-audience-media {
            order: -1;
        }

        .sjwp-path {
            min-height: 0;
            margin-bottom: 30px;
        }

        .sjwp-path + .sjwp-path {
            border-left: 0;
        }
    }

    @media (max-width: 767px) {
        .sjwp-page .sjwp-hero {
            height: auto;
            overflow: hidden;
            background: transparent;
        }

        .sjwp-page .sjwp-hero img {
            width: 100%;
            height: auto;
        }

        .sjwp-section,
        .sjwp-participate {
            padding: 50px 0;
        }

        .sjwp-participate .row {
            margin-right: 0;
            margin-left: 0;
        }

        .sjwp-participate .sjwp-path {
            padding-right: 4px;
            padding-left: 4px;
        }

        .sjwp-heading {
            font-size: 29px;
        }

        .sjwp-facts,
        .sjwp-timeline,
        .sjwp-faq-inner {
            display: block;
        }

        .sjwp-facts-panel {
            padding: 0;
        }

        .sjwp-fact {
            min-height: 0;
        }

        .sjwp-fact-wrap,
        .sjwp-step {
            width: 100%;
        }

        .sjwp-fact-wrap {
            margin-bottom: 14px;
        }

        .sjwp-fact-wrap + .sjwp-fact-wrap {
            border-top: 0;
            border-left: 0;
        }

        .sjwp-timeline::before {
            display: none;
        }

        .sjwp-step {
            margin-bottom: 20px;
        }

        .sjwp-audience-list {
            gap: 22px;
        }

        .sjwp-audience-image {
            height: auto;
            min-height: 0;
        }

        .sjwp-audience-content {
            padding: 28px 24px 30px;
        }

        .sjwp-audience-content h3 {
            font-size: 21px;
        }

        .sjwp-identity-lead {
            font-size: 18px !important;
        }

        .sjwp-identity-closing {
            gap: 15px;
            margin-top: 30px;
        }

        .sjwp-identity-closing-icon {
            flex-basis: 44px;
            width: 44px;
            height: 44px;
            font-size: 18px;
        }

        .sjwp-identity-closing p {
            padding-top: 11px;
            font-size: 18px !important;
        }

        .sjwp-path {
            padding: 0;
        }

        .sjwp-faq-inner .sjwp-icon-circle {
            display: none;
        }

        .sjwp-faq-action {
            margin: 22px 0 0;
        }

        .sjwp-faq-action .sjwp-btn {
            width: 100%;
        }

        .sjwp-contact-details {
            display: block;
        }

        .sjwp-contact-details > * {
            display: block;
            margin-bottom: 12px;
        }
    }

/* ============================================================
   YOUTHHUB — COMPETITION SELECTION PAGE
   ============================================================ */

.youthhub-page {
        --sjwp-navy: #082f78;
        --sjwp-blue: #075ccf;
        --sjwp-cyan: #00b9e8;
        --sjwp-yellow: #ffd323;
        --sjwp-pale: #eef9fd;
        --sjwp-text: #263c61;

        color: var(--sjwp-text);
        background: #fff;
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
    }

    .youthhub-page *,
    .youthhub-page *::before,
    .youthhub-page *::after {
        box-sizing: border-box;
    }

    /* Main section */

    .youthhub-main {
        padding: 92px 0 105px;
    }

    /* Page heading */

    .youthhub-intro {
        max-width: 850px;
        margin: 0 auto 54px;
        text-align: center;
    }

    .youthhub-page .sjwp-eyebrow {
        display: block;
        margin-bottom: 10px;
        color: var(--sjwp-blue);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.09em;
        line-height: 1.4;
        text-transform: uppercase;
    }

    .youthhub-page .sjwp-heading {
        position: relative;
        margin: 0 0 25px;
        padding-bottom: 17px;
        color: var(--sjwp-navy);
        font-size: 44px;
        font-weight: 700;
        line-height: 1.18;
    }

    .youthhub-page .sjwp-heading::after {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 48px;
        height: 4px;
        background: var(--sjwp-yellow);
        content: "";
        transform: translateX(-50%);
    }

    .youthhub-intro p {
        max-width: 760px;
        margin: 0 auto;
        color: #52637a;
        font-size: 18px;
        line-height: 1.75;
    }

    /* Competition grid */

    .youthhub-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 28px;
    }

    /* Competition cards */

    .youthhub-card {
        position: relative;
        display: flex;
        align-items: stretch;
        width: 100%;
        min-height: 500px;
        overflow: hidden;
        color: #fff;
        background:
            linear-gradient(
                180deg,
                #103a88 0%,
                var(--sjwp-navy) 60%,
                #061f50 100%
            );
        border-radius: 18px;
        box-shadow: 0 18px 42px rgba(8, 47, 120, 0.16);
        text-decoration: none !important;
        isolation: isolate;
        transition:
            box-shadow 0.25s ease,
            transform 0.25s ease;
    }

    .youthhub-card::after {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 5px;
        background:
            linear-gradient(
                90deg,
                var(--sjwp-blue),
                var(--sjwp-cyan)
            );
        content: "";
    }

    .youthhub-card--innovators::after {
        background:
            linear-gradient(
                90deg,
                var(--sjwp-cyan),
                var(--sjwp-yellow)
            );
    }

    .youthhub-card:hover,
    .youthhub-card:focus {
        color: #fff;
        box-shadow: 0 24px 54px rgba(8, 47, 120, 0.24);
        outline: none;
        text-decoration: none;
        transform: translateY(-6px);
    }

    .youthhub-card:focus-visible {
        outline: 4px solid rgba(0, 185, 232, 0.4);
        outline-offset: 4px;
    }

    /* Card content
       Flex layout keeps all corresponding elements aligned. */

    .youthhub-card-content {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        min-height: 500px;
        padding: 70px 40px 40px;
    }

    /* Logo area */

    .youthhub-card-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 125px;
        width: 260px;
        height: 125px;
        margin: 0 0 26px;
        padding: 10px 14px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.94);
        border-radius: 10px;
    }

    .youthhub-card-logo img {
        display: block;
        width: 100%;
        max-width: 230px;
        height: 105px;
        object-fit: contain;
    }

    .youthhub-logo-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 105px;
        color: var(--sjwp-navy);
        font-size: 16px;
        font-weight: 800;
        letter-spacing: 0.02em;
        line-height: 1.3;
        text-align: center;
    }

    /* Card title */

    .youthhub-card h2 {
        display: flex;
        align-items: flex-start;
        width: 100%;
        min-height: 76px;
        margin: 0 0 7px;
        color: #fff;
        font-size: 31px;
        font-weight: 700;
        line-height: 1.22;
    }

    .youthhub-card-audience {
        display: block;
        width: 100%;
        min-height: 22px;
        margin: 0 0 18px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.01em;
        line-height: 1.5;
    }

    /* Card description */

    .youthhub-card p {
        flex: 1 1 auto;
        width: 100%;
        max-width: 590px;
        min-height: 82px;
        margin: 0 0 26px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        line-height: 1.65;
    }

    /* Buttons */

    .youthhub-page .sjwp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 230px;
        min-height: 48px;
        margin-top: auto;
        padding: 13px 18px;
        color: var(--sjwp-navy);
        background: #fff;
        border: 2px solid #fff;
        border-radius: 7px;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        transition:
            color 0.2s ease,
            background-color 0.2s ease,
            border-color 0.2s ease;
    }

    .youthhub-page .sjwp-btn i {
        flex: 0 0 auto;
        margin-left: 10px;
    }

    .youthhub-card--stockholm .sjwp-btn {
        background: var(--sjwp-yellow);
        border-color: var(--sjwp-yellow);
    }

    .youthhub-card:hover .sjwp-btn,
    .youthhub-card:focus .sjwp-btn {
        color: var(--sjwp-navy);
        background: var(--sjwp-cyan);
        border-color: var(--sjwp-cyan);
    }

    .youthhub-card--stockholm:hover .sjwp-btn,
    .youthhub-card--stockholm:focus .sjwp-btn {
        background: #ffe061;
        border-color: #ffe061;
    }

    /* Tablet */

    @media (max-width: 991px) {
        .youthhub-main {
            padding: 72px 0 82px;
        }

        .youthhub-grid {
            grid-template-columns: 1fr;
            max-width: 720px;
            margin: 0 auto;
        }

        .youthhub-card,
        .youthhub-card-content {
            min-height: 500px;
        }
    }

    /* Mobile */

    @media (max-width: 767px) {
        .youthhub-main {
            padding: 58px 0 66px;
        }

        .youthhub-intro {
            margin-bottom: 38px;
            text-align: left;
        }

        .youthhub-page .sjwp-heading {
            font-size: 34px;
        }

        .youthhub-page .sjwp-heading::after {
            left: 0;
            transform: none;
        }

        .youthhub-intro p {
            font-size: 16px;
        }

        .youthhub-card {
            min-height: 0;
            border-radius: 14px;
        }

        .youthhub-card-content {
            min-height: 470px;
            padding: 45px 25px 30px;
        }

        .youthhub-card-logo {
            width: 100%;
            max-width: 260px;
            height: 125px;
        }

        .youthhub-card h2 {
            min-height: 0;
            font-size: 26px;
        }

        .youthhub-card-audience {
            min-height: 0;
        }

        .youthhub-card p {
            min-height: 0;
        }

        .youthhub-page .sjwp-btn {
            width: 100%;
            max-width: 230px;
        }
    }

    /* Reduced motion */

    @media (prefers-reduced-motion: reduce) {
        .youthhub-card,
        .youthhub-page .sjwp-btn {
            transition: none;
        }
    }

/* ============================================================
   STOCKHOLM JUNIOR WATER PRIZE — FAQ PAGE
   ============================================================ */

.sjwp-faq-page {
        --sjwp-navy: #082f78;
        --sjwp-blue: #075ccf;
        --sjwp-cyan: #00b9e8;
        --sjwp-yellow: #ffd323;
        --sjwp-pale: #eef9fd;
        --sjwp-text: #263c61;

        color: var(--sjwp-text);
        background: #fff;
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
    }

    .sjwp-faq-page *,
    .sjwp-faq-page *::before,
    .sjwp-faq-page *::after {
        box-sizing: border-box;
    }

    /* Keep the CMS hero responsive. A separate compact FAQ image can be
       introduced later without changing the accordion layout below. */
    .sjwp-faq-page .sjwp-hero {
        width: 100%;
        height: auto;
        overflow: hidden;
        background: var(--sjwp-blue);
    }

    .sjwp-faq-page .sjwp-hero img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* FAQ section */
    .sjwp-faq-section {
        position: relative;
        padding: 78px 0 92px;
        overflow: hidden;
        background:
            radial-gradient(circle at 92% 14%, rgba(0, 185, 232, .08), transparent 26%),
            linear-gradient(180deg, #f8fdff 0%, var(--sjwp-pale) 100%);
    }

    .sjwp-faq-section .container {
        position: relative;
        z-index: 1;
    }

    .sjwp-faq-content {
        max-width: 1120px;
        margin: 0 auto;
    }

    .sjwp-faq-page .sjwp-identity-heading {
        max-width: 900px;
        margin-bottom: 34px;
    }

    .sjwp-faq-page .sjwp-eyebrow {
        display: block;
        margin-bottom: 9px;
        color: var(--sjwp-blue);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .08em;
        line-height: 1.4;
    }

    .sjwp-faq-page .sjwp-heading {
        position: relative;
        margin: 0;
        padding-bottom: 16px;
        color: var(--sjwp-navy);
        font-size: 41px;
        font-weight: 700;
        line-height: 1.2;
    }

    .sjwp-faq-page .sjwp-heading::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 46px;
        height: 4px;
        background: var(--sjwp-yellow);
        content: "";
    }

    /* Reset the theme's flat grey accordion without changing its JS. */
    .sjwp-faq-page .accordion.gray.plus-icon.round {
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
    }

    .sjwp-faq-page .accordion .acd-group {
        position: relative;
        margin: 0 0 16px !important;
        overflow: hidden;
        background: #fff !important;
        border: 1px solid rgba(7, 92, 207, .13) !important;
        border-top: 4px solid transparent !important;
        border-radius: 13px !important;
        box-shadow: 0 8px 24px rgba(8, 47, 120, .07) !important;
        transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .sjwp-faq-page .accordion .acd-group:last-child {
        margin-bottom: 0 !important;
    }

    .sjwp-faq-page .accordion .acd-group:hover {
        border-color: rgba(7, 92, 207, .26) !important;
        box-shadow: 0 12px 30px rgba(8, 47, 120, .11) !important;
    }

    /* Question */
    .sjwp-faq-page .accordion .acd-heading {
        position: relative;
        display: flex !important;
        align-items: center;
        min-height: 74px;
        margin: 0 !important;
        padding: 21px 78px 21px 26px !important;
        color: var(--sjwp-navy) !important;
        background: #fff !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        font-size: 17px !important;
        font-weight: 700 !important;
        line-height: 1.5 !important;
        text-decoration: none !important;
    }

    .sjwp-faq-page .accordion .acd-heading:hover,
    .sjwp-faq-page .accordion .acd-heading:focus {
        color: var(--sjwp-blue) !important;
        text-decoration: none !important;
        outline: none;
    }

    .sjwp-faq-page .accordion .acd-heading:focus-visible {
        outline: 3px solid rgba(0, 185, 232, .35);
        outline-offset: -3px;
    }

    /* Replace the original theme icon. */
    .sjwp-faq-page .accordion.plus-icon .acd-heading::before {
        position: absolute !important;
        top: 50% !important;
        right: 24px !important;
        left: auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px !important;
        height: 36px !important;
        margin: 0 !important;
        color: #fff !important;
        background: var(--sjwp-navy) !important;
        border: 0 !important;
        border-radius: 50% !important;
        box-shadow: 0 5px 13px rgba(8, 47, 120, .18) !important;
        content: "+" !important;
        font-family: Arial, sans-serif !important;
        font-size: 23px !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        transform: translateY(-50%) !important;
    }

    .sjwp-faq-page .accordion.plus-icon .acd-heading::after {
        display: none !important;
        content: none !important;
    }

    /* Support the common active classes used by the existing accordion JS. */
    .sjwp-faq-page .accordion .acd-group.acd-active,
    .sjwp-faq-page .accordion .acd-group.active,
    .sjwp-faq-page .accordion .acd-group:has(.acd-heading.active),
    .sjwp-faq-page .accordion .acd-group:has(.acd-heading[aria-expanded="true"]) {
        border-color: rgba(7, 92, 207, .18) !important;
        border-top: 4px solid rgba(7, 92, 207, .18) !important;
        box-shadow: 0 14px 34px rgba(8, 47, 120, .12) !important;
    }

    .sjwp-faq-page .accordion.plus-icon .acd-group.acd-active .acd-heading::before,
    .sjwp-faq-page .accordion.plus-icon .acd-group.active .acd-heading::before,
    .sjwp-faq-page .accordion.plus-icon .acd-heading.active::before,
    .sjwp-faq-page .accordion.plus-icon .acd-heading[aria-expanded="true"]::before,
    .sjwp-faq-page .accordion.plus-icon .acd-group.sjwp-faq-open .acd-heading::before {
        content: "−" !important;
    }

    .sjwp-faq-page .accordion .acd-group.sjwp-faq-open {
        border-color: rgba(7, 92, 207, .18) !important;
        border-top-color: rgba(7, 92, 207, .18) !important;
        box-shadow: 0 14px 34px rgba(8, 47, 120, .12) !important;
    }

    /* Answer */
    .sjwp-faq-page .accordion .acd-des {
        display: grid !important;
        grid-template-rows: 0fr;
        margin: 0 26px !important;
        padding: 0 !important;
        overflow: hidden;
        color: #43546b !important;
        background: #fff !important;
        border-top: 1px solid transparent !important;
        font-size: 16px !important;
        line-height: 1.75 !important;
        opacity: 0;
        transition:
            grid-template-rows .4s cubic-bezier(.4, 0, .2, 1),
            opacity .25s ease,
            border-color .2s ease;
    }

    .sjwp-faq-page .accordion .acd-des-inner {
        min-height: 0;
        overflow: hidden;
        padding: 0;
    }

    .sjwp-faq-page .accordion .acd-des-content {
        padding: 18px 0 24px;
    }

    .sjwp-faq-page .accordion .acd-group.sjwp-faq-open .acd-des {
        grid-template-rows: 1fr;
        border-top-color: #dce8f4 !important;
        opacity: 1;
    }

    .sjwp-faq-page .accordion .acd-des p {
        margin: 0 0 13px !important;
        color: inherit !important;
        font-size: inherit !important;
        line-height: inherit !important;
    }

    .sjwp-faq-page .accordion .acd-des p:last-child {
        margin-bottom: 0 !important;
    }

    .sjwp-faq-page .accordion .acd-des a {
        color: var(--sjwp-blue);
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    @media (max-width: 767px) {
        .sjwp-faq-section {
            padding: 52px 0 62px;
        }

        .sjwp-faq-page .sjwp-identity-heading {
            margin-bottom: 27px;
        }

        .sjwp-faq-page .sjwp-heading {
            font-size: 30px;
        }

        .sjwp-faq-page .accordion .acd-heading {
            min-height: 68px;
            padding: 18px 62px 18px 19px !important;
            font-size: 15px !important;
        }

        .sjwp-faq-page .accordion.plus-icon .acd-heading::before {
            right: 17px !important;
            width: 32px !important;
            height: 32px !important;
            font-size: 20px !important;
        }

        .sjwp-faq-page .accordion .acd-des {
            margin: 0 19px !important;
            font-size: 15px !important;
        }

        .sjwp-faq-page .accordion .acd-des-content {
            padding: 16px 0 21px;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .sjwp-faq-page .accordion .acd-group {
            transition: none;
        }
    }
	
	.sjwp-video-link {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 650px;
    margin-top: 24px;
    padding: 18px 20px;
    color: var(--sjwp-navy) !important;
    background: var(--sjwp-pale);
    border: 1px solid rgba(7, 92, 207, .15);
    border-radius: 12px;
    text-decoration: none !important;
    transition:
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.sjwp-video-link:hover,
.sjwp-video-link:focus {
    color: var(--sjwp-navy) !important;
    background: #fff;
    border-color: var(--sjwp-cyan);
    box-shadow: 0 10px 24px rgba(8, 47, 120, .1);
    text-decoration: none !important;
}

.sjwp-video-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    padding-left: 3px;
    color: #fff;
    background: var(--sjwp-blue);
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(7, 92, 207, .22);
}

.sjwp-video-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 2px;
}

.sjwp-video-copy small {
    color: var(--sjwp-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
}

.sjwp-video-copy strong {
    color: var(--sjwp-navy);
    font-size: 16px;
    line-height: 1.4;
}

.sjwp-video-copy > span {
    color: #52637a;
    font-size: 13px;
}

.sjwp-video-arrow {
    flex: 0 0 auto;
    margin-left: 8px;
    color: var(--sjwp-blue);
}

@media (max-width: 575px) {
    .sjwp-video-link {
        align-items: flex-start;
        padding: 16px;
    }

    .sjwp-video-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .sjwp-video-arrow {
        display: none;
    }
}
