@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,500;0,600;0,700;1,300;1,500;1,600;1,700&display=swap');

/* ==============================
   1. CUSTOM PROPERTIES
   ============================== */

:root {
    --font-family: "Noto Sans", sans-serif;
    --padding-space: 80px;
    --navy: #2c2a43;
    --grey: #eeeeee;
    --dark-grey: #707070;
    --red: #ff0000;
    --white: #ffffff;
    --black: #000000;
    --contrast-border: #777777;
    --contrast-bg-hover: #0f0e12;
    --z-overlay: 20;
    --z-dropdown: 99;
    --z-cookie: 100;
    --menu-item-height: 62px;
    --menu-hover-bar-width: 4px;
    --filter-to-red: brightness(0%) invert(14%) sepia(91%) saturate(7346%) hue-rotate(359deg) brightness(123%) contrast(125%);
    --filter-to-yellow: brightness(0%) invert(91%) sepia(45%) saturate(2810%) hue-rotate(353deg) brightness(98%) contrast(111%);
    --transition-fast: 0.3s;
    --transition-medium: 0.5s;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --shadow-soft: 0 8px 22px rgb(0 0 0 / 8%);
    --shadow-medium: 0 12px 30px rgb(0 0 0 / 12%);
    --app-background-image: none;
    --app-background-overlay: rgba(255, 255, 255, 0.84);
}

/* ==============================
   2. RESET & BASE
   ============================== */

*:where(:not(html, iframe, canvas, img, svg, video, audio, pre, .editorContent):not(svg *, symbol *, .editorContent *)) {
    all: unset;
    display: revert;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--white);
}

body {
    font-family: var(--font-family);
    max-width: 1720px;
    margin: auto;
    position: relative;
    z-index: 0;
    background-color: var(--white);
}

    body.hasAppBackground {
        background-color: transparent;
    }

    body::before {
        display: none;
        content: "";
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background-image: linear-gradient(var(--app-background-overlay), var(--app-background-overlay)), var(--app-background-image);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        filter: grayscale(100%);
    }

    body.hasAppBackground::before {
        display: block;
    }

    body.hideBody {
        display: none !important;
    }

    body > section,
    body > footer {
        position: relative;
        z-index: 1;
    }

    body > section:first-of-type {
        z-index: var(--z-dropdown);
    }

ol,
ul,
menu {
    list-style: none;
}

img {
    max-width: 100%;
}

::placeholder {
    color: unset;
}

a {
    cursor: pointer;
}

input:-webkit-autofill {
    transition: all 0s 50000s;
}

/* ==============================
   3. ACCESSIBILITY � FOCUS
   ============================== */

:focus-visible {
    outline: 2px dotted var(--red);
}

body.using-mouse :focus-visible {
    outline: none;
}

/* ==============================
   4. UTILITY CLASSES
   ============================== */

.hide {
    display: none !important;
    visibility: hidden !important;
}

.fontRed {
    color: var(--red);
}

.contrastShow {
    display: none;
}

.fullWidth {
    padding-inline: 14px;
}

/* Desktop / tablet / mobile visibility */

.desktopShow {
    display: none;
}

.lineLimit-two {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.lineLimit-three {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

/* ==============================
   5. OVERLAY
   ============================== */

#overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: var(--z-overlay);
    cursor: pointer;
}

/* ==============================
   6. BUTTON WITH ARROW
   ============================== */

.btn-arrow {
    font-size: 0.9em;
    display: block;
}

    .btn-arrow::before {
        content: url("/assets/arrow-list.svg");
        padding-right: 0.625rem;
    }

/* ==============================
   7. HEADER � MOBILE
   ============================== */

header {
    position: relative;
    background-color: var(--white);
    z-index: var(--z-dropdown);
}

    header::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 100vw;
        transform: translateX(-50%);
        background-color: inherit;
        z-index: -1;
        pointer-events: none;
    }

    header .logoRow {
        padding: 1.5rem 1.5rem 1.875rem;
        display: flex;
    }

        header .logoRow .logoWrap {
            display: flex;
            align-items: center;
            margin-right: auto;
        }

            header .logoRow .logoWrap img {
                width: 3.25rem;
                height: 3.5rem;
            }

            header .logoRow .logoWrap .logoText {
                font-family: var(--font-family);
                font-size: 1em;
                line-height: 1.1875em;
                font-weight: 600;
                color: var(--navy);
                padding-left: 0.9375rem;
            }

        header .logoRow .buttonsMobile {
            display: flex;
            align-items: center;
        }

            header .logoRow .buttonsMobile #langWrap {
                cursor: pointer;
            }

                header .logoRow .buttonsMobile #langWrap img {
                    width: 1.25rem;
                    height: 1.25rem;
                }

            header .logoRow .buttonsMobile #hamburgerMenu {
                cursor: pointer;
                margin-left: 1.8125rem;
            }

                header .logoRow .buttonsMobile #hamburgerMenu img {
                    width: 1.5rem;
                    height: 1.5rem;
                }

    /* Header buttons row */

    header .buttonsRow {
        border-top: 0.0625rem solid var(--grey);
        border-bottom: 0.0625rem solid var(--grey);
        display: flex;
        height: 2.625rem;
    }

        header .buttonsRow > *:not(:last-child) {
            border-right: 0.0625rem solid var(--grey);
            align-items: center;
        }

        header .buttonsRow li {
            display: flex;
            justify-content: center;
            align-items: center;
            flex: 1;
        }

            header .buttonsRow li a,
            header .buttonsRow li button {
                cursor: pointer;
                display: flex;
                align-items: center;
            }

            header .buttonsRow li #bipMobile img {
                width: 1.125rem;
                height: 1.3125rem;
            }

    /* Header search � mobile */

    header #searchWrapMobile {
        height: 42px;
    }

        header #searchWrapMobile div {
            display: flex;
            width: 100%;
            position: absolute;
            z-index: var(--z-dropdown);
            background-color: var(--white);
            height: 54px;
            padding: 0 1.5rem;
            border-top: 1px solid var(--grey);
            justify-content: space-between;
            align-items: center;
        }

            header #searchWrapMobile div form {
                display: flex;
                align-items: center;
                flex: 1;
            }

            header #searchWrapMobile div .search {
                width: 17px;
                height: 17px;
                margin-right: 17px;
            }

            header #searchWrapMobile div .close {
                width: 24px;
                height: 24px;
            }

            header #searchWrapMobile div input {
                font-family: var(--font-family);
                font-size: 0.875em;
                line-height: 1.1875em;
                font-weight: 400;
                color: var(--navy);
                width: 100%;
                flex: 1;
            }

                header #searchWrapMobile div input::placeholder {
                    color: var(--dark-grey);
                }

            header #searchWrapMobile div button {
                cursor: pointer;
            }

    /* Header font size change � mobile */

    header #fontSizeChangeWrapMobile {
        height: 42px;
        position: relative;
    }

        header #fontSizeChangeWrapMobile .absolute {
            display: flex;
            height: 48px;
            width: 100%;
            position: relative;
            z-index: var(--z-dropdown);
            background-color: var(--white);
            padding: 0 1.5rem;
            border-top: 1px solid var(--grey);
            align-items: center;
            justify-content: space-between;
        }

            header #fontSizeChangeWrapMobile .absolute .fontChange {
                display: flex;
                align-items: center;
            }

                header #fontSizeChangeWrapMobile .absolute .fontChange span {
                    font-family: var(--font-family);
                    font-size: 0.75em;
                    line-height: 1.0625em;
                    font-weight: 400;
                    color: var(--navy);
                    display: block;
                    margin-right: 26px;
                }

                header #fontSizeChangeWrapMobile .absolute .fontChange .fontButtonsWrap {
                    display: flex;
                    gap: 25px;
                }

                    header #fontSizeChangeWrapMobile .absolute .fontChange .fontButtonsWrap #fontSizeDecreaseMobile {
                        width: 22px;
                        height: 14px;
                    }

                    header #fontSizeChangeWrapMobile .absolute .fontChange .fontButtonsWrap #fontSizeIncreaseMobile {
                        width: 27px;
                        height: 17px;
                    }

                    header #fontSizeChangeWrapMobile .absolute .fontChange .fontButtonsWrap .border {
                        height: 16px;
                        width: 1px;
                        background-color: var(--grey);
                    }

            header #fontSizeChangeWrapMobile .absolute .close {
                width: 24px;
                height: 24px;
            }

            header #fontSizeChangeWrapMobile .absolute button {
                cursor: pointer;
            }

    /* Header mobile menu */

    header #mobileMenu {
        position: absolute;
        width: 100%;
        z-index: var(--z-overlay);
        background-color: var(--white);
        top: 94px;
        left: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: 0.4s all;
    }

    header .resetTransformations {
        visibility: visible !important;
        transform: none !important;
        transition: 0.8s all !important;
    }

    header .menuRight > ul {
        border-left: 0;
        border-right: 0;
    }

    /* Header language */

    header .languagesContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header .languageList {
        position: relative;
    }

        header .languageList.mobile {
            display: flex;
            align-items: center;
            position: relative;
            z-index: calc(var(--z-dropdown) + 2);
        }

        header .languageList.mobile .current > button {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            min-width: 2rem;
            min-height: 2rem;
            padding: 0.25rem;
        }

        header .languageList.mobile .current img {
            margin-top: 7px;
        }

    header .languageSubmenu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        z-index: var(--z-dropdown);
        background: transparent;
        gap: 1rem !important;
        border-radius: 10px;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-fast);
        width: 40px;
        transform: translate(-50%, 0);
        left: 50%;
    }

        header .languageSubmenu li {
            text-align: center;
        }

    header .languageList.desktop .current:hover + .languageSubmenu,
    header .languageList.desktop .languageSubmenu:hover,
    header .languageList.mobile .current:focus-within > .languageSubmenu,
    header .languageList.mobile .current.active > .languageSubmenu {
        background: var(--white);
        max-height: 200px;
        overflow: visible;
        padding-top: 1rem;
    }

    header .desktopMenu {
        display: none;
    }

/* ==============================
   8. SHARED MENU STYLES
      (.menuRight & .nestedMenus)
   ============================== */

.menuRight,
.nestedMenus {
    border-color: var(--grey);
}

    .menuRight > ul,
    .nestedMenus > ul {
        display: flex;
        flex-direction: column;
        border: 1px solid;
        border-color: inherit;
    }

    .menuRight > ul {
        border-top: none;
    }

    .nestedMenus > ul {
        border-bottom: none;
    }

        .menuRight > ul li,
        .nestedMenus > ul li {
            font-family: var(--font-family);
            font-size: 0.9375em;
            line-height: 1.25em;
            font-weight: 500;
            color: inherit;
            border-style: solid;
            border-color: inherit;
            border-width: 0;
        }

    .menuRight > ul li {
        border-top-width: 1px;
    }

    .nestedMenus > ul li {
        border-bottom-width: 1px;
    }

        .menuRight > ul li:not(.multi),
        .nestedMenus > ul li:not(.multi) {
            display: flex;
            align-items: center;
        }

        .menuRight > ul li button,
        .menuRight > ul li a,
        .nestedMenus > ul li button,
        .nestedMenus > ul li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--menu-item-height);
            padding: 0 1.5rem;
            width: 100%;
            cursor: pointer;
            position: relative;
        }

            .menuRight > ul li button .description,
            .menuRight > ul li a .description,
            .nestedMenus > ul li button .description,
            .nestedMenus > ul li a .description {
                display: none;
                font-family: var(--font-family);
                font-size: 0.75em;
                line-height: 1.375em;
                font-weight: 400;
                color: var(--dark-grey);
                padding-top: 3px;
            }

            .menuRight > ul li button:hover,
            .menuRight > ul li a:hover,
            .nestedMenus > ul li button:hover,
            .nestedMenus > ul li a:hover {
                background-color: var(--grey);
                font-weight: 600 !important;
            }

                .menuRight > ul li button:hover .description,
                .menuRight > ul li a:hover .description,
                .nestedMenus > ul li button:hover .description,
                .nestedMenus > ul li a:hover .description {
                    display: block;
                }

                .menuRight > ul li button:hover img,
                .menuRight > ul li a:hover img,
                .nestedMenus > ul li button:hover img,
                .nestedMenus > ul li a:hover img {
                    display: block;
                }

                .menuRight > ul li button:hover::before,
                .menuRight > ul li a:hover::before,
                .nestedMenus > ul li button:hover::before,
                .nestedMenus > ul li a:hover::before {
                    content: "";
                    display: block;
                    position: absolute;
                    left: 0;
                    height: calc(100% + 2px);
                    top: -1px;
                    z-index: var(--z-cookie);
                    width: var(--menu-hover-bar-width);
                    border: var(--menu-hover-bar-width) solid red;
                    background-color: red;
                }

    /* Shared menu � submenu toggle arrow */

    .menuRight > ul .multi,
    .nestedMenus > ul .multi {
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

        .menuRight > ul .multi > button::after,
        .nestedMenus > ul .multi > button::after {
            content: url(/assets/arrow-down-short.svg);
            width: 8px;
            height: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menuRight > ul .multi > ul,
        .nestedMenus > ul .multi > ul {
            display: none;
            flex-direction: column;
            padding-left: 24px;
            border-color: inherit;
        }

        .nestedMenus > ul .clicked > button::after {
            transform: rotateX(180deg) translateY(-4px);
        }

        .nestedMenus > ul .clicked > ul {
            display: flex !important;
        }

        .menuRight > ul .multi > ul {
            animation: treeExpand 2s;
            overflow: hidden;
        }

        .menuRight > ul .multi:focus-within > button::after,
        .menuRight > ul .multi:hover > button::after,
        .nestedMenus > ul .multi:focus-within > button::after,
        .nestedMenus > ul .multi:hover > button::after {
            transform: rotateX(180deg) translateY(-4px);
        }

        .menuRight > ul .multi:focus-within > ul,
        .menuRight > ul .multi:hover > ul,
        .nestedMenus > ul .multi:focus-within > ul,
        .nestedMenus > ul .multi:hover > ul {
            display: flex !important;
        }

        .nestedMenus > ul .clicked > button::after {
            transform: rotateX(180deg) translateY(-4px);
        }

        .nestedMenus > ul .clicked > ul {
            display: flex !important;
        }

    /* Shared menu � single item arrow */

    .menuRight > ul li:not(.multi) > a::after,
    .nestedMenus > ul li:not(.multi) > a::after {
        content: url(/assets/arrow-right-shortcut.svg);
        visibility: hidden;
        width: 8px;
        height: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menuRight > ul li:not(.multi) > a:hover::after,
    .nestedMenus > ul li:not(.multi) > a:hover::after {
        visibility: visible;
    }

    /* Shared menu � images */

    .menuRight > ul li button img,
    .menuRight > ul li a img,
    .nestedMenus > ul li button img,
    .nestedMenus > ul li a img {
        margin-right: 6px;
    }

    .menuRight > ul li button:hover img,
    .nestedMenus > ul li button:hover img {
        filter: var(--filter-to-red);
    }

    .menuRight > ul li a img,
    .nestedMenus > ul li a img {
        width: 15px;
        height: 12px;
        visibility: hidden;
    }

    .menuRight > ul li a:hover img,
    .menuRight > ul li a:focus img,
    .nestedMenus > ul li a:hover img,
    .nestedMenus > ul li a:focus img {
        visibility: visible;
    }

    /* Nested menus � specifics */

    .nestedMenus ul li .backButton {
        justify-content: flex-start;
        padding: 1.3125rem 1.5rem !important;
    }

    .nestedMenus .notMainList a,
    .nestedMenus .notMainList button {
        padding: 1.3125rem 1.5rem 1.3125rem 3.875rem;
    }

/* ==============================
    9. HEADER � DESKTOP (768px+)
    ============================== */

@media only screen and (min-width: 768px) {

    /* Header layout */
    header .logoRow {
        padding: 1.5rem 2rem 1.875rem;
    }

    header #mobileMenu {
        display: none;
    }

    /* Header desktop buttons */
        header .buttonsDesktop ul {
        display: flex;
            gap: 24px;
    }

        header .buttonsDesktop ul .doubleItem {
            display: flex;
            flex-direction: column;
        }

            header .buttonsDesktop ul .doubleItem div {
                display: flex;
                gap: 16px;
                justify-content: center;
                align-items: center;
                height: 30px;
            }

                header .buttonsDesktop ul .doubleItem div button {
                    cursor: pointer;
                }

        header .buttonsDesktop ul .singleItem a,
        header .buttonsDesktop ul .singleItem button {
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        header .buttonsDesktop ul .singleItem img,
        header .buttonsDesktop ul .doubleItem img {
            margin: 0 auto 10px;
            width: 20px;
            height: 20px;
        }

        header .buttonsDesktop ul .singleItem .languageFlag {
            width: 20px;
            height: 20px;
            margin-bottom: 12px;
        }

        header .buttonsDesktop ul span {
            font-family: var(--font-family);
            font-size: 0.75em;
            line-height: 1.0625em;
            font-weight: 400;
            color: var(--navy);
        }

        header .buttonsDesktop > ul > li:not(.bipItem) span {
            color: var(--dark-grey);
            transition: color var(--transition-fast);
        }

            header .buttonsDesktop > ul > li:not(.bipItem):hover span,
            header .buttonsDesktop > ul > li:not(.bipItem):focus-within span {
                color: var(--navy);
            }

    /* Header desktop search */
    header .buttonsDesktop .searchSection {
        display: flex;
        margin-left: 24px;
        height: 48px;
    }

        header .buttonsDesktop .searchSection .searchWrap {
            display: flex;
            border: 1px solid var(--grey);
            border-right: none;
            align-items: center;
            padding: 17px 4px 16px 17px;
        }

            header .buttonsDesktop .searchSection .searchWrap img {
                width: 14px;
                height: 14px;
            }

            header .buttonsDesktop .searchSection .searchWrap input {
                font-family: var(--font-family);
                font-size: 0.875em;
                line-height: 1.1875em;
                font-weight: 400;
                color: var(--navy);
                margin-left: 12px;
            }

                header .buttonsDesktop .searchSection .searchWrap input::placeholder {
                    color: var(--dark-grey);
                }

        header .buttonsDesktop .searchSection .block {
            width: 48px;
            height: 48px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--red);
            cursor: pointer;
        }

    /* Header desktop menu */
    header nav .multi li {
        word-break: break-word;
    }

    header .desktopMenu {
        border-top: 1px solid var(--grey);
        display: block;
    }

        header .desktopMenu > ul {
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
        }

            header .desktopMenu > ul ul {
                display: none;
            }

                header .desktopMenu > ul ul > :not(.multi) {
                    display: flex;
                    align-items: center;
                }

        header .desktopMenu li {
            position: relative;
        }

        header .desktopMenu > ul ul > :not(.multi) > a::after,
        header .desktopMenu > ul ul > :not(.multi) button::after {
            content: url(/assets/arrow-right-shortcut.svg);
            visibility: hidden;
            width: 8px;
            height: 4px;
            margin-right: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 48%;
            right: 7px;
        }

        header .desktopMenu > ul ul > :not(.multi) > a:hover::after,
        header .desktopMenu > ul ul > :not(.multi) button:hover::after {
            visibility: visible;
        }

        header .desktopMenu > ul > li {
            padding: 21px 18px 17px;
            font-family: var(--font-family);
            font-size: 0.9375em;
            line-height: 1.25em;
            font-weight: 600;
            color: var(--navy);
            border-bottom: 4px solid var(--white);
        }

            header .desktopMenu > ul > li:hover {
                border-color: var(--red);
            }

            header .desktopMenu > ul > li:not(.multi) > a {
                display: flex;
                align-items: center;
                margin: -21px -18px -17px;
                padding: 21px 18px 17px;
            }

        header .desktopMenu > ul > .multi > ul {
            position: absolute;
            display: none;
            flex-direction: column;
            left: 0;
            bottom: 0;
            transform: translateY(100%);
        }

        header .desktopMenu > ul > .multi::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 100%;
            height: 10px;
        }

            header .desktopMenu > ul > .multi > ul .multi::after {
                margin-right: 14px;
            }

            header .desktopMenu > ul > .multi > ul li {
                background-color: var(--white);
                border-top: 1px solid var(--grey);
                width: 168px;
                height: auto;
                padding: 0.5rem 0;
                position: relative;
                justify-content: space-between;
            }

                header .desktopMenu > ul > .multi > ul li:first-child {
                    border-top: none;
                }

                header .desktopMenu > ul > .multi > ul li > button,
                header .desktopMenu > ul > .multi > ul li a {
                    height: 100%;
                    padding: 0 22px 0 12px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    width: 100%;
                }

                header .desktopMenu > ul > .multi > ul li .right {
                    width: 7px;
                    height: 12px;
                }

                header .desktopMenu > ul > .multi > ul li > ul {
                    position: absolute;
                    display: none;
                    flex-direction: column;
                    right: -50%;
                    bottom: 100%;
                    transform: translate(50%, 100%);
                    background-color: #f5f5f5;
                }

                header .desktopMenu > ul > .multi > ul li:hover {
                    background-color: #f5f5f5;
                }

                    header .desktopMenu > ul > .multi > ul li:hover > ul {
                        display: flex !important;
                    }

                    header .desktopMenu > ul > .multi > ul li:hover::before {
                        content: "";
                        width: 4px;
                        position: absolute;
                        left: 0;
                        bottom: 0;
                        height: calc(100% + 1px);
                        background-color: var(--red);
                    }

            header .desktopMenu > ul > .multi > ul > li:first-child::before {
                height: calc(100% + 4px);
            }

        header .desktopMenu > ul .multi {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            header .desktopMenu > ul .multi::after {
                content: url(/assets/arrow-down-short.svg);
                width: 8px;
                height: 4px;
                margin-left: 9px;
                margin-bottom: 5px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            header .desktopMenu > ul .multi:hover::after {
                transform: rotateX(180deg) translateY(-4px);
            }

            header .desktopMenu > ul .multi:hover > ul {
                display: flex !important;
                animation: treeExpand 1s ease-in;
            }

            header .desktopMenu > ul .multi:focus-within > ul {
                display: flex !important;
                animation: treeExpand 1s ease-in;
            }

                header .desktopMenu > ul .multi:hover > ul li {
                    max-height: inherit;
                }

    header a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

        header a:hover .hoverArrow,
        header a:focus-within .hoverArrow {
            display: block;
        }

    header .hoverArrow {
        display: none;
        width: 15px;
        height: 12px;
    }

    /* Shared menu � desktop overrides */
    .menuRight > ul li button:hover::before,
    .menuRight > ul li a:hover::before,
    .nestedMenus > ul li button:hover::before,
    .nestedMenus > ul li a:hover::before {
        border-width: 2px;
    }

    /* Menu right � desktop click behavior */
    .menuRight > ul .multi:focus-within > button::after,
    .menuRight > ul .multi:hover > button::after {
        transform: none;
    }

    .menuRight > ul .multi:focus-within > ul,
    .menuRight > ul .multi:hover > ul {
        display: none;
    }

    .menuRight > ul .clicked > button::after {
        transform: rotateX(180deg) translateY(-4px) !important;
    }

    .menuRight > ul .clicked > ul {
        display: flex !important;
    }

    .multi ul {
        z-index: var(--z-dropdown);
    }
}

@media only screen and (max-width: 767px) {
    .nestedMenus > ul .multi:focus-within > button::after,
    .nestedMenus > ul .multi:hover > button::after {
        transform: none;
    }

    .nestedMenus > ul .multi:focus-within > ul,
    .nestedMenus > ul .multi:hover > ul {
        display: none !important;
    }

    .nestedMenus > ul .clicked:focus-within > button::after,
    .nestedMenus > ul .clicked:hover > button::after,
    .nestedMenus > ul .clicked > button::after {
        transform: rotateX(180deg) translateY(-4px);
    }

    .nestedMenus > ul .clicked:focus-within > ul,
    .nestedMenus > ul .clicked:hover > ul,
    .nestedMenus > ul .clicked > ul {
        display: flex !important;
    }
}

@media only screen and (min-width: 1440px) {
    header .logoRow {
        padding: 1.5rem var(--padding-space) 1.875rem;
    }

    header .buttonsDesktop ul {
        gap: 40px;
    }

    header .buttonsDesktop .searchSection {
        margin-left: 40px;
    }

    header .desktopMenu > ul {
        padding: 0 var(--padding-space);
    }
}

/* ==============================
   10. FULL WIDTH
   ============================== */

@media only screen and (min-width: 1440px) {
    .fullWidth {
        padding-inline: var(--padding-space);
    }
}

/* ==============================
   11. VARIOUS CONTAINERS
   ============================== */

.topBannerContainer {
    margin: 1.5rem 0 0.75rem;
}

.menuImageBannerSection {
    margin-top: 1rem;
}

.menuImageBanner {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    background-color: var(--grey);
    height: 200px;
}

.menuImageBanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menuImageBanner--cropped {
    position: relative;
    height: auto;
    aspect-ratio: var(--banner-aspect-ratio);
}

.menuImageBanner--cropped img {
    position: absolute;
    max-width: none;
    width: var(--banner-image-width);
    height: auto;
    left: var(--banner-image-left);
    top: var(--banner-image-top);
}

.bottomSectionContainer {
    padding: 1rem;
    max-width: 1700px;
    margin: auto;
}

/* ==============================
   12. FOOTER
   ============================== */

footer {
    position: relative;
    border-top: 1px solid var(--grey);
    border-bottom: 0.3125rem var(--grey) solid;
}

    footer .bottomLinks {
        padding: 1.125rem 1.5rem;
    }

    footer .heading,
    footer .contentWrap h3 {
        font-family: var(--font-family);
        font-size: 1.125em;
        line-height: 1.5em;
        font-weight: 600;
        color: var(--navy);
        padding: 0;
        margin-bottom: 1.5rem;
    }

    footer .bottomLinksHeader {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.625rem;
        margin-bottom: 1.5rem;
    }

    footer .bottomLinksHeader h3 {
        margin-top: 0;
        margin-bottom: 0;
    }

    footer .bottomLinksHeaderImage {
        width: 64px;
        height: 64px;
        object-fit: contain;
        flex: 0 0 64px;
    }

    footer .contentWrap p {
        margin: 0.5em 0;
        display: block;
    }

    footer .contentWrap span {
        font-size: 15px;
    }

    footer .bottomLinks ul {
        padding-top: 4px;
    }

        footer .bottomLinks ul li a {
            display: block;
            padding-bottom: 1.3125rem;
            cursor: pointer;
            font-family: var(--font-family);
            font-size: 0.9375em;
            line-height: 1.25em;
            font-weight: 600;
            color: var(--navy);
        }

            footer .bottomLinks ul li a::before {
                content: url("/assets/arrow-list.svg");
                padding-right: 0.625rem;
            }

        footer .bottomLinks ul li button {
            display: none;
        }

        footer .bottomLinks ul li ul {
            display: none;
        }

    footer .contentWrap {
        display: flex;
        flex-direction: column;
    }

    footer .bottomSections {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        footer .bottomSections > article {
            width: min(100%, 36rem);
            padding: 1.125rem 1.5rem;
            text-align: center;
        }

    footer .bottomButtons {
        border-bottom: 0.0625rem solid var(--grey);
    }

        footer .bottomButtons .content {
            display: flex;
            padding: 1.25rem 2.5rem;
            justify-content: center;
            align-items: center;
            gap: 66px;
        }

            footer .bottomButtons .content .shortBorder {
                height: 1rem;
                width: 0.125rem;
                background-color: var(--grey);
            }

            footer .bottomButtons .content a {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

                footer .bottomButtons .content a span {
                    padding-top: 0.625rem;
                    font-family: var(--font-family);
                    font-size: 0.75em;
                    line-height: 1.0625em;
                    font-weight: 400;
                    color: var(--navy);
                }

    footer .bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 0.0625rem var(--grey) solid;
    }

        footer .bottom .perfectclueWrap {
            margin: 0 auto;
            cursor: pointer;
        }

        footer .bottom p {
            font-family: var(--font-family);
            font-size: 0.75em;
            line-height: 1.25em;
            font-weight: 400;
            margin: 0 auto;
            text-align: center;
            color: var(--dark-grey);
        }

            footer .bottom p:first-child {
                padding-bottom: 3px;
            }

        footer .bottom a {
            text-decoration: underline;
        }

        @media only screen and (max-width: 767px) {
            footer .bottomLinksHeader {
                justify-content: center;
                width: 100%;
            }

            footer .bottomLinksHeader h3 {
                text-align: center;
            }
        }

@media only screen and (min-width: 1024px) {
    footer .contentWrap {
        padding-left: var(--padding-space);
        padding-right: var(--padding-space);
        padding-bottom: 18px;
        gap: 2rem;
    }

        footer .bottomLinks {
            border: none;
            padding: 0;
        }

        footer .bottomSections {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 2rem 2.5rem;
        }

            footer .bottomSections > article {
                min-width: 0;
                flex: 1 1 18rem;
                width: auto;
                padding: 0;
                text-align: start;
            }

        footer .contentWrap > article,
        footer .contentWrap > div {
            min-width: 0;
        }

        footer .bottomButtons {
            border: none;
            padding-top: 0.5rem;
        }

            footer .bottomButtons .content {
                padding: 0;
                justify-content: flex-end;
                gap: 24px;
            }
}

@media only screen and (min-width: 1440px) {
    footer {
        display: flex;
        flex-direction: column;
        padding-top: 32px;
        margin-top: 16px;
        border-top: 1px solid var(--grey);
        border-bottom: 0.375rem var(--grey) solid;
    }

        footer .contentWrap {
            gap: 2.5rem;
        }

        footer .bottomSections {
            gap: 2.5rem 3rem;
        }

        footer .bottomButtons {
            padding-top: 0.75rem;
        }

            footer .bottomButtons .content {
                gap: 24px;
            }

        footer .bottom {
            padding-left: var(--padding-space);
            border-top: 1px solid var(--grey);
            width: 100%;
            flex-direction: row-reverse;
            padding-right: var(--padding-space);
            justify-content: space-between;
            border-bottom: 0;
            padding-top: 26px;
        }

            footer .bottom p {
                margin: 0;
                text-align: start;
            }

            footer .bottom .perfectclueWrap {
                margin: 0;
            }
}

/* ==============================
   13. PAGES, GROUPS & ARTICLES
   ============================== */

.singleGroupPages {
    border: 0 solid var(--grey);
    border-width: 0 1px 1px 0;
    padding: 1.2rem 0;
}

    .singleGroupPages .count {
        color: var(--red);
        font-weight: bold;
        font-size: 18px;
        margin-right: 0.3em;
    }

    .singleGroupPages ul {
        list-style: inside;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

        .singleGroupPages ul li {
            flex-basis: 33%;
            margin-bottom: 0.5em;
        }

    .singleGroupPages:last-of-type {
        margin-bottom: 1.4rem;
    }

.groupListPage .singleGroupPages:last-of-type {
    margin-bottom: 0;
}

.singleArticle .singleArticleSummary {
    color: var(--dark-grey);
    font-size: 0.9em;
    line-height: 1.45;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.singleArticle .singleArticleImage img {
    object-fit: contain;
    width: 100%;
    margin: 1.5rem 0;
}

.singleArticle > header {
    position: static;
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: auto;
}

    .singleArticle > header::before {
        content: none;
        display: none;
    }

    .singleArticle > header::after {
        content: none;
        display: none;
    }

/* ==============================
   14. EDITOR CONTENT (Quill)
   ============================== */

.editorContent {
    margin: 0.4em 0;
    line-height: 1.5;
    word-break: break-word;
}

    .editorContent p,
    .editorContent p.ql-align-justify,
    .editorContent p.pl-align-justify {
        margin: 0;
        padding: 0;
    }

    .editorContent h1 {
        font-size: 1.25em;
    }

    .editorContent h2 {
        font-size: 1.15em;
    }

    .editorContent h3 {
        font-size: 1.1em;
    }

    .editorContent img {
        margin: 1rem auto;
    }

    .editorContent table,
    .editorContent th,
    .editorContent td {
        border: 1px solid var(--black);
        border-collapse: collapse;
        padding: 5px;
    }

    .editorContent .ql-align-right {
        text-align: right;
    }

    .editorContent .ql-align-center {
        text-align: center;
    }

    .editorContent .ql-align-justify {
        text-align: justify;
    }

    .editorContent .ql-align-left {
        text-align: left;
    }

    .editorContent table * {
        word-break: initial;
    }

    .editorContent table,
    .editorContent col {
        width: auto !important;
    }

    .editorContent ol li[data-list="ordered"] {
        list-style: decimal;
    }

    .editorContent ol li[data-list="bullet"] {
        list-style: disc;
    }

/* ==============================
   15. FILES CONTAINER
   ============================== */

.filesContainer {
    color: var(--dark-grey);
    font-size: 14px;
    margin-top: 2rem;
}

    .filesContainer ul {
        list-style: none;
        margin: 0.7rem 0 2rem;
    }

    .filesContainer .fileList li {
        display: flex;
        align-items: center;
        padding-left: 20px;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

        .filesContainer .fileList li::before {
            content: "";
            display: inline-block;
            margin-left: -20px;
            width: 20px;
            height: 1em;
            background-image: url(/assets/attachment.svg);
            background-repeat: no-repeat;
            background-size: 15px;
            background-position: center;
            margin-right: 5px;
        }

    .filesContainer .imageList {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

        .filesContainer .imageList img {
            max-width: 100px;
            max-height: 100px;
            object-fit: contain;
            margin: auto;
            transition: var(--transition-fast);
        }

            .filesContainer .imageList img:hover {
                opacity: 0.9;
                transform: scale(1.02);
            }

    .filesContainer .videoList {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

        .filesContainer .videoList video {
            width: 100%;
            height: auto;
            max-height: 200px;
        }

/* ==============================
   16. TAG LIST
   ============================== */

.tagList li {
    margin: 0.7em 0;
}

    .tagList li .title {
        margin-bottom: 0;
    }

    .tagList li .readmore {
        color: var(--dark-grey);
        font-size: 0.8em;
    }

    .tagList li .introduction {
        margin-top: 0;
        font-size: 12px;
        margin-bottom: 3px;
    }

        .tagList li .introduction p {
            font-size: 12px !important;
            margin: 0 !important;
        }

/* ==============================
   17. PAGE CONTAINER & LAYOUT
   ============================== */

.pageContainer {
    display: flex;
    gap: 3rem;
    flex-direction: column;
    padding-top: 0.5rem;
}

    .pageContainer main {
        flex: 2;
        display: block;
    }

    .pageContainer aside {
        flex: 1;
    }

    .pageContainer .contentMain.home {
        margin-top: 1.6rem;
    }

    .pageContainer .ql-editor {
        white-space: normal;
        padding-right: 3%;
    }

        .pageContainer .ql-editor > div {
            margin-bottom: 1.5rem;
        }

@media only screen and (min-width: 1024px) {
    ul.bannersList {
        flex-direction: row;
    }

    .singleGroupPages ul {
        flex-direction: row;
        padding-left: 2rem;
    }

    .pageContainer {
        flex-direction: row;
    }

    .mainContentSection > div {
        width: 100% !important;
    }
}

/* ==============================
   18. SIDEBAR
   ============================== */

.sidebarMain {
    margin: 0 auto;
    flex: 1;
    width: 100%;
}

    .sidebarMain .pinnedArticles {
        max-width: 100%;
        margin-top: 1.5rem;
    }

        .sidebarMain .pinnedArticles li:first-child a {
            padding-top: 0;
        }

    .sidebarMain .bannersBlock ul {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .sidebarMain .bannersBlock .blockLink {
        width: auto;
        display: inline-block;
        height: auto;
    }

        .sidebarMain .bannersBlock .blockLink img {
            object-fit: contain;
            width: auto;
            height: auto;
            max-height: 240px;
            max-width: 100%;
        }

    .sidebarMain ul.articleList img {
        height: 80px;
    }

@media only screen and (min-width: 1024px) {
    .sidebarMain {
        max-width: 344px;
    }
}

@media only screen and (min-width: 1440px) {
    .sidebarMain {
        max-width: 384px;
    }
}

/* ==============================
   19. RESPONSIVE SPACING
   ============================== */

@media only screen and (min-width: 1660px) {
    .pageContainer {
        gap: 4.5rem;
    }

    :root {
        --padding-space: 120px;
    }
}

@media only screen and (min-width: 1860px) {
    :root {
        --padding-space: 160px;
    }
}

/* ==============================
   20. RESPONSIVE VISIBILITY
   ============================== */

@media only screen and (min-width: 768px) {
    .desktopShow {
        display: flex !important;
    }

    .desktopHide {
        display: none !important;
    }
}

@media only screen and (min-width: 820px) {
    .tabletHide {
        display: none !important;
    }
}

@media only screen and (max-width: 1023px) {
    .mobileHide {
        display: none !important;
    }
}

/* ==============================
   21. ARTICLES & PAGES LIST
   ============================== */

ul.articleList,
ul.pageList {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.home ul.articleList {
    margin-bottom: 0;
}

ul.articleList a {
    padding: 24px 0;
    display: flex;
    border-bottom: 1px solid var(--grey);
    gap: 1.5rem;
}

ul.articleList li:last-child a {
    border-bottom: 0;
}

ul.articleList .imgCol {
    width: 25%;
    min-width: 25%;
    display: flex;
    align-items: center;
}

ul.articleList .textCol {
    min-width: 0;
    padding-right: 5%;
}

ul.articleList .textCol,
ul.articleList .title,
ul.articleList .introduction,
ul.pageList .title,
ul.pageList .introduction {
    overflow-wrap: anywhere;
    word-break: break-word;
}

ul.articleList img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-height: 60px;
    transition: var(--transition-fast);
}

ul.articleList li:hover img {
    transform: scale(1.0125);
}

ul.articleList .title,
ul.pageList .title {
    font-size: 0.9em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

ul.articleList .introduction,
ul.pageList .introduction {
    font-size: 0.8em;
    color: var(--navy);
    margin-bottom: 1em;
}

ul.articleList .date {
    font-size: 0.8em;
    color: var(--dark-grey);
}

.articlesExposed-container {
    display: none;
}

ul.pageList li {
    padding: 24px 0;
    border-bottom: 1px solid var(--grey);
}

    ul.pageList li:first-child {
        padding-top: 10px;
    }

    ul.pageList li:last-child {
        border-bottom: 0;
    }

@media (min-width: 580px) {
    ul.articleList img {
        max-height: 150px;
    }

    ul.articleList .title,
    ul.pageList .title {
        font-size: 1.05em;
    }
}

@media (max-width: 767px) {
    .contentMain,
    .pageContainer main {
        min-width: 0;
    }

    .articleTopBanner .introduction,
    .articleTopBanner .date,
    ul.articleList .introduction,
    ul.articleList .date,
    .pinnedArticles .articlesList a .articleItemText p,
    .pinnedArticles .articlesList a .articleItemText .date {
        display: none;
    }

    .articleTopBanner .heading,
    ul.articleList .title,
    .pinnedArticles .articlesList a .articleItemText h4 {
        margin-bottom: 0;
    }

    .articleIndexPage ul.articleList .date {
        display: block;
        margin-top: 0.5rem;
    }

    .articleTagPage ul.articleList .date {
        display: block;
        margin-top: 0.5rem;
    }

    .home ul.articleList .date {
        display: block;
        margin-top: 0.5rem;
    }

    .searchPageSection ul.articleList .date {
        display: block;
        margin-top: 0.5rem;
    }

    .articleTopBanner .heading.lineLimit-two,
    .articleTopBanner .heading.lineLimit-three,
    ul.articleList .title.lineLimit-two,
    ul.articleList .title.lineLimit-three,
    .pinnedArticles .articlesList a .articleItemText h4.lineLimit-two,
    .pinnedArticles .articlesList a .articleItemText h4.lineLimit-three {
        overflow: visible;
        text-overflow: clip;
        display: block;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    ul.articleList a {
        min-width: 0;
        align-items: flex-start;
    }

    body:not(.contrast) ul.articleList a,
    body.contrast ul.articleList a {
        padding: 0 !important;
    }

    ul.articleList .imgCol {
        width: 30%;
        min-width: 30%;
    }

    ul.articleList img {
        max-height: 120px;
        min-height: 96px;
        object-fit: cover;
    }

    .editorContent,
    .editorContent * {
        max-width: 100%;
    }

    .editorContent table {
        display: block;
        overflow-x: auto;
        width: 100% !important;
    }
}

@media (min-width: 1440px) {
    .articlesExposed-container {
        display: flex;
        justify-content: space-between;
        padding-bottom: 1.8rem;
        gap: 1.5rem;
    }

        .articlesExposed-container .col {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .articlesExposed-container article > a {
            position: relative;
            height: 100%;
            width: 100%;
            overflow: hidden;
        }

        .articlesExposed-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .articlesExposed-container .date {
            font-size: 0.8em;
            color: var(--dark-grey);
        }

        .articlesExposed-container .vertical article {
            display: flex;
            flex-direction: column;
            height: 100%;
            width: 100%;
            max-width: 600px;
            min-width: 380px;
        }

        .articlesExposed-container .textWrap {
            position: absolute;
            width: 90%;
            height: 70px;
            left: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            background-color: var(--white);
            padding: 10px 0 14px 28px;
            box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.22);
        }

        .articlesExposed-container .vertical .textWrap {
            width: 345px;
            height: auto;
            box-shadow: 0 0 20px rgb(0 0 0 / 16%);
            position: absolute;
            left: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            background-color: var(--white);
            padding: 1.2rem 1.5rem 0.8rem;
            align-items: flex-start;
        }

        .articlesExposed-container .title {
            font-size: 1.1em;
            margin-bottom: 0.3em;
            line-height: 1.1em;
        }

        .articlesExposed-container .vertical .introduction {
            font-size: 0.8em;
            margin: 0.5em 0;
            max-width: 100%;
            border-top: 1px solid var(--grey);
            padding-top: 5px;
        }

        .articlesExposed-container .horizontal article {
            width: 384px;
            height: 185px;
            position: relative;
            overflow: hidden;
        }

        .articlesExposed-container .horizontal .textWrap {
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 7px;
            padding-right: 10px;
        }

        .articlesExposed-container .horizontal .introduction {
            font-size: 0.8em;
            border-top: 1px solid var(--grey);
            padding-top: 5px;
        }

        .articlesExposed-container .horizontal img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .contentMain.home ul.articleList li:nth-of-type(-n+4) {
        display: none;
    }
}

/* ==============================
   22. ZOOM ON HOVER
   ============================== */

.zoomOnHover img,
.backgroundZoomOnHover {
    transition: var(--transition-medium) all ease;
}

    .zoomOnHover img:hover,
    .zoomOnHover a:hover img {
        transform: scale(1.05);
    }

    .backgroundZoomOnHover:hover {
        transform: scale(1.01);
    }

/* ==============================
   23. PINNED ARTICLES
   ============================== */

.pinnedArticles {
    max-width: 384px;
}

    .pinnedArticles .articlesList {
        border-bottom: 1px solid var(--grey);
        border-right: 1px solid var(--grey);
        border-left: 1px solid var(--grey);
    }

        .pinnedArticles .articlesList a {
            display: flex;
            gap: 0.5rem;
            padding: 0.8125rem 1.5rem;
            border-top: 0.0625rem solid var(--grey);
        }

            .pinnedArticles .articlesList a .imageWrap {
                width: 4.375rem;
                height: 4.375rem;
                min-width: 4.375rem;
            }

                .pinnedArticles .articlesList a .imageWrap img {
                    min-width: 100%;
                    min-height: 100%;
                    max-height: 100%;
                    width: auto;
                }

            .pinnedArticles .articlesList a .articleItemText {
                padding-left: 12px;
            }

                .pinnedArticles .articlesList a .articleItemText h4 {
                    font-family: var(--font-family);
                    font-size: 0.875em;
                    line-height: 1.125em;
                    font-weight: 600;
                    color: var(--navy);
                    margin-bottom: 0.4375rem;
                }

                .pinnedArticles .articlesList a .articleItemText p {
                    font-family: var(--font-family);
                    font-size: 0.8125em;
                    font-weight: 400;
                    color: var(--navy);
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    line-clamp: 2;
                    line-height: 20px;
                    max-height: calc(20px * 2);
                }

                .pinnedArticles .articlesList a .articleItemText .date {
                    display: block;
                    font-family: var(--font-family);
                    font-size: 0.8125em;
                    line-height: 1.5em;
                    font-weight: 400;
                    color: var(--dark-grey);
                    margin-top: 0.25rem;
                }

    .pinnedArticles .buttonList {
        padding-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

/* ==============================
   24. ARTICLE TOP BANNER
   ============================== */

.articleTopBanner {
    min-height: 300px;
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

    .articleTopBanner .content {
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: var(--white);
        padding: 1.5rem;
        max-width: 75%;
        min-width: 33%;
        min-height: 120px;
    }

    .articleTopBanner img {
        width: 100%;
        max-height: 450px;
        object-fit: cover;
        object-position: center;
        transition: var(--transition-fast);
    }

    .articleTopBanner:hover img {
        transform: scale(1.031);
    }

    .articleTopBanner .heading {
        border-bottom: 1px solid var(--grey);
        padding-bottom: 0.7em;
        font-size: 1.15em;
        margin: 0 0 0.75rem;
    }

    .articleTopBanner .shortText {
        margin-bottom: 0.5rem;
        color: var(--navy);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        font-size: 0.8em;
    }

    .articleTopBanner .introduction {
        font-size: 0.8em;
        margin: 0.5em 0;
    }

    .articleTopBanner .date {
        color: var(--dark-grey);
        font-size: 0.8em;
    }

@media only screen and (min-width: 1024px) {
    .articleTopBanner {
        min-height: 400px;
    }

        .articleTopBanner .content {
            max-width: 50%;
        }

        .articleTopBanner .shortText {
            font-size: 1rem;
        }
}

/* ==============================
   25. COOKIE BAR
   ============================== */

#cookieBar {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 42px;
    align-items: center;
    background-color: var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
    z-index: var(--z-cookie);
}

    #cookieBar p {
        font-family: var(--font-family);
        font-size: 0.8125em;
        line-height: 1.5em;
        font-weight: 500;
        color: var(--navy);
        text-align: center;
    }

    #cookieBar a {
        text-decoration: underline;
    }

    #cookieBar button {
        padding-top: 16px;
        font-family: var(--font-family);
        font-size: 0.8125em;
        line-height: 1.125em;
        font-weight: 600;
        color: red;
        cursor: pointer;
    }

@media only screen and (min-width: 1440px) {
    #cookieBar {
        flex-direction: row;
        padding: 23px var(--padding-space);
        justify-content: space-between;
    }

        #cookieBar p {
            font-size: 0.875em;
        }

        #cookieBar button {
            padding: 0;
            font-size: 0.875em;
        }
}

/* ==============================
   26. PAGE TITLE & HEADINGS
   ============================== */

.pageTitle,
.heading {
    font-size: 22px;
    color: var(--navy);
    font-weight: 600;
    padding: 0;
    margin: 0.8em 0;
    line-height: 1.2em;
}

.rowHeading {
    margin: 1.25em 0 0.4em;
}

.singleArticle .pageTitle {
    line-height: 1.2em;
}

.pageListTitle,
.tagList .readmore {
    color: var(--navy);
    font-size: 1.1em;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
}

    .pageListTitle::after,
    .tagList .readmore::after {
        content: "";
        display: inline-block;
        background-image: url(/assets/arrow-double.svg);
        background-repeat: no-repeat;
        background-size: 0.6em;
        background-position: center;
        width: 1em;
        height: 1em;
        margin-left: 0.2em;
        transition: var(--transition-fast);
    }

    .pageListTitle:hover::after,
    .tagList .readmore:hover::after {
        margin-left: 0.4em;
    }

.singleGroupPages .pageListTitle {
    display: flex;
    align-items: center;
    gap: 0.35em;
}

    .singleGroupPages .pageListTitle a {
        color: inherit;
        text-decoration: underline;
        text-decoration-color: transparent;
        text-underline-offset: 2px;
        transition: color var(--transition-fast), text-decoration-color var(--transition-fast), transform var(--transition-fast);
    }

    .singleGroupPages .pageListTitle a:hover,
    .singleGroupPages .pageListTitle a:focus-visible {
        color: var(--red);
        text-decoration-color: var(--red);
        transform: translateX(1px);
    }

    .singleGroupPages .pageListTitle::before {
        content: "•";
        color: var(--navy);
        font-size: 0.95em;
        line-height: 1;
    }

    .singleGroupPages .pageListTitle::after {
        display: none;
    }

@media only screen and (min-width: 1440px) {
    .pageTitle,
    .heading {
        font-size: 1.65em;
    }
}

/* ==============================
   27. SITEMAP
   ============================== */

.contentSitemap {
    margin-bottom: 0.5rem;
    line-height: 1.3em;
}

    .contentSitemap ul {
        padding-left: 5px;
        list-style: square;
        margin-left: 15px;
    }

        .contentSitemap ul > li > ul {
            padding-left: 20px;
        }

            .contentSitemap ul > li > ul > li > ul {
                padding-left: 35px;
            }

    .contentSitemap li b {
        font-weight: bold;
    }

/* ==============================
   28. NOTIFICATION
   ============================== */

.notification {
    font-weight: bold;
    margin: 20px 0;
    border: 2px solid var(--black);
    padding: 10px;
}

    .notification.success {
        color: green;
        border-color: green;
    }

    .notification.error {
        color: red;
        border-color: red;
    }

/* ==============================
   29. SHOW MORE
   ============================== */

.showMore {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    padding-left: var(--padding-space);
}

@media only screen and (max-width: 767px) {
    .showMore {
        padding-left: 0;
    }
}

    .showMore > * {
        font-size: 0.875em;
        line-height: 1.1875em;
        font-weight: 700;
        color: red;
    }

/* ==============================
   30. ARTICLES (NEWS) & PAGINATION
   ============================== */

.news ul.list img,
.articlesList img {
    object-fit: cover;
}

.articlesList article {
    display: block;
    margin-bottom: 1rem;
}

.changePage {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
    width: 100%;
    margin-bottom: 24px;
    padding: 20px 0 8px;
    border-top: 1px solid var(--grey);
}

.paginationSummary {
    font-size: 0.9em;
    line-height: 1.35em;
    font-weight: 600;
    color: var(--dark-grey);
}

.paginationControls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.paginationLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.paginationLink,
.paginationJump button {
    min-height: 44px;
    border-radius: 999px;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.paginationLink:hover,
.paginationLink:focus-visible,
.paginationJump button:hover,
.paginationJump button:focus-visible {
    transform: translateY(-1px);
}

.paginationLink {
    min-width: 44px;
    padding: 0 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grey);
    background: var(--white);
    color: var(--navy);
    font-size: 0.92em;
    line-height: 1;
    font-weight: 700;
}

.paginationLink.isCurrent {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.paginationLink:hover,
.paginationLink:focus-visible {
    border-color: var(--navy);
    background: #f6f8fb;
}

.paginationDots {
    color: var(--dark-grey);
    font-size: 0.95em;
    line-height: 1;
    padding: 0 0.1rem;
}

.paginationJump {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-left: auto;
}

.paginationJump label {
    font-size: 0.9em;
    line-height: 1.35em;
    font-weight: 600;
    color: var(--navy);
}

.paginationJumpFields {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.paginationJump input {
    width: 88px;
    min-width: 88px;
    height: 44px;
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
    background: var(--white);
    padding: 0 0.9rem;
    font-size: 0.95em;
    line-height: 1;
    color: var(--navy);
}

.paginationJump button {
    padding: 0 1rem;
    border: 1px solid var(--red);
    background: var(--red);
    color: var(--white);
    font-size: 0.9em;
    line-height: 1;
    font-weight: 700;
}

.paginationArrow:hover,
.paginationArrow:focus-visible,
.paginationLink:hover,
.paginationLink:focus-visible {
    border-color: var(--navy);
}

.paginationJump input:focus-visible,
.paginationJump button:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

@media only screen and (min-width: 1440px) {
    .changePage {
        border-bottom: none;
        padding: 1.2rem 0;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .changePage {
        justify-content: center;
        padding: 16px 0 8px;
    }

    .paginationSummary,
    .paginationControls,
    .paginationJump {
        width: 100%;
    }

    .paginationSummary {
        text-align: center;
    }

    .paginationControls {
        gap: 0.5rem;
    }

    .paginationLinks {
        gap: 0.4rem;
    }

    .paginationArrow,
    .paginationLink {
        min-height: 38px;
    }

    .paginationArrow {
        width: 38px;
        min-width: 38px;
    }

    .paginationLink {
        min-width: 38px;
        padding: 0 0.75rem;
    }

    .paginationJump {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        margin-left: 0;
    }

    .paginationJump label {
        text-align: center;
    }

    .paginationJumpFields {
        width: 100%;
    }

    .paginationJump input {
        flex: 1;
        width: auto;
        min-width: 0;
    }

    .paginationJump button {
        min-width: 92px;
    }
}

.contrast .paginationSummary,
.contrast .paginationJump label,
.contrast .paginationLink,
.contrast .paginationDots {
    color: var(--white);
}

.contrast .paginationLink,
.contrast .paginationJump input {
    background: var(--black);
    border-color: var(--contrast-border);
}

.contrast .paginationLink.isCurrent,
.contrast .paginationJump button {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.contrast .paginationLink.isCurrent,
.contrast .paginationJump button {
    font-weight: 700;
}

.contrast .paginationLink:hover,
.contrast .paginationLink:focus-visible {
    background: var(--contrast-bg-hover);
    border-color: var(--white);
}

.contrast .paginationLink.isCurrent:hover,
.contrast .paginationLink.isCurrent:focus-visible {
    background: var(--white);
    color: var(--black);
}

.contrast .paginationLink:focus-visible,
.contrast .paginationJump input:focus-visible,
.contrast .paginationJump button:focus-visible {
    outline-color: var(--white);
}

/* ==============================
   31. QUESTIONS & ANSWERS
   ============================== */

ul.questionAndAnswers {
    display: flex;
    flex-direction: column;
    color: var(--dark-grey);
    font-size: 0.8em;
}

    ul.questionAndAnswers .author {
        color: var(--navy);
        font-weight: 600;
    }

    ul.questionAndAnswers .date {
        font-size: 12px;
        text-align: right;
    }

    ul.questionAndAnswers li {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid var(--grey);
        padding: 1.8rem 2% 1.8rem 0;
    }

    ul.questionAndAnswers .question,
    ul.questionAndAnswers .answer {
        white-space: pre-wrap;
    }

    ul.questionAndAnswers li:last-child {
        border-bottom: 0;
    }

    ul.questionAndAnswers .questionRow {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 2rem;
    }

        ul.questionAndAnswers .questionRow div {
            display: flex;
            justify-content: space-between;
        }

    ul.questionAndAnswers .answerRow {
        padding-left: 3%;
    }

        ul.questionAndAnswers .answerRow .date {
            margin-top: 0.7rem;
        }

.btn-arrow.goToAnswers {
    margin-top: 10px;
}

/* ==============================
   32. QUESTION FORM
   ============================== */

.questionForm {
    width: 100%;
    margin: auto;
    padding-bottom: 0;
    border-bottom: 1px solid var(--grey);
}

.questionFormSection {
    padding: 0;
    margin: 2rem auto;
    width: 100%;
}

.questionForm > form {
    padding: 13px 0 17px;
    display: flex;
    flex-direction: column;
}

    .questionForm > form .questionInput {
        min-height: 255px;
        width: 100%;
        font-family: var(--font-family);
        font-size: 0.875em;
        line-height: 1.1875em;
        font-weight: 400;
        color: var(--navy);
        border: 1px solid var(--grey);
        padding: 14px 17px 0;
    }

        .questionForm > form .questionInput::placeholder {
            color: var(--dark-grey);
        }

    .questionForm > form .nameWrap {
        padding: 13px 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 13px;
        margin-bottom: 1rem;
    }

        .questionForm > form .nameWrap .nameInput {
            font-family: var(--font-family);
            font-size: 0.875em;
            line-height: 1.1875em;
            font-weight: 400;
            color: var(--navy);
            padding: 0 4px 0 17px;
            border: 1px solid var(--grey);
            flex: 1;
            height: 48px;
        }

            .questionForm > form .nameWrap .nameInput::placeholder {
                color: var(--dark-grey);
            }

        .questionForm > form .nameWrap .send {
            background-color: red;
            font-family: var(--font-family);
            font-size: 0.875em;
            line-height: 1.1875em;
            font-weight: 500;
            text-align: center;
            color: var(--white);
            padding: 15px 0;
            width: 130px;
            height: 48px;
            cursor: pointer;
        }

    .questionForm > form .checkboxWrap {
        display: flex;
        width: 100%;
        padding-bottom: 8px;
    }

        .questionForm > form .checkboxWrap .checkbox {
            min-width: 14px;
            width: 14px;
            height: 14px;
            border: 1px solid red;
            display: flex;
        }

            .questionForm > form .checkboxWrap .checkbox:hover {
                cursor: pointer;
            }

            .questionForm > form .checkboxWrap .checkbox:checked {
                background: red;
                content: url("../assets/checkmark.svg");
                padding: 2px 0;
            }

        .questionForm > form .checkboxWrap label {
            padding-left: 10px;
            font-family: var(--font-family);
            font-size: 0.75em;
            line-height: 1.25em;
            font-weight: 400;
            color: var(--navy);
            display: flex;
            flex-direction: column;
        }

        .questionForm > form .checkboxWrap pre {
            font: inherit;
            margin-bottom: 2px;
        }

        .questionForm > form .checkboxWrap a {
            display: flex;
        }

        .questionForm > form .checkboxWrap .red {
            display: block;
            cursor: pointer;
            font-weight: 600;
            color: red;
        }

.questionForm button {
    cursor: pointer;
    font-weight: 600;
    width: fit-content;
}

.questionForm .showMore {
    padding-left: 0;
    padding-top: 0.7rem;
}

.questionForm .rulesWrap label {
    flex-direction: row !important;
}

.questionForm .rulesWrap a {
    margin-left: 2px;
}

/* ==============================
   33. SEARCH PAGE
   ============================== */

.searchPageSection {
    display: flex;
    margin-bottom: 16px;
    flex-direction: column;
}

    .searchPageSection > *:first-child {
        border: none;
    }

    .searchPageSection .searchSection {
        padding: 0;
        display: flex;
        align-items: center;
        height: 48px;
    }

        .searchPageSection .searchSection .searchWrap {
            display: flex;
            align-items: center;
            height: 100%;
            padding-left: 17px;
            flex: 1;
            border: 1px solid var(--grey);
        }

            .searchPageSection .searchSection .searchWrap img {
                width: 14px;
                height: 14px;
            }

            .searchPageSection .searchSection .searchWrap input {
                font-family: var(--font-family);
                font-size: 0.875em;
                line-height: 1.1875em;
                font-weight: 400;
                color: var(--navy);
                margin-left: 12px;
                flex: 1;
            }

                .searchPageSection .searchSection .searchWrap input::placeholder {
                    color: var(--dark-grey);
                }

        .searchPageSection .searchSection button {
            width: 48px;
            height: 48px;
            background: red;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

            .searchPageSection .searchSection button img {
                width: 15px;
                height: 12px;
            }

    .searchPageSection .redLink {
        border-top: 1px solid var(--grey);
        border-bottom: 1px solid red;
        padding: 14px 0;
    }

        .searchPageSection .redLink a {
            display: block;
            margin: 0 auto;
            text-align: center;
            font-family: var(--font-family);
            font-size: 0.875em;
            line-height: 1.1875em;
            font-weight: 600;
            color: red;
        }

    .searchPageSection .noResults {
        font-family: var(--font-family);
        font-size: 0.875em;
        line-height: 1.1875em;
        font-weight: 600;
        color: var(--navy);
        padding: 0.3rem 0 0.75rem;
    }

    .searchPageSection ul.articleList li:first-child a {
        padding-top: 5px;
    }

    .searchPageSection ul.articleList li:last-child a {
        border-bottom: 0;
    }

@media only screen and (min-width: 1440px) {
    .searchPageSection {
        padding: 0 1.5rem;
    }
}

/* ==============================
   34. BANNERS
   ============================== */

.banners-container {
    margin: 0.7rem auto;
}

div.banner {
    width: 100%;
    margin: 25px 0;
    text-align: center;
}

.bannerText {
    min-height: 100px;
    height: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    text-align: center;
    min-width: 240px;
}

    .bannerText span {
        margin: auto;
        max-width: 85%;
        padding: 1.5rem 0;
    }

.banner.splide__slide {
    text-align: center;
}

    .banner.splide__slide img {
        max-height: 450px;
        object-position: center;
        height: 100%;
        object-fit: contain;
    }

    .banner.splide__slide .bannerText {
        padding: 0;
        min-width: 0;
    }

.bannersVerticalList li {
    margin: 0.5rem 0;
    text-align: center;
}

aside .banner.splide__slide img {
    max-height: 250px;
}

#bottomBanners {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid var(--grey);
    margin-top: 1rem;
    padding-top: 1rem;
}

    #bottomBanners .splide {
        width: 100%;
    }

.deactivateSlider .splide__list {
    display: block;
}

.splide__pagination__page {
    width: 5px;
    height: 5px;
}

@media (min-width: 1024px) {
    #bottomBanners div.banner {
        width: 30%;
    }
}

/* ==============================
   35. CONTRAST MODE
   ============================== */

.contrast {
    background-color: var(--black);
}

    .contrast.hasAppBackground::before {
        background-image: none;
        background-color: var(--black);
        filter: none;
    }

    .contrast .contrastHide {
        display: none !important;
    }

    .contrast .contrastShow {
        display: flex;
    }

    .contrast .date {
        color: var(--dark-grey);
    }

    .contrast .splide__pagination__page {
        opacity: 1;
        background: yellow !important;
    }

    .contrast .fontRed {
        color: yellow;
    }

    /* Contrast � utility classes */

    .contrast .heading,
    .contrast .contrastTextWhite {
        color: var(--white) !important;
    }

    .contrast .contrastTextYellow {
        color: yellow !important;
    }

    .contrast .contrastBackgroundBlack {
        background-color: var(--black) !important;
    }

    .contrast .contrastBorderColor {
        border-color: var(--contrast-border) !important;
    }

    .contrast .contrastBorderColorBg {
        background-color: var(--contrast-border) !important;
    }

    .contrast .contrastYellowBorder {
        border-color: yellow !important;
    }

    .contrast .contrastBackgroundYellow {
        background-color: yellow !important;
    }

    /* Contrast � filters */

    .contrast .contrastBlack {
        filter: brightness(0%) invert(1);
    }

    .contrast .contrastInvert {
        filter: invert(1);
    }

    .contrast .contrastWhite {
        filter: brightness(100%);
    }

    .contrast .contrastYellow {
        filter: var(--filter-to-yellow);
    }

    /* Contrast � splide */

    .contrast .splide__arrow {
        background-color: var(--black) !important;
    }

    /* Contrast � header mobile widgets */

    .contrast #fontSizeChangeWrapMobile .absolute {
        background-color: var(--black);
        border-color: var(--contrast-border) !important;
    }

    .contrast #fontSizeChangeWrapMobile .border {
        background-color: var(--contrast-border) !important;
    }

    .contrast #searchWrapMobile > div {
        background-color: var(--black);
        border-color: var(--contrast-border) !important;
        border-bottom: 1px solid var(--contrast-border);
    }

    /* Contrast � menu right */

    .contrast .menuRight,
    .contrast .nestedMenus {
        border-color: var(--contrast-border);
    }

        .contrast .menuRight ul li button,
        .contrast .menuRight ul li a,
        .contrast .nestedMenus ul li button,
        .contrast .nestedMenus ul li a {
            color: var(--white);
        }

        .contrast .nestedMenus ul li button .description,
        .contrast .nestedMenus ul li a .description {
            color: yellow;
        }

            .contrast .menuRight ul li button:hover,
            .contrast .menuRight ul li button:focus,
            .contrast .menuRight ul li a:hover,
            .contrast .menuRight ul li a:focus,
            .contrast .nestedMenus ul li button:hover,
            .contrast .nestedMenus ul li button:focus,
            .contrast .nestedMenus ul li a:hover,
            .contrast .nestedMenus ul li a:focus {
                border-color: yellow;
                background-color: var(--contrast-bg-hover);
                color: var(--white);
            }

                .contrast .menuRight ul li button:hover::before,
                .contrast .menuRight ul li button:focus::before,
                .contrast .menuRight ul li a:hover::before,
                .contrast .menuRight ul li a:focus::before,
                .contrast .nestedMenus ul li button:hover::before,
                .contrast .nestedMenus ul li button:focus::before,
                .contrast .nestedMenus ul li a:hover::before,
                .contrast .nestedMenus ul li a:focus::before {
                    border-color: yellow;
                    background-color: yellow;
                }

                .contrast .menuRight ul li button:hover::after,
                .contrast .menuRight ul li button:focus::after,
                .contrast .menuRight ul li a:hover::after,
                .contrast .menuRight ul li a:focus::after,
                .contrast .nestedMenus ul li button:hover::after,
                .contrast .nestedMenus ul li button:focus::after,
                .contrast .nestedMenus ul li a:hover::after,
                .contrast .nestedMenus ul li a:focus::after {
                    filter: var(--filter-to-yellow);
                }

        .contrast .menuRight ul .multi button::after,
        .contrast .nestedMenus ul .multi button::after {
            filter: var(--filter-to-yellow);
        }

    /* Contrast � articles list */

    .contrast .articlesList {
        border-color: var(--contrast-border) !important;
    }

        .contrast .articlesList a {
            border-color: var(--contrast-border) !important;
        }

        .contrast .articlesList li .articleItemText h4 {
            color: var(--white) !important;
        }

        .contrast .articlesList li .articleItemText p,
        .contrast .articlesList li .articleItemText .date {
            color: yellow !important;
        }

    /* Contrast � footer links */

    .contrast .bottomLinks li a {
        color: var(--white) !important;
    }

        .contrast .bottomLinks li a::before {
            filter: var(--filter-to-yellow);
        }

    /* Contrast � calendar & list */

    .contrast .day {
        color: yellow !important;
    }

    .contrast .list a {
        border-color: var(--contrast-border) !important;
    }

        .contrast .list a .articleItemText h4 {
            color: var(--white) !important;
        }

        .contrast .list a .articleItemText p,
        .contrast .list a .articleItemText span {
            color: yellow !important;
        }

    /* Contrast � desktop menu */

    .contrast .desktopMenu {
        border-color: var(--contrast-border);
    }

        .contrast .desktopMenu li {
            background-color: var(--black) !important;
        }

            .contrast .desktopMenu li:hover {
                border-color: yellow !important;
            }

            .contrast .desktopMenu li::before {
                background-color: yellow !important;
            }

            .contrast .desktopMenu li a,
            .contrast .desktopMenu li button {
                background-color: var(--black);
                color: var(--white);
            }

                .contrast .desktopMenu li a::after,
                .contrast .desktopMenu li button::after {
                    filter: var(--filter-to-yellow);
                }

        .contrast .desktopMenu .multi::after {
            filter: var(--filter-to-yellow);
        }

    /* Contrast � cookie bar */

    .contrast #cookieBar {
        background-color: var(--black);
        border-top: 1px solid var(--contrast-border);
    }

        .contrast #cookieBar p {
            color: var(--white);
        }

        .contrast #cookieBar button {
            color: yellow;
        }

    /* Contrast � language */

    .contrast .languageList.desktop .current:hover + .languageSubmenu,
    .contrast .languageList.desktop .languageSubmenu:hover,
    .contrast .languageList.mobile .current.active > .languageSubmenu {
        background: var(--black);
    }

/* Contrast � content overrides */

body.contrast .contentMain *,
body.contrast .pageTitle,
body.contrast .singleGroupPages *,
body.contrast .filesContainer * {
    color: var(--white) !important;
}

body.contrast .pageListTitle::after {
    background-image: url('/assets/arrow-double-yellow.svg');
}

body.contrast .filesContainer li::before {
    background-image: url('/assets/attachment-yellow.svg');
}

body.contrast .singleArticle header {
    background: var(--black);
}

/* Contrast � pagination */

.contrast .changePage .blockLink {
    background: inherit;
}

.contrast .changePage ul li {
    border: 1px solid yellow;
}

/* Contrast � Q&A */

.contrast .questionText,
.contrast .anwser * {
    color: yellow !important;
}

.contrast .questionInput,
.contrast .nameInput {
    border-color: var(--contrast-border) !important;
    color: yellow !important;
}

    .contrast .questionInput::placeholder,
    .contrast .nameInput::placeholder {
        color: yellow !important;
    }

.contrast .textCol {
    color: var(--white);
}

.contrast footer {
    color: var(--white);
}

.contrast button.send {
    background: yellow !important;
    color: var(--navy) !important;
}

.contrast .checkbox {
    border: 1px solid yellow !important;
}

.contrast .btn-arrow::before {
    filter: var(--filter-to-yellow);
}

/* Contrast � editor content tables */

.contrast .editorContent table,
.contrast .editorContent th,
.contrast .editorContent td {
    border: 1px solid var(--white);
}

/* ==============================
   36. MODERN POLISH OVERRIDES
   ============================== */

body:not(.contrast) {
    color: var(--navy);
    line-height: 1.45;
}

body:not(.contrast) a,
body:not(.contrast) button,
body:not(.contrast) input,
body:not(.contrast) textarea {
    transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

body:not(.contrast) .editorContent {
    line-height: 1.5;
}

body:not(.contrast) header {
    box-shadow: 0 2px 16px rgb(0 0 0 / 6%);
}

body:not(.contrast) header .logoRow {
    padding-top: 1.2rem;
    padding-bottom: 1.35rem;
}

body:not(.contrast) header .desktopMenu {
    border-top-color: #e4e4e4;
}

body:not(.contrast) header .desktopMenu > ul {
    align-items: stretch;
    gap: 4px;
    padding-top: 4px;
    padding-bottom: 2px;
}

body:not(.contrast) header .desktopMenu > ul > li {
    padding: 17px 16px 14px;
    border-bottom-width: 3px;
    border-bottom-color: transparent;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

body:not(.contrast) header .desktopMenu > ul > li:hover {
    background-color: #fafafa;
}

body:not(.contrast) header .desktopMenu > ul > .multi > ul {
    min-width: 100%;
    width: max-content;
    max-width: 400px;
    border: 1px solid #e6e6e6;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

body:not(.contrast) header .desktopMenu > ul > .multi > ul li {
    width: 100%;
    min-width: 220px;
    padding: 0;
    border-top-color: #ededed;
}

body:not(.contrast) header .desktopMenu > ul > .multi > ul li:hover {
    background-color: #fafafa;
}

body:not(.contrast) header .desktopMenu > ul > .multi > ul li > button,
body:not(.contrast) header .desktopMenu > ul > .multi > ul li a {
    padding: 0.65rem 2rem 0.65rem 0.9rem;
    white-space: normal;
    word-break: break-word;
    line-height: 1.35;
}

body:not(.contrast) header .desktopMenu > ul > .multi > ul li > ul {
    min-width: 100%;
    width: max-content;
    max-width: 400px;
    border: 1px solid #e6e6e6;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    background-color: var(--white);
}

body:not(.contrast) header .buttonsDesktop ul {
    gap: 20px;
}

body:not(.contrast) header .buttonsDesktop ul .singleItem a,
body:not(.contrast) header .buttonsDesktop ul .singleItem button,
body:not(.contrast) header .buttonsDesktop ul .doubleItem button {
    border-radius: var(--radius-sm);
}

body:not(.contrast) header .buttonsDesktop ul .singleItem a:hover,
body:not(.contrast) header .buttonsDesktop ul .singleItem button:hover,
body:not(.contrast) header .buttonsDesktop ul .doubleItem button:hover {
    transform: translateY(-1px);
}

body:not(.contrast) header .buttonsDesktop .searchSection .searchWrap,
body:not(.contrast) .searchPageSection .searchSection .searchWrap {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border-color: #dddddd;
    background: #fafafa;
}

body:not(.contrast) header .buttonsDesktop .searchSection .block,
body:not(.contrast) .searchPageSection .searchSection button {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

body:not(.contrast) .pageContainer {
    gap: 2.5rem;
}

body:not(.contrast) .pageContainer main,
body:not(.contrast) .sidebarMain > div {
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.25rem;
}

body:not(.contrast) .sidebarMain .heading {
    margin-top: 0.15rem;
}

body:not(.contrast) ul.articleList a,
body:not(.contrast) .pinnedArticles .articlesList a,
body:not(.contrast) ul.pageList li {
    border-color: #e9e9e9;
}

body:not(.contrast) ul.articleList a {
    border-radius: var(--radius-md);
    padding: 18px 14px;
    margin-bottom: 8px;
}

body:not(.contrast) ul.articleList li:last-child a {
    border-bottom: 1px solid #e9e9e9;
}

body:not(.contrast) ul.articleList a:hover {
    background: #fcfcfc;
    box-shadow: var(--shadow-soft);
    transform: translateY(-1px);
}

body:not(.contrast) ul.articleList img {
    border-radius: var(--radius-sm);
}

body:not(.contrast) .singleGroupPages {
    border-width: 0;
    border-radius: var(--radius-md);
    background: #fafafa;
    padding: 1rem 1.1rem;
}

body:not(.contrast) .contentMain.singleArticle {
    margin-top: 0.25rem;
}

body:not(.contrast) .singleArticle .singleArticleImage {
    margin: 1.2rem 0 1.4rem;
}

body:not(.contrast) .singleArticle .singleArticleImage img {
    margin: 0;
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

body:not(.contrast) .articleTopBanner {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

body:not(.contrast) .articleTopBanner .content {
    border-top-right-radius: var(--radius-md);
}

body:not(.contrast) .pinnedArticles .articlesList {
    border-radius: var(--radius-md);
    overflow: hidden;
    border-color: #e7e7e7;
}

body:not(.contrast) .pinnedArticles .articlesList a:hover {
    background: #fbfbfb;
}

body:not(.contrast) .menuRight,
body:not(.contrast) .searchPageSection,
body:not(.contrast) .questionForm {
    border-radius: var(--radius-md);
}

body:not(.contrast) .questionForm > form .questionInput,
body:not(.contrast) .questionForm > form .nameWrap .nameInput {
    border-radius: var(--radius-sm);
}

body:not(.contrast) .questionForm > form .nameWrap .send {
    border-radius: var(--radius-sm);
    box-shadow: 0 6px 16px rgb(255 0 0 / 22%);
}

body:not(.contrast) .changePage ul li,
body:not(.contrast) .changePage .blockLink,
body:not(.contrast) .changePage ul a {
    border-radius: 999px;
}

body:not(.contrast) .changePage ul {
    gap: 12px;
    margin-left: 24px;
}

body:not(.contrast) .changePage ul li {
    overflow: hidden;
}

body:not(.contrast) footer {
    margin-top: 1.5rem;
    border-top: 1px solid #e6e6e6;
}

body:not(.contrast) footer .bottomLinks ul li a,
body:not(.contrast) footer .bottom p,
body:not(.contrast) footer .bottomButtons .content a span {
    color: #45445b;
}

body:not(.contrast) #cookieBar {
    border-top: 1px solid #e9e9e9;
}

@media only screen and (min-width: 768px) {
    body:not(.contrast) header {
        position: relative;
        top: auto;
        backdrop-filter: none;
    }

    body:not(.contrast) .pageContainer main,
    body:not(.contrast) .sidebarMain > div {
        padding: 1.35rem 1.5rem;
    }

    body:not(.contrast) .singleArticle .singleArticleImage {
        padding-inline: 0;
    }
}

@media only screen and (min-width: 1024px) {
    body:not(.contrast) .pageContainer {
        gap: 2.2rem;
        align-items: flex-start;
    }
}

@media only screen and (min-width: 1440px) {
    body:not(.contrast) header .buttonsDesktop ul {
        gap: 28px;
    }

    body:not(.contrast) .pageContainer main,
    body:not(.contrast) .sidebarMain > div {
        padding: 1.5rem 1.7rem;
    }

    body:not(.contrast) .singleArticle .singleArticleImage {
        padding-inline: 0;
    }
}

/* ==============================
   37. CONTRAST STRUCTURE POLISH
   ============================== */

body.contrast {
    line-height: 1.45;
}

body.contrast .editorContent {
    line-height: 1.5;
}

body.contrast header .logoRow {
    padding-top: 1.2rem;
    padding-bottom: 1.35rem;
}

body.contrast header .desktopMenu > ul {
    align-items: stretch;
    gap: 4px;
    padding-top: 4px;
    padding-bottom: 2px;
}

body.contrast header .desktopMenu > ul > li {
    padding: 17px 16px 14px;
    border-bottom-width: 3px;
    border-bottom-color: transparent;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

body.contrast header .desktopMenu > ul > li:hover {
    transform: translateY(-1px);
}

body.contrast header .desktopMenu > ul > .multi > ul {
    min-width: 100%;
    width: max-content;
    max-width: 400px;
    border: 1px solid var(--contrast-border);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    overflow: hidden;
}

body.contrast header .desktopMenu > ul > .multi > ul li {
    width: 100%;
    min-width: 220px;
    padding: 0;
    border-top-color: var(--contrast-border);
}

body.contrast header .desktopMenu > ul > .multi > ul li > button,
body.contrast header .desktopMenu > ul > .multi > ul li a {
    padding: 0.65rem 2rem 0.65rem 0.9rem;
    white-space: normal;
    word-break: break-word;
    line-height: 1.35;
}

body.contrast header .desktopMenu > ul > .multi > ul li > ul {
    min-width: 100%;
    width: max-content;
    max-width: 400px;
    border: 1px solid var(--contrast-border);
    border-radius: var(--radius-sm);
    background-color: var(--black);
}

body.contrast header .buttonsDesktop ul {
    gap: 20px;
}

body.contrast .pageContainer {
    gap: 2.5rem;
}

body.contrast .pageContainer main,
body.contrast .sidebarMain > div {
    background: var(--black);
    border: 1px solid var(--contrast-border);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.25rem;
}

body.contrast .sidebarMain .heading {
    margin-top: 0.15rem;
}

body.contrast ul.articleList a,
body.contrast .pinnedArticles .articlesList a,
body.contrast ul.pageList li {
    border-color: var(--contrast-border) !important;
}

body.contrast ul.articleList a {
    border-radius: var(--radius-md);
    padding: 18px 14px;
    margin-bottom: 8px;
}

body.contrast ul.articleList li:last-child a {
    border-bottom: 1px solid var(--contrast-border) !important;
}

body.contrast ul.articleList img {
    border-radius: var(--radius-sm);
}

body.contrast .singleGroupPages {
    border-width: 0;
    border-radius: var(--radius-md);
    background: var(--black);
    padding: 1rem 1.1rem;
}

body.contrast .contentMain.singleArticle {
    margin-top: 0.25rem;
}

body.contrast .singleArticle .singleArticleImage {
    margin: 1.2rem 0 1.4rem;
}

body.contrast .singleArticle .singleArticleImage img {
    margin: 0;
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

body.contrast .articleTopBanner {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

body.contrast .articleTopBanner .content {
    border-top-right-radius: var(--radius-md);
}

body.contrast .pinnedArticles .articlesList {
    border-radius: var(--radius-md);
    overflow: hidden;
}

body.contrast .menuRight,
body.contrast .searchPageSection,
body.contrast .questionForm {
    border-radius: var(--radius-md);
}

body.contrast .questionForm > form .questionInput,
body.contrast .questionForm > form .nameWrap .nameInput {
    border-radius: var(--radius-sm);
}

body.contrast .changePage ul li,
body.contrast .changePage .blockLink,
body.contrast .changePage ul a {
    border-radius: 999px;
}

body.contrast .changePage ul {
    gap: 12px;
    margin-left: 24px;
}

body.contrast .changePage ul li {
    overflow: hidden;
}

body.contrast footer {
    margin-top: 1.5rem;
    border-top: 1px solid var(--contrast-border);
}

@media only screen and (min-width: 768px) {
    body.contrast .pageContainer main,
    body.contrast .sidebarMain > div {
        padding: 1.35rem 1.5rem;
    }
}

@media only screen and (min-width: 1024px) {
    body.contrast .pageContainer {
        gap: 2.2rem;
        align-items: flex-start;
    }
}

@media only screen and (min-width: 1440px) {
    body.contrast header .buttonsDesktop ul {
        gap: 28px;
    }

    body.contrast .pageContainer main,
    body.contrast .sidebarMain > div {
        padding: 1.5rem 1.7rem;
    }
}
