:root {
    --site-accent: #ff7018;
    --site-accent-deep: #d65a10;
    --site-ink: #141922;
    --site-ink-soft: #56606f;
    --site-line: rgba(20, 25, 34, 0.1);
    --site-shadow: 0 18px 40px rgba(20, 25, 34, 0.12);
    --site-shadow-strong: 0 28px 60px rgba(0, 0, 0, 0.24);
    --site-footer-bg: #0d1015;
    --site-footer-card: rgba(255, 255, 255, 0.05);
    --site-footer-line: rgba(255, 255, 255, 0.08);
}

.site-header-refresh *,
.site-footer-refresh * {
    box-sizing: border-box;
}

.site-header-refresh .site-header-shell::after {
    clear: both;
    content: "";
    display: block;
}

.site-header-refresh .navbar-default {
    background: linear-gradient(180deg, #fffefb 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(20, 25, 34, 0.08);
    box-shadow: 0 10px 28px rgba(20, 25, 34, 0.08);
}

.site-header-refresh .site-header-panel {
    padding-left: 0;
    padding-right: 0;
}

.site-header-refresh .site-header-cta {
    align-items: center;
    background: linear-gradient(180deg, #ff8b3d 0%, var(--site-accent) 100%);
    border: 1px solid rgba(214, 90, 16, 0.55);
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(255, 112, 24, 0.18);
    color: #ffffff !important;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    line-height: 1;
    min-height: 42px;
    min-width: 156px;
    padding: 0 18px;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
    white-space: nowrap;
}

.site-header-refresh .site-header-cta:hover,
.site-header-refresh .site-header-cta:focus {
    box-shadow: 0 12px 22px rgba(255, 112, 24, 0.22);
    filter: saturate(1.05);
    text-decoration: none;
    transform: translateY(-1px);
}

.site-header-refresh .site-header-search form {
    margin: 0;
}

.site-header-refresh .site-header-search__controls {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 25, 34, 0.12);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(20, 25, 34, 0.06);
    display: flex;
    overflow: hidden;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.site-header-refresh .site-header-search__controls:focus-within {
    border-color: rgba(255, 112, 24, 0.45);
    box-shadow:
        0 12px 22px rgba(20, 25, 34, 0.1),
        0 0 0 4px rgba(255, 112, 24, 0.12);
}

.site-header-refresh .site-header-search input[type="text"] {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--site-ink);
    font-size: 15px;
    margin: 0;
    min-height: 42px;
    padding: 0 14px;
}

.site-header-refresh .site-header-search input[type="text"]::placeholder {
    color: #7b8693;
}

.site-header-refresh .site-header-search input[type="text"]:focus,
.site-header-refresh .site-header-search input[type="text"]:active {
    outline: none !important;
}

.site-header-refresh .site-header-search input[type="submit"] {
    background: linear-gradient(180deg, #fff8f2 0%, #fff0e5 100%);
    border: 0;
    border-left: 1px solid rgba(20, 25, 34, 0.09);
    border-radius: 0;
    color: var(--site-ink);
    font-size: 14px;
    font-weight: 700;
    margin-left: 0;
    min-height: 42px;
    padding: 0 14px;
    transition:
        background-color 180ms ease,
        color 180ms ease;
}

.site-header-refresh .site-header-search input[type="submit"]:hover,
.site-header-refresh .site-header-search input[type="submit"]:focus {
    background: linear-gradient(180deg, #ffe7d5 0%, #ffd7bb 100%);
    color: var(--site-accent-deep);
}

@media (min-width: 1025px) {
    .site-header-refresh .navbar {
        min-height: 94px;
    }

    .site-header-refresh .site-header-branding {
        align-items: center;
        display: flex;
        min-height: 94px;
    }

    .site-header-refresh .navbar-brand {
        align-items: center;
        display: inline-flex;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .site-header-refresh .header_logo {
        display: block;
        filter: drop-shadow(0 8px 16px rgba(255, 112, 24, 0.12));
        max-width: 100%;
        position: relative;
        top: auto;
        width: clamp(220px, 18vw, 300px);
    }

    .site-header-refresh .header_right {
        padding-right: 0;
        padding-top: 0;
    }

    .site-header-refresh .site-header-utility {
        clear: right;
        float: right;
        margin-top: 20px;
        padding-bottom: 8px;
    }

    .site-header-refresh .site-header-utility__inner {
        align-items: center;
        display: flex;
        gap: 12px;
        justify-content: flex-end;
    }

    .site-header-refresh .site-header-utility__inner .site-header-cta,
    .site-header-refresh .site-header-utility__inner .site-header-search {
        float: none;
        padding-top: 0;
    }

    .site-header-refresh .site-header-search input[type="text"] {
        min-width: 210px;
    }
}

@media (max-width: 1024px) {
    .site-header-refresh .navbar-toggle {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 14px;
        transition:
            background-color 180ms ease,
            border-color 180ms ease;
    }

    .site-header-refresh .navbar-toggle:hover,
    .site-header-refresh .navbar-toggle:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.34);
    }
}

.site-footer-refresh {
    background: linear-gradient(180deg, #151a21 0%, var(--site-footer-bg) 100%);
    color: #eef3f8;
    float: left;
    position: relative;
    width: 100%;
}

.site-footer-refresh a {
    color: #f7f9fc;
    transition:
        color 180ms ease,
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.site-footer-refresh a:hover,
.site-footer-refresh a:focus {
    color: #ffad71;
    text-decoration: none;
}

.site-footer-eyebrow {
    color: #ffb27b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.site-footer-social {
    background: linear-gradient(180deg, #fff8f1 0%, #fffefb 100%);
    border-top: 4px solid var(--site-accent);
    border-bottom: 1px solid rgba(20, 25, 34, 0.08);
    color: var(--site-ink);
    float: left;
    padding: 28px 0 30px;
    width: 100%;
}

.site-footer-social .container-fluid {
    margin: 0 auto;
    padding: 0;
    width: min(1180px, calc(100% - 32px));
}

.site-footer-social__grid {
    align-items: stretch;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.site-footer-social__grid--single {
    margin: 0 auto;
    max-width: 460px;
}

.site-footer-social__widget .left_sidebar_area,
.site-footer-social__center {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(20, 25, 34, 0.08);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(20, 25, 34, 0.08);
    min-height: 100%;
    padding: 24px;
}

.site-footer-social__center {
    background: linear-gradient(145deg, #171c25 0%, #0f131a 100%);
    color: #ffffff;
    text-align: center;
}

.site-footer-social__center h2 {
    color: #ffffff;
    font-family: "Oswald", Arial, sans-serif;
    font-size: clamp(24px, 2.2vw, 30px);
    line-height: 1.05;
    margin: 0 0 10px;
}

.site-footer-social__center p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 32ch;
}

.site-footer-social__link {
    align-items: center;
    background: linear-gradient(180deg, #ff8b3d 0%, var(--site-accent) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-shadow: 0 18px 32px rgba(255, 112, 24, 0.26);
    color: #ffffff !important;
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
    min-height: 50px;
    padding: 0 22px;
}

.site-footer-social__link:hover,
.site-footer-social__link:focus {
    color: #ffffff !important;
    transform: translateY(-1px);
}

.site-footer-social__link .fa {
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.site-footer-upper {
    background: transparent;
    border-top: 0;
    color: #d9e1ea;
    float: left;
    padding: 36px 0 24px;
    width: 100%;
}

.site-footer-upper .container {
    width: min(1180px, calc(100% - 32px));
}

.site-footer-upper__row {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: 0;
    margin-right: 0;
}

.site-footer-upper__row::before,
.site-footer-upper__row::after {
    display: none;
}

.site-footer-column {
    float: none;
    margin-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
    width: auto;
}

.site-footer-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: none;
    min-height: 0;
    padding: 24px;
}

.site-footer-card h2 {
    border-bottom: 0;
    color: #ffffff;
    font-family: "Oswald", Arial, sans-serif;
    font-size: clamp(22px, 1.8vw, 28px);
    line-height: 1.12;
    margin: 0 0 14px;
    padding-bottom: 0;
}

.site-footer-card h2 a {
    color: inherit;
}

.site-footer-card__copy {
    color: #d3dbe5;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.site-footer-links {
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-links li {
    margin: 0;
    padding: 0;
}

.site-footer-links a {
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    display: flex;
    font-size: 15px;
    justify-content: space-between;
    min-height: 0;
    padding: 12px 0;
}

.site-footer-links a:hover,
.site-footer-links a:focus {
    background: transparent;
    border-color: rgba(255, 173, 113, 0.38);
    padding-left: 4px;
}

.site-footer-links a::after {
    color: #ffad71;
    content: "\2192";
    font-size: 13px;
}

.site-footer-latest-list {
    display: grid;
    gap: 0;
}

.site-footer-refresh .site-footer-post {
    align-items: center;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    display: flex;
    float: none;
    gap: 12px;
    margin-left: 0 !important;
    margin-bottom: 0;
    margin-right: 0 !important;
    padding: 14px 0;
    width: 100%;
}

.site-footer-refresh .site-footer-post:first-child {
    border-top: 0;
    padding-top: 2px;
}

.site-footer-refresh .site-footer-post__image {
    flex: 0 0 68px;
    margin-top: 0;
    padding-right: 0;
    width: 68px;
}

.site-footer-refresh .site-footer-post__image img {
    border-radius: 14px;
    display: block;
    height: 68px;
    object-fit: cover;
    width: 68px;
}

.site-footer-refresh .site-footer-post__content {
    flex: 1 1 auto;
    float: none;
    min-width: 0;
    width: auto;
}

.site-footer-post__eyebrow {
    color: #ffb27b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.site-footer-refresh .site-footer-post h3 {
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
}

.site-footer-refresh .site-footer-post h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.site-footer-lower {
    background: rgba(5, 7, 10, 0.92);
    border-top: 1px solid var(--site-footer-line);
    float: left;
    padding: 14px 0 16px;
    width: 100%;
}

.site-footer-lower__row {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.site-footer-lower__nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.site-footer-lower__nav li {
    border-right: 0;
    display: block;
    line-height: normal;
    padding: 0;
}

.site-footer-lower__nav a {
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    display: inline-flex;
    gap: 8px;
    min-height: 0;
    padding: 0 0 2px;
}

.site-footer-lower__nav a:hover,
.site-footer-lower__nav a:focus {
    background: transparent;
    border-color: rgba(255, 173, 113, 0.4);
}

.site-footer-lower__nav img {
    height: 14px;
    object-fit: contain;
    width: 14px;
}

.site-footer-lower__copy p {
    color: #c8d1db;
    font-size: 13px;
    margin: 0;
}

@media (min-width: 1200px) {
    .site-footer-upper__row {
        gap: 32px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr) minmax(0, 1.08fr);
    }
}

@media (max-width: 991px) {
    .site-footer-card {
        border-radius: 24px;
        padding: 24px;
    }

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

    .site-footer-lower__row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .site-footer-upper {
        padding: 34px 0 22px;
    }

    .site-footer-upper__row {
        grid-template-columns: minmax(0, 1fr);
    }

    .site-footer-column {
        margin-bottom: 18px;
    }

    .site-footer-refresh .site-footer-post__image,
    .site-footer-refresh .site-footer-post__image img {
        flex-basis: 56px;
        height: 56px;
        width: 56px;
    }

    .site-footer-lower__nav ul {
        justify-content: center;
        text-align: center;
    }

    .site-footer-lower__copy {
        text-align: center;
        width: 100%;
    }
}
