@media (min-width: 1200px) {

    .page__header {
        --header-logo-width: 200px;
    }

    .l-header__inner {
        width: 80%;
        flex-direction: row;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .header__social-buttons {
        margin-top: 0;
        align-items: center;
    }

    .header__social-buttons .social-button,
    .header__social-buttons .social-button svg {
        height: 30px;
        width: 30px;
    }

    
    /* ========================================
                    Header->
                    Navigation
                    [START]
    ========================================= */

    .header__nav {
        display: none;
    }

    .l-header__navigation--desktop {
        display: block;
        width: 80%;
        flex-grow: 1;
    }

    .l-header__navigation--desktop > .header__navigation {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: var(--space-xxxl);
        height: 100%;
    }

    .l-header__navigation--desktop .menu-item {
        position: relative;
        height: 100%;
    }

    .l-header__navigation--desktop .menu-item-has-children > a::after {
        content: '';
        display: inline-block;
        width: 24px;
        height: 24px;
        background-image: url('../../img/icons/material_symbols/icon-arrow_drop_down.svg');
        background-repeat: no-repeat;
    }

    /* Show sub-menu on hover */
    .l-header__navigation--desktop .menu-item-has-children:hover > .sub-menu {
        display: block;
    }

    /* Parent item */
    .l-header__navigation--desktop .menu-item a {
        position: relative; /* Set to 'relative' for underline */
        display: flex;
        align-items: center;
        height: 100%;
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
        font-size: var(--header-navigation-font-size);
        font-weight: var(--header-navigation-font-weight);
        text-decoration: none;
        color: var(--header-navigation-parent-text-color);
    }

    .l-header__navigation--desktop .menu-item a:hover {
        color: var(--header-navigation-parent-hover-text-color);
    }

    /* Animated underline */
    .l-header__navigation--desktop .menu-item a::before {
        content: "";
        /* Position underline under <a> element */
        display: block;
        width: calc(100% - (var(--space-lg) * 2)); /* Full width underline */
        position: absolute;
        bottom: 0;
        left: var(--space-lg);
        height: 2px; /* Underline thickness */
        background-color: var(--header-navigation-hover-underline-color); /* Underline color */
        transform: scaleX(0); /* Hide underline by default */
        transition: transform .3s ease;
    }

    .l-header__navigation--desktop .menu-item a:hover::before {
        transform: scaleX(1); /* Stretch width */
    }

    /* Active page item */
    .l-header__navigation--desktop .current-menu-item > a {
        color: var(--header-navigation-current-page-text-color) !important;
    }


        /* ========================================
                        Header->
                        Navigation->
                        Sub-menu
                        [START]
        ========================================= */

        .l-header__navigation--desktop .sub-menu {
            display: none; /* Hide sub-menu by default */
            position: absolute;
            z-index: var(--under-top-z-index);
            padding: 0;
            top: 100%;
            background-color: var(--header-navigation-submenu-bg-color);
        }

        .l-header__navigation--desktop .sub-menu .sub-menu {
            top: 0;
            left: 100%;
        }

        .l-header__navigation--desktop .sub-menu a {
            padding: var(--space-lg);
            text-wrap: nowrap;
        }

        /* ========================================
                        Header->
                        Navigation->
                        Sub-menu
                        [END]
        ========================================= */

    /* ========================================
                    Header->
                    Navigation
                    [END]
    ========================================= */

}