/* Extracted from style.css. Keep this file ordered after its declared dependencies. */
.creole-no-x {
    overflow-x: hidden;
}

.site-gradient-text {
    background: linear-gradient(to right, #EA2839, #1A206D, #ca8a04);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-header-nav {
    position: fixed;
    top: var(--site-header-top);
    left: 0;
    z-index: 50;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header-shell {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.65rem 1.5rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header-shell:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.site-header-gradient-line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 0;
    background: linear-gradient(to right, transparent, #EA2839, #1A206D, #FFD500, #00A551, transparent);
    opacity: 0.9;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 0.5rem;
    color: inherit;
    text-decoration: none !important;
}

.site-brand-logo {
    position: relative;
    flex: 0 0 auto;
    width: 9.375rem;
    height: 3rem;
    aspect-ratio: 772 / 247;
    transition: transform 0.3s ease;
}

.site-brand:hover .site-brand-logo {
    transform: scale(1.1);
}

.site-brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(15, 23, 42, 0.12));
}

.site-desktop-nav {
    display: none;
}

.site-desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.site-nav-link.is-active {
    color: #1A206D;
}

.site-nav-link.is-inactive {
    color: #4b5563;
}

.site-nav-link.is-inactive:hover {
    color: #EA2839;
}

.site-nav-link-label,
.site-nav-chevron {
    position: relative;
    z-index: 10;
}

.site-nav-chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.site-nav-dropdown:hover .site-nav-chevron {
    transform: rotate(180deg);
}

.site-nav-underline {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 9999px;
    background: linear-gradient(to right, #EA2839, #1A206D, #FFD500, #00A551);
    opacity: 0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.1);
    transition: opacity 0.3s ease;
}

.site-nav-link:hover .site-nav-underline,
.site-nav-underline.is-visible {
    opacity: 1;
}

.site-nav-dropdown {
    position: relative;
}

.site-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 50;
    display: none;
    width: 15rem;
    padding-top: 1rem;
    transform: translateX(-50%);
}

.site-nav-dropdown:hover .site-dropdown-panel {
    display: block;
}

.site-dropdown-menu {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 32px rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(24px);
}

.site-dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-dropdown-link.has-border {
    border-bottom: 1px solid #cbd5e1;
}

.site-dropdown-link:hover {
    background: #1A206D;
    color: #ffffff;
}

.site-dropdown-link-red:hover {
    background: #EA2839;
}

.site-nav-divider {
    width: 1px;
    height: 1.5rem;
    margin: 0 0.5rem;
    background: #cbd5e1;
}

.site-nav-divider-compact {
    display: none;
}

.site-search-form {
    position: relative;
    z-index: 70;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
}

.site-search-form.is-open {
    position: static;
}

.site-search-wrap {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    isolation: isolate;
    transition: width 0.25s ease;
}

.site-search-form.is-open .site-search-wrap {
    position: absolute;
    top: 50%;
    right: 3.25rem;
    width: 16rem;
    transform: translateY(-50%);
}

.site-search-wrap:focus-within {
    width: 16rem;
}

.site-search-input {
    width: 100%;
    min-height: 2.5rem;
    padding: 0.5rem 2.75rem 0.5rem 1rem;
    border: 0;
    background: transparent;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 500;
    outline: none;
    opacity: 0;
    pointer-events: none;
    transition: color 0.2s ease, opacity 0.18s ease;
}

.site-search-form.is-open .site-search-input,
.site-search-wrap:focus-within .site-search-input {
    opacity: 1;
    pointer-events: auto;
}

.site-search-input::placeholder {
    color: #94a3b8;
}

.site-search-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: border-color 0.2s ease, background 0.2s ease, opacity 0.3s ease;
}

.site-search-form.is-open .site-search-bg,
.site-search-wrap:focus-within .site-search-bg {
    border-color: rgba(26, 32, 109, 0.35);
    background: #f1f5f9;
    opacity: 1;
}

.site-search-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 0;
    border-radius: 9999px;
    background: transparent;
    color: #475569;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 0.2s ease, background 0.2s ease;
}

.site-search-input {
    position: relative;
    z-index: 1;
}

.site-search-toggle:hover,
.site-search-toggle:focus {
    color: #1A206D;
    outline: none;
}

.site-search-icon {
    width: 1rem;
    height: 1rem;
}

.site-search-form.is-open .site-search-toggle,
.site-search-wrap:focus-within .site-search-icon {
    color: #1A206D;
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: 0;
    z-index: 100;
    max-height: min(30rem, 80vh);
    overflow: hidden auto;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
    opacity: 0;
    transform: translateY(0.5rem);
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    scrollbar-width: thin;
    scrollbar-color: rgba(26, 32, 109, 0.35) transparent;
}

.site-search-form .search-results-dropdown {
    left: auto;
    width: min(24rem, calc(100vw - 2rem));
}

.site-mobile-search .search-results-dropdown,
.blog-search-inner .search-results-dropdown {
    right: 0;
    left: 0;
    width: auto;
}

.search-results-dropdown::-webkit-scrollbar {
    width: 0.45rem;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(26, 32, 109, 0.3);
}

.search-results-dropdown.is-hidden {
    display: none;
}

.search-results-dropdown.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.search-dropdown-list {
    display: grid;
    grid-template-columns: 1fr;
}

.search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s ease;
}

.search-dropdown-item:hover,
.search-dropdown-item:focus {
    background: #f8fafc;
    outline: none;
}

.search-dropdown-thumb {
    position: relative;
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    overflow: hidden;
    border-radius: 0.75rem;
    background: #e2e8f0;
}

.search-dropdown-thumb img,
.search-dropdown-thumb span {
    display: block;
    width: 100%;
    height: 100%;
}

.search-dropdown-thumb img {
    object-fit: cover;
}

.search-dropdown-body {
    min-width: 0;
}

.search-dropdown-body > span {
    display: block;
    margin-bottom: 0.2rem;
    color: #1A206D;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.search-dropdown-body h4 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.search-dropdown-item:hover h4,
.search-dropdown-item:focus h4 {
    color: #EA2839;
}

.search-dropdown-empty {
    padding: 1.5rem;
    color: #64748b;
    text-align: center;
}

.search-dropdown-empty p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.search-dropdown-footer {
    padding: 0.8rem;
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
    text-align: center;
}

.search-dropdown-footer button {
    border: 0;
    background: transparent;
    color: #1A206D;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.search-dropdown-footer button:hover,
.search-dropdown-footer button:focus {
    color: #EA2839;
    outline: none;
}

.site-user-menu {
    position: relative;
    display: none;
    flex: 0 0 auto;
}

.site-user-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.6);
    color: #475569;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.site-user-button:hover {
    border-color: rgba(26, 32, 109, 0.35);
    color: #1A206D;
}

.site-user-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.site-user-panel {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 60;
    display: none;
    width: 14rem;
    padding-top: 1rem;
    pointer-events: none;
}

.site-user-menu:hover .site-user-panel {
    display: block;
    pointer-events: auto;
}

.site-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.site-mobile-icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    color: #1A206D;
    transition: background 0.2s ease;
}

.site-mobile-icon-button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.site-mobile-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.site-mobile-panel {
    position: absolute;
    top: 100%;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 0.5rem 1rem 0;
}

.site-mobile-panel-inner {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 32px rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(24px);
}

.site-mobile-user-inner {
    gap: 0.25rem;
}

.site-mobile-link,
.site-mobile-parent-link,
.site-mobile-submenu-link {
    display: block;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #1A206D;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-mobile-parent-link {
    flex-grow: 1;
    font-weight: 800;
}

.site-mobile-link:hover,
.site-mobile-parent-link:hover {
    background: rgba(26, 32, 109, 0.05);
    color: #EA2839;
}

.site-mobile-menu-item {
    display: flex;
    flex-direction: column;
}

.site-mobile-parent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
}

.site-mobile-parent-row:hover {
    background: rgba(26, 32, 109, 0.05);
}

.site-mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0.5rem;
    border: 0;
    background: transparent;
    color: #1A206D;
    outline: none;
    transition: color 0.2s ease;
}

.site-mobile-submenu-toggle:hover {
    color: #EA2839;
}

.site-mobile-submenu-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}

.site-mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-top: 0.25rem;
    margin-left: 0;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(26, 32, 109, 0.1);
}

.site-mobile-submenu.hidden {
    display: none !important;
}

.site-mobile-submenu-link {
    color: #4b5563;
    font-size: 0.875rem;
}

.site-mobile-submenu-link:hover {
    background: rgba(26, 32, 109, 0.05);
    color: #1A206D;
}

#mobile-menu .site-mobile-link,
#mobile-menu .site-mobile-parent-link {
    font-weight: 800;
}

#mobile-menu .site-mobile-submenu-link {
    font-weight: 600;
}

.site-mobile-search {
    position: relative;
    margin-top: 0.5rem;
}

.site-mobile-search-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid #111827;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    color: #1e293b;
    font-size: 0.875rem;
    outline: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(12px);
    transition: background 0.2s ease;
}

.site-mobile-search-input:focus {
    background: #ffffff;
}

.site-mobile-search-input::placeholder {
    color: #64748b;
}

.site-mobile-search-icon {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    width: 1rem;
    height: 1rem;
    color: #1e293b;
    transform: translateY(-50%);
}

.site-main {
    min-height: 100vh;
    padding-right: 1rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
}

.site-footer {
    position: relative;
    margin-top: auto;
    overflow: hidden;
    padding: 5rem 0 2.5rem;
    background: #050a14;
    color: #cbd5e1;
    font-family: Inter, system-ui, sans-serif;
}

.site-footer-bg,
.site-footer-curves,
.site-footer-flag-line {
    position: absolute;
    z-index: 0;
}

.site-footer-bg {
    inset: 0;
    background: linear-gradient(135deg, #020617, #050a14, #000000);
}

.site-footer-glow {
    position: absolute;
    z-index: 0;
    border-radius: 9999px;
    pointer-events: none;
    mix-blend-mode: screen;
}

.site-footer-glow-blue {
    top: 0;
    right: 0;
    width: 50rem;
    height: 50rem;
    background: rgba(30, 58, 138, 0.2);
    filter: blur(120px);
    opacity: 0.6;
    transform: translate(50%, -50%);
}

.site-footer-glow-red {
    bottom: 0;
    left: 0;
    width: 37.5rem;
    height: 37.5rem;
    background: rgba(127, 29, 29, 0.1);
    filter: blur(100px);
    opacity: 0.5;
    transform: translate(-33%, 50%);
}

.site-footer-curves {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

.site-footer-flag-line {
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(to right, #EA2839, #1A206D, #FFD500, #00A551);
    box-shadow: 0 0 25px rgba(234, 40, 57, 0.5);
}

.site-footer-inner {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.site-footer-brand-col,
.site-footer-menu-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.site-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.site-footer-brand:hover {
    transform: scale(1.05);
}

.site-footer-brand-logo {
    position: relative;
    flex: 0 0 auto;
    width: 7.8125rem;
    height: 2.5rem;
    aspect-ratio: 772 / 247;
}

.site-footer-brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(15, 23, 42, 0.12));
}

.site-footer-desc {
    margin: 0;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
}

.site-footer-menu-col h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: 0.025em;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-footer-menu-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    box-shadow: 0 0 10px currentColor;
}

.site-footer-menu-dot.theme-mauritius-red {
    background: #EA2839;
    color: #EA2839;
}

.site-footer-menu-dot.theme-mauritius-blue {
    background: #1A206D;
    color: #1A206D;
}

.site-footer-menu-dot.theme-mauritius-yellow {
    background: #FFD500;
    color: #FFD500;
}

.site-footer-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu-container ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding-left 0.3s cubic-bezier(0.4, 0, 0.2, 1), text-shadow 0.3s ease;
}

.footer-menu-container ul li a:hover {
    padding-left: 12px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-menu-container ul li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 2px;
    border-radius: 2px;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-menu-container ul li a:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.theme-mauritius-red ul li a:hover { color: #fca5a5; }
.theme-mauritius-red ul li a::before { background-color: #EA2839; }
.theme-mauritius-blue ul li a:hover { color: #93c5fd; }
.theme-mauritius-blue ul li a::before { background-color: #1A206D; }
.theme-mauritius-yellow ul li a:hover { color: #fde047; }
.theme-mauritius-yellow ul li a::before { background-color: #FFD500; }

.site-footer-bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #334155;
    font-size: 0.875rem;
}

.site-footer-credit {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.site-footer-copy {
    color: #e2e8f0;
    font-weight: 500;
}

.site-footer-copy span {
    color: #ffffff;
    font-weight: 800;
}

.site-footer-made {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: #cbd5e1;
    font-size: 0.75rem;
}

.site-footer-made svg {
    width: 0.75rem;
    height: 0.75rem;
    color: #EA2839;
    fill: currentColor;
}

.site-footer-actions {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.site-footer-legal {
    display: flex;
    gap: 1.5rem;
    color: #e2e8f0;
    font-weight: 500;
}

.site-footer-legal a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-legal a:hover {
    color: #ffffff;
}

.site-footer-action-divider {
    display: none;
    width: 1px;
    height: 1rem;
    background: #334155;
}

.site-footer-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.site-footer-social svg {
    width: 1rem;
    height: 1rem;
}

.site-footer-social:hover {
    transform: scale(1.05);
    background: #ffffff;
}

.site-footer-social-facebook:hover {
    color: #1877F2;
}

.site-footer-social-instagram:hover {
    color: #db2777;
}


@media (min-width: 768px) {
    .site-brand-logo {
        width: 12.5rem;
        height: 4rem;
    }

    .site-desktop-nav {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-top: 0.25rem;
        padding: 0.375rem 0.25rem 0.375rem 2rem;
        border: 1px solid rgba(226, 232, 240, 0.6);
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.4);
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
        backdrop-filter: blur(12px);
    }

    .site-user-menu {
        display: block;
    }

    .site-mobile-actions {
        display: none;
    }

    .site-mobile-panel {
        display: none !important;
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-right: 0;
        padding-left: 0;
    }

    .site-footer-bottom {
        flex-direction: row;
    }

    .site-footer-credit {
        order: 1;
        text-align: left;
    }

    .site-footer-made {
        justify-content: flex-start;
    }

    .site-footer-actions {
        order: 2;
        flex-direction: row;
        justify-content: flex-end;
        width: auto;
    }

    .site-footer-action-divider {
        display: block;
    }

}

@media (min-width: 1024px) {
    .site-footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .site-footer-brand-col {
        padding-right: 2rem;
    }
}

