:root {
    --hh-color-primary: #1f8fd5;
    --hh-color-primary-dark: #006bb2;
    --hh-color-dark: #023675;
    --hh-color-text: #1d2733;
    --hh-color-muted: #6f7c8a;
    --hh-color-light: #eef9ff;
    --hh-color-white: #ffffff;
    --hh-color-border: #e6edf3;

    --hh-font-main: 'Outfit', sans-serif;
    /* --hh-font-main: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
    --hh-font-heading: var(--hh-font-main);
    --hh-font-body: var(--hh-font-main);

    --hh-container: 1490px;
    --hh-radius-sm: 8px;
    --hh-radius-md: 14px;
    --hh-radius-lg: 22px;

    --hh-shadow-soft: 0 14px 40px rgba(10, 45, 82, 0.08);
    --hh-gradient-primary: linear-gradient(90deg, #1E4D92 0%, #53A9DC 100%)
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--hh-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--hh-color-text);
    background: var(--hh-color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--hh-font-heading);
    color: var(--hh-color-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.hh-container {
    width: min(100% - 40px, var(--hh-container));
    margin: 0 auto;
}

/* Header */
.hh-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: var(--hh-color-white);
    box-shadow: 0 7px 29px rgba(100, 100, 111, 0.14);
    transition: all 0.3s ease-in-out;
}

body.admin-bar .hh-site-header {
    top: 32px;
}

.hh-header-container {
    width: min(100% - 40px, 1860px);
    margin: 0 auto;
}

.hh-header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.hh-site-logo {
    flex: 0 0 auto;
}

.hh-site-logo a {
    display: inline-flex;
    align-items: center;
}

.hh-site-logo img {
    max-width: 216px;
    max-height: 54px;
    width: auto;
    height: auto;
}

.hh-logo-text {
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    color: var(--hh-color-dark);
}

/* Primary menu */
.hh-primary-nav {
    margin-left: auto;
}

.hh-primary-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hh-primary-menu li {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hh-primary-menu > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--hh-color-dark);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hh-primary-menu > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--hh-color-primary);
    transform: translateX(-50%);
    transition: width 0.25s ease-in-out;
}

.hh-primary-menu > li.current-menu-item > a,
.hh-primary-menu > li.current-menu-ancestor > a,
.hh-primary-menu > li > a:hover {
    color: var(--hh-color-primary);
}

.hh-primary-menu > li.current-menu-item > a::after,
.hh-primary-menu > li.current-menu-ancestor > a::after,
.hh-primary-menu > li > a:hover::after {
    width: 100%;
}

/* Dropdown menu */
.hh-primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 210px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid var(--hh-color-border);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(10, 45, 82, 0.12);
}

.hh-primary-menu li:hover > .sub-menu {
    display: block;
}

.hh-primary-menu .sub-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--hh-color-dark);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    text-transform: none;
}

.hh-primary-menu .sub-menu a:hover,
.hh-primary-menu .sub-menu .current-menu-item > a {
    background: #edf8ff;
    color: var(--hh-color-primary);
}

.hh-primary-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* Header actions */
.hh-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.hh-login-signup-wrp {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hh-header-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 30px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.hh-header-btn-outline {
    border-color: var(--hh-color-dark);
    color: var(--hh-color-dark);
    background: transparent;
}

.hh-header-btn-outline:hover {
    border-color: #011c3e;
    background: #011c3e;
    color: #ffffff;
}

.hh-header-btn-gradient {
    border-color: transparent;
    background: linear-gradient(90deg, #1e4d92 0%, #53a9dc 100%);
    color: #ffffff;
}

.hh-header-btn-gradient:hover {
    background: #011c3e;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(45, 110, 165, 0.28);
}

/* Shine hover effect */
.hh-header-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0) 25%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 75%
    );
    pointer-events: none;
}

.hh-header-btn:hover::after {
    left: 110%;
    transition: left 0.5s ease-in-out;
}

/* Header shortcode / language switcher */
.hh-header-shortcode {
    display: flex;
    align-items: center;
}

.hh-header-shortcode select,
.hh-header-shortcode .gt_selector,
.hh-header-shortcode button,
.hh-header-shortcode .dropdown-toggle {
    min-height: 48px;
    width: auto;
    min-width: 86px;
    max-width: 170px;
    padding: 10px 36px 10px 18px;
    border: 1px solid var(--hh-color-dark);
    border-radius: 999px;
    background-color: #ffffff;
    color: var(--hh-color-dark);
    font-family: var(--hh-font-body);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
}

/* Mobile menu button */
.hh-mobile-menu-toggle {
    display: none;
    position: relative;
    flex: 0 0 auto;
    width: 38px;
    height: 34px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.hh-mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 7px auto;
    border-radius: 6px;
    background: var(--hh-color-dark);
    transition: all 0.25s ease-in-out;
}

.hh-mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hh-mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.hh-mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Main */
.hh-site-main {
    min-height: 60vh;
}

/* Footer */
.hh-site-footer {
    position: relative;
    background: #08254a;
    color: #ffffff;
    margin-top: 0;
}

/* Footer CTA */
.hh-footer-cta-wrap {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #08254a 50%, #08254a 100%);
    padding: 70px 0 50px;
}

.hh-footer-cta {
    min-height: 220px;
    padding: 58px 74px;
    border-radius: 26px;
    background: linear-gradient(90deg, #1E4D92 0%, #53A9DC 100%);
    box-shadow: 0 28px 70px rgba(4, 25, 51, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hh-footer-cta-content {
    max-width: 75%;
}

.hh-footer-cta h2 {
    margin: 0 0 20px;
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 500;
    color: #ffffff;
}

.hh-footer-cta p {
    margin: 0;
    max-width: 910px;
    font-size: 16px;
    /* line-height: 1.6; */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.96);
}

.hh-footer-cta-btn {
    min-width: 230px;
    min-height: 66px;
    padding: 8px 10px 8px 34px;
    border-radius: 999px;
    background: #ffffff;
    color: #31549f;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.hh-footer-cta-btn strong {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hh-gradient-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
}

/* Footer Main */
.hh-footer-main {
    padding: 80px 0 55px;
    background: #08254a;
}

.hh-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 1.05fr 1.05fr;
    gap: 70px;
    align-items: flex-start;
}

.hh-footer-logo img {
    max-width: 230px;
    height: auto;
}

.hh-footer-newsletter-text {
    margin: 36px 0 28px;
    max-width: 460px;
    font-size: 17px;
    line-height: 1.5;
    color: #ffffff;
}

.hh-footer-newsletter-form {
    max-width: 430px;
}

.hh-footer-email-field {
    min-height: 64px;
    padding: 0 24px;
    border: 1px solid rgba(118, 161, 218, 0.38);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hh-footer-email-icon {
    color: #ffffff;
    opacity: 0.9;
    font-size: 20px;
}

.hh-footer-email-field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
}

.hh-footer-email-field input::placeholder {
    color: #ffffff;
    opacity: 1;
}

.hh-footer-submit {
    margin-top: 24px;
    min-width: 200px;
    min-height: 58px;
    padding: 14px 36px;
    border: 0;
    border-radius: 999px;
    background: #5eaee2;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hh-footer-submit:hover {
    background: #ffffff;
    color: #31549f;
}

.hh-footer-links-col h3,
.hh-footer-contact-col h3 {
    margin: 0 0 28px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
}

.hh-footer-menu {
    display: grid;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hh-footer-menu a,
.hh-footer-phone-list a {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    transition: color 0.2s ease;
}

.hh-footer-menu a:hover,
.hh-footer-phone-list a:hover {
    color: #69bbed;
}

.hh-footer-phone-list {
    display: grid;
    gap: 18px;
}

.hh-footer-social-title {
    margin-top: 34px !important;
    margin-bottom: 24px !important;
}

.hh-footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hh-footer-socials a {
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.hh-footer-socials a:hover {
    background: #ffffff;
    color: #08254a;
}

.hh-footer-badges {
    max-width: 390px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.hh-footer-badge-link {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hh-footer-badge-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.hh-footer-badges img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

/* Footer Bottom */
.hh-footer-bottom {
    background: #08254a;
    padding: 24px 0 30px;
}

.hh-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hh-footer-bottom p,
.hh-footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.hh-footer-bottom a:hover {
    color: #ffffff;
}

/* Part 22 — Header Dynamic Controls */
.hh-site-header {
    background: var(--hh-header-bg, var(--hh-color-white));
    box-shadow: 0 7px 29px rgba(100, 100, 111, 0.14);
}

.hh-site-header.hh-header-not-sticky {
    position: relative;
    top: auto;
}

.hh-site-header.hh-header-no-shadow,
.hh-site-header.hh-header-no-shadow.is-scrolled {
    box-shadow: none;
}

.hh-site-header.hh-header-sticky.is-scrolled {
    background: var(--hh-header-sticky-bg, var(--hh-header-bg));
    box-shadow: 0 10px 34px rgba(10, 45, 82, 0.12);
}

.hh-header-container {
    width: min(100% - 40px, var(--hh-header-container-width, 1860px));
}

.hh-header-inner {
    min-height: var(--hh-header-height, 88px);
    transition: min-height 0.25s ease-in-out;
}

.hh-site-header.hh-header-can-shrink.is-scrolled .hh-header-inner {
    min-height: var(--hh-header-sticky-height, 72px);
}

.hh-site-logo img {
    max-width: var(--hh-header-logo-width, 216px);
    transition: max-width 0.25s ease-in-out;
}

.hh-primary-menu {
    gap: var(--hh-header-menu-gap, 32px);
}

.hh-primary-menu > li > a {
    color: var(--hh-header-menu-color, var(--hh-color-dark));
    font-size: var(--hh-header-menu-font-size, 16px);
    font-weight: var(--hh-header-menu-font-weight, 400);
    text-transform: var(--hh-header-menu-text-transform, uppercase);
}

.hh-primary-menu > li > a::after {
    background: var(--hh-header-menu-hover-color, var(--hh-color-primary));
}

.hh-primary-menu > li.current-menu-item > a,
.hh-primary-menu > li.current-menu-ancestor > a,
.hh-primary-menu > li > a:hover {
    color: var(--hh-header-menu-hover-color, var(--hh-color-primary));
}

.hh-primary-menu .sub-menu {
    background: var(--hh-header-submenu-bg, #ffffff);
}

.hh-primary-menu .sub-menu a {
    color: var(--hh-header-submenu-color, var(--hh-color-dark));
}

.hh-primary-menu .sub-menu a:hover,
.hh-primary-menu .sub-menu .current-menu-item > a {
    background: var(--hh-color-light);
    color: var(--hh-header-menu-hover-color, var(--hh-color-primary));
}

.hh-header-btn {
    border-radius: var(--hh-button-radius, 999px);
    font-size: var(--hh-button-font-size, 14px);
    font-weight: var(--hh-button-font-weight, 700);
}

.hh-header-btn-gradient {
    border-color: transparent;
    background: var(--hh-gradient-primary);
    color: #ffffff;
}

.hh-header-btn-outline {
    border-color: var(--hh-header-menu-color, var(--hh-color-dark));
    color: var(--hh-header-menu-color, var(--hh-color-dark));
    background: transparent;
}

.hh-header-btn-plain {
    min-height: auto;
    padding: 8px 0;
    border-color: transparent;
    color: var(--hh-header-menu-color, var(--hh-color-dark));
    background: transparent;
    box-shadow: none;
}

.hh-header-btn-outline:hover,
.hh-header-btn-plain:hover,
.hh-header-btn-gradient:hover {
    border-color: #011c3e;
    background: #011c3e;
    color: #ffffff;
}

.hh-header-shortcode select,
.hh-header-shortcode .gt_selector,
.hh-header-shortcode button,
.hh-header-shortcode .dropdown-toggle {
    border-color: var(--hh-header-menu-color, var(--hh-color-dark));
    color: var(--hh-header-menu-color, var(--hh-color-dark));
    background-color: var(--hh-header-bg, #ffffff);
}

.hh-mobile-menu-toggle span {
    background: var(--hh-header-mobile-toggle-color, var(--hh-color-dark));
}

.hh-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease-in-out;
}

body.hh-mobile-nav-open .hh-mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

html.hh-mobile-nav-open,
body.hh-mobile-nav-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hh-site-logo img {
        max-width: var(--hh-header-logo-width-mobile, 130px);
    }

    .hh-primary-nav {
        background: var(--hh-header-mobile-panel-bg, #ffffff);
    }

    .hh-primary-menu > li > a,
    .hh-primary-menu .sub-menu a {
        color: var(--hh-header-menu-color, var(--hh-color-dark));
    }

    .hh-header-actions {
        background: var(--hh-header-mobile-panel-bg, #ffffff);
    }
}

/* Part 24 — Blog / Single Post Dynamic Controls */
.hh-blog-archive,
.hh-single-post-screen {
    background: var(--hh-blog-archive-bg, #f7fbfe);
}

.hh-blog-archive-hero,
.hh-single-hero {
    padding: 92px 0 54px;
    text-align: center;
    background: linear-gradient(90deg, rgba(30, 77, 146, 0.08) 0%, rgba(83, 169, 220, 0.13) 100%);
}

.hh-blog-archive-hero h1,
.hh-single-hero h1 {
    max-width: 1050px;
    margin: 0 auto;
    color: var(--hh-color-dark);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.12;
    font-weight: var(--hh-heading-font-weight, 800);
    letter-spacing: -0.035em;
}

.hh-blog-archive-hero p,
.hh-single-hero p {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--hh-color-muted);
    font-size: 18px;
    line-height: 1.7;
}

.hh-blog-archive-inner,
.hh-single-post-inner {
    padding-top: 72px;
    padding-bottom: 110px;
}

.hh-blog-archive-grid {
    display: grid;
    grid-template-columns: 315px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.hh-blog-layout-grid-only .hh-blog-archive-grid {
    grid-template-columns: 1fr;
}

.hh-blog-sidebar-right .hh-blog-sidebar,
.hh-single-sidebar-right .hh-single-sidebar {
    order: 2;
}

.hh-blog-sidebar-right .hh-blog-main,
.hh-single-sidebar-right .hh-single-content-wrap {
    order: 1;
}

.hh-blog-sidebar {
    display: grid;
    gap: 24px;
}

.hh-blog-widget {
    padding: 28px;
    background: var(--hh-blog-sidebar-bg, #ffffff);
    border: 1px solid #e2edf5;
    border-radius: 20px;
    box-shadow: 0 12px 38px rgba(10, 45, 82, 0.04);
}

.hh-blog-widget h3 {
    margin: 0 0 18px;
    color: var(--hh-color-dark);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.hh-blog-search-form {
    display: grid;
    gap: 12px;
}

.hh-blog-search-form input[type="search"] {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    border: 1px solid #dceaf4;
    border-radius: 12px;
    color: var(--hh-color-dark);
    font: inherit;
    outline: none;
    background: #ffffff;
}

.hh-blog-search-form input[type="search"]:focus {
    border-color: var(--hh-color-primary);
    box-shadow: 0 0 0 3px rgba(83, 169, 220, 0.13);
}

.hh-blog-search-form button {
    min-height: 50px;
    border: 0;
    border-radius: var(--hh-button-radius, 40px);
    background: var(--hh-gradient-primary);
    color: #ffffff;
    font-size: var(--hh-button-font-size, 13px);
    font-weight: var(--hh-button-font-weight, 800);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.hh-blog-category-list,
.hh-blog-recent-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hh-blog-category-list li + li,
.hh-blog-recent-list li + li {
    margin-top: 8px;
}

.hh-blog-category-list a,
.hh-blog-recent-list a {
    min-height: 42px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-radius: 10px;
    background: #f7fbff;
    color: var(--hh-color-muted);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    transition: all 0.2s ease;
}

.hh-blog-category-list em {
    font-style: normal;
    opacity: 0.75;
}

.hh-blog-category-list a:hover,
.hh-blog-category-list .is-active a,
.hh-blog-recent-list a:hover {
    background: var(--hh-gradient-primary);
    color: #ffffff;
}

.hh-blog-post-grid {
    display: grid;
    gap: 30px;
}

.hh-blog-columns-1 .hh-blog-post-grid {
    grid-template-columns: 1fr;
}

.hh-blog-columns-2 .hh-blog-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hh-blog-columns-3 .hh-blog-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hh-blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--hh-blog-card-bg, #ffffff);
    border: 1px solid #e2edf5;
    border-radius: var(--hh-blog-card-radius, 25px);
    box-shadow: 0 12px 34px rgba(10, 45, 82, 0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hh-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(10, 45, 82, 0.11);
}

.hh-blog-card-image {
    position: relative;
    display: block;
    height: var(--hh-blog-card-image-height, 260px);
    overflow: hidden;
    background: #dceff9;
}

.hh-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hh-blog-card:hover .hh-blog-card-image img {
    transform: scale(1.05);
}

.hh-blog-card-image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hh-color-muted);
    font-weight: 800;
}

.hh-blog-card-content {
    padding: 26px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.hh-blog-card-category,
.hh-single-category {
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 13px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #edf8ff;
    color: var(--hh-color-primary);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hh-single-category {
    margin-right: auto;
    margin-left: auto;
}

.hh-blog-card-category:hover,
.hh-single-category:hover {
    background: var(--hh-color-primary);
    color: #ffffff;
}

.hh-blog-card-title {
    margin: 0 0 13px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--hh-color-dark);
}

.hh-blog-card-title a:hover {
    color: var(--hh-color-primary);
}

.hh-blog-card-meta,
.hh-single-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    color: var(--hh-color-muted);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.hh-blog-card-meta {
    justify-content: flex-start;
    margin-bottom: 14px;
}

.hh-blog-card-excerpt {
    margin: 0 0 22px;
    color: var(--hh-color-muted);
    font-size: 15px;
    line-height: 1.65;
}

.hh-blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--hh-color-primary);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hh-blog-card-link span {
    transition: transform 0.2s ease;
}

.hh-blog-card-link:hover span {
    transform: translateX(4px);
}

.hh-blog-pagination {
    margin-top: 44px;
}

.hh-blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hh-blog-pagination a,
.hh-blog-pagination span {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #dceaf4;
    background: #ffffff;
    color: var(--hh-color-muted);
    font-weight: 800;
}

.hh-blog-pagination a:hover,
.hh-blog-pagination .current {
    background: var(--hh-gradient-primary);
    border-color: transparent;
    color: #ffffff;
}

.hh-blog-empty {
    padding: 44px;
    background: #ffffff;
    border: 1px solid #e2edf5;
    border-radius: var(--hh-blog-card-radius, 25px);
    text-align: center;
}

/* Single post */
.hh-single-post-inner {
    max-width: var(--hh-single-content-width, 1320px);
}

.hh-single-featured {
    margin: 0 0 42px;
    border-radius: var(--hh-blog-card-radius, 25px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 45, 82, 0.08);
}

.hh-single-featured img {
    width: 100%;
    height: var(--hh-single-featured-image-height, 520px);
    object-fit: cover;
}

.hh-single-grid {
    display: grid;
    grid-template-columns: 315px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.hh-single-layout-full-width .hh-single-grid {
    grid-template-columns: 1fr;
}

.hh-single-sidebar {
    display: grid;
    gap: 24px;
}

.hh-single-side-card,
.hh-single-content-card,
.hh-single-author-box,
.hh-single-nav-item,
.hh-related-card {
    background: #ffffff;
    border: 1px solid #e2edf5;
    border-radius: var(--hh-blog-card-radius, 25px);
    box-shadow: 0 14px 42px rgba(10, 45, 82, 0.045);
}

.hh-single-side-card {
    padding: 30px;
}

.hh-single-side-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hh-single-side-card li {
    padding: 18px 0;
    border-bottom: 1px solid #edf2f6;
}

.hh-single-side-card li:first-child {
    padding-top: 0;
}

.hh-single-side-card li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hh-single-side-card span,
.hh-single-tags span,
.hh-single-author-box span,
.hh-single-post-nav span {
    display: block;
    margin-bottom: 7px;
    color: var(--hh-color-primary);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hh-single-side-card strong {
    display: block;
    color: var(--hh-color-dark);
    font-weight: 700;
}

.hh-single-content-card {
    padding: 52px 56px;
}

.hh-single-content h1,
.hh-single-content h2,
.hh-single-content h3,
.hh-single-content h4,
.hh-single-content h5,
.hh-single-content h6 {
    margin-top: 34px;
    margin-bottom: 16px;
    color: var(--hh-color-dark);
}

.hh-single-content h1:first-child,
.hh-single-content h2:first-child,
.hh-single-content h3:first-child {
    margin-top: 0;
}

.hh-single-content p,
.hh-single-content li {
    color: var(--hh-color-muted);
    font-size: 18px;
    line-height: 1.78;
}

.hh-single-content ul,
.hh-single-content ol {
    margin: 0 0 26px;
    padding-left: 26px;
}

.hh-single-content li {
    margin-bottom: 10px;
}

.hh-single-content a {
    color: var(--hh-color-primary);
    font-weight: 700;
    text-decoration: underline;
}

.hh-single-content blockquote {
    margin: 32px 0;
    padding: 28px 32px;
    border-left: 4px solid var(--hh-color-primary);
    border-radius: 12px;
    background: #edf8ff;
}

.hh-single-content img {
    border-radius: 16px;
}

.hh-single-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding-top: 30px;
    border-top: 1px solid #edf2f6;
}

.hh-single-tags span {
    margin: 0 8px 0 0;
}

.hh-single-tags a {
    padding: 8px 14px;
    border-radius: 999px;
    background: #edf8ff;
    color: var(--hh-color-muted);
    font-size: 13px;
    font-weight: 700;
}

.hh-single-tags a:hover {
    background: var(--hh-color-primary);
    color: #ffffff;
}

.hh-single-author-box {
    margin-top: 28px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hh-single-author-avatar {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--hh-gradient-primary);
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.hh-single-author-box h2 {
    margin: 0 0 8px;
    color: var(--hh-color-dark);
    font-size: 24px;
}

.hh-single-author-box p {
    margin: 0;
    color: var(--hh-color-muted);
}

.hh-single-post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.hh-single-nav-item {
    min-height: 120px;
    padding: 26px;
}

.hh-single-nav-next {
    text-align: right;
}

.hh-single-nav-item a {
    display: block;
    color: var(--hh-color-dark);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.hh-single-nav-item a:hover {
    color: var(--hh-color-primary);
}

.hh-single-related {
    margin-top: 78px;
}

.hh-single-related-head {
    margin-bottom: 28px;
    text-align: center;
}

.hh-single-related-head h2 {
    margin: 0;
    color: var(--hh-color-dark);
    font-size: clamp(28px, 3vw, 42px);
}

.hh-single-related-grid {
    display: grid;
    gap: 28px;
}

.hh-related-columns-1 .hh-single-related-grid {
    grid-template-columns: 1fr;
}

.hh-related-columns-2 .hh-single-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hh-related-columns-3 .hh-single-related-grid,
.hh-related-columns-4 .hh-single-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hh-related-card {
    overflow: hidden;
}

.hh-related-image {
    display: block;
    height: 190px;
    overflow: hidden;
    background: #dceff9;
}

.hh-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh-related-content {
    padding: 22px;
}

.hh-related-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
}

.hh-related-content a:hover {
    color: var(--hh-color-primary);
}

.hh-related-content time {
    color: var(--hh-color-muted);
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .hh-blog-columns-3 .hh-blog-post-grid,
    .hh-related-columns-4 .hh-single-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .hh-blog-archive-grid,
    .hh-single-grid {
        grid-template-columns: 1fr;
    }

    .hh-blog-sidebar-right .hh-blog-sidebar,
    .hh-single-sidebar-right .hh-single-sidebar,
    .hh-blog-sidebar-right .hh-blog-main,
    .hh-single-sidebar-right .hh-single-content-wrap {
        order: initial;
    }

    .hh-blog-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hh-single-sidebar {
        grid-template-columns: 1fr;
    }

    .hh-single-side-card ul {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .hh-single-side-card li {
        padding: 0;
        border-bottom: 0;
        border-right: 1px solid #edf2f6;
    }

    .hh-single-side-card li:last-child {
        border-right: 0;
    }
}

@media (max-width: 767px) {
    .hh-blog-archive-hero,
    .hh-single-hero {
        padding: 58px 0 36px;
        text-align: left;
    }

    .hh-single-category {
        margin-left: 0;
    }

    .hh-single-meta {
        justify-content: flex-start;
    }

    .hh-blog-archive-inner,
    .hh-single-post-inner {
        padding-top: 46px;
        padding-bottom: 70px;
    }

    .hh-blog-sidebar,
    .hh-blog-columns-1 .hh-blog-post-grid,
    .hh-blog-columns-2 .hh-blog-post-grid,
    .hh-blog-columns-3 .hh-blog-post-grid,
    .hh-single-related-grid,
    .hh-related-columns-1 .hh-single-related-grid,
    .hh-related-columns-2 .hh-single-related-grid,
    .hh-related-columns-3 .hh-single-related-grid,
    .hh-related-columns-4 .hh-single-related-grid {
        grid-template-columns: 1fr;
    }

    .hh-single-featured img {
        height: 280px;
    }

    .hh-single-side-card ul {
        display: block;
    }

    .hh-single-side-card li {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid #edf2f6;
    }

    .hh-single-content-card {
        padding: 30px 22px;
    }

    .hh-single-content p,
    .hh-single-content li {
        font-size: 16px;
    }

    .hh-single-author-box {
        display: block;
    }

    .hh-single-author-avatar {
        margin-bottom: 16px;
    }

    .hh-single-post-nav {
        grid-template-columns: 1fr;
    }

    .hh-single-nav-next {
        text-align: left;
    }
}


/**
 * Footer legal menu links.
 */

.hh-footer-bottom-row {
    gap: 18px;
}

.hh-footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hh-footer-legal-menu {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    list-style: none;
}

.hh-footer-legal-menu li {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
}

.hh-footer-legal-menu li:not(:last-child)::after {
    content: "|";
    margin: 0 9px;
    color: currentColor;
    opacity: 0.65;
}

.hh-footer-legal-menu a {
    color: inherit;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.hh-footer-legal-menu a:hover {
    color: var(--hh-footer-link-hover-color, var(--blue-color, #53A9DC));
}

@media (max-width: 767px) {
    .hh-footer-bottom-row {
        text-align: center;
    }

    .hh-footer-legal-links,
    .hh-footer-legal-menu {
        justify-content: center;
    }
}