body.page-blog .hh-blog-page,
body.page-blog-single .hh-blog-single {
    background: #f4f7fa;
}

.hh-blog-hero,
.hh-blog-article__header {
    position: relative;
    padding: clamp(96px, 12vw, 140px) 0 clamp(56px, 8vw, 80px);
    text-align: center;
    color: #ffffff;
    border-bottom: none;
    overflow: hidden;
}

.hh-blog-hero {
    background:
        linear-gradient(rgba(10, 17, 114, 0.72), rgba(0, 45, 78, 0.78)),
        url('../images/find-healthcare-talent-hero.jpg') center / cover no-repeat;
}

.hh-blog-article__header {
    min-height: clamp(360px, 48vw, 520px);
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(48px, 8vw, 64px);
    background:
        linear-gradient(rgba(10, 17, 114, 0.78), rgba(0, 45, 78, 0.84)),
        var(--hh-article-banner, url('../images/discover-role-hero2.jpg')) center / cover no-repeat;
}

.hh-blog-article__header-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 17, 114, 0.35) 0%, rgba(0, 45, 78, 0.88) 100%);
    pointer-events: none;
}

.hh-blog-hero .container,
.hh-blog-article__header-inner {
    position: relative;
    z-index: 1;
}

.hh-blog-eyebrow {
    margin: 0 0 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a7f3d0;
}

.hh-blog-title,
.hh-blog-article__title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
}

.hh-blog-lead {
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.hh-blog-list {
    padding: clamp(48px, 8vw, 80px) 0 clamp(72px, 10vw, 112px);
}

.hh-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 32px);
}

.hh-blog-card {
    height: 100%;
}

.hh-blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hh-blog-card__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.hh-blog-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e5e7eb;
}

.hh-blog-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hh-blog-card__link:hover .hh-blog-card__image {
    transform: scale(1.03);
}

.hh-blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 28px 28px;
}

.hh-blog-card__date {
    margin-bottom: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #14857e;
}

.hh-blog-card__title {
    margin: 0 0 12px;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    line-height: 1.35;
    color: #0a1172;
}

.hh-blog-card__excerpt {
    flex: 1;
    margin: 0 0 18px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4b5563;
}

.hh-blog-card__read-more {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0a1172;
}

.hh-blog-empty {
    text-align: center;
    color: #4b5563;
}

.hh-blog-list .navigation.pagination {
    margin-top: 48px;
}

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

.hh-blog-list .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-weight: 600;
    text-decoration: none;
    color: #0a1172;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}

.hh-blog-list .page-numbers.current,
.hh-blog-list .page-numbers:hover {
    color: #ffffff;
    background: #0a1172;
    border-color: #0a1172;
}

.hh-blog-article__header-inner {
    position: relative;
    z-index: 1;
    max-width: 52rem;
    margin: 0 auto;
}

.hh-blog-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
}

.hh-blog-breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
}

.hh-blog-breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.45);
}

.hh-blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.hh-blog-breadcrumb a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hh-blog-article__dek {
    max-width: 42rem;
    margin: 0 auto 28px;
    font-size: clamp(1rem, 1.8vw, 1.1875rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.hh-blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
}

.hh-blog-article__meta-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 120px;
    min-height: 72px;
    padding: 14px 18px;
    text-align: left;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hh-blog-article__meta-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.hh-blog-article__meta-group time,
.hh-blog-article__meta-group span:last-child {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

.hh-blog-article__body {
    position: relative;
    z-index: 2;
    padding: clamp(32px, 5vw, 48px) 0 clamp(72px, 10vw, 112px);
    margin-top: 0;
}

.hh-blog-article__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.hh-blog-article__main {
    min-width: 0;
}

.hh-blog-article__content {
    padding: clamp(32px, 4vw, 48px);
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.hh-blog-article__content > *:first-child {
    margin-top: 0;
}

.hh-blog-article__content > *:last-child {
    margin-bottom: 0;
}

.hh-blog-article__content h2,
.hh-blog-article__content h3 {
    margin: 1.75rem 0 0.75rem;
    color: #0a1172;
}

.hh-blog-article__content p,
.hh-blog-article__content li {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #374151;
}

.hh-blog-article__content ul,
.hh-blog-article__content ol {
    padding-left: 1.25rem;
}

.hh-blog-article__footer {
    margin-top: 28px;
}

.hh-blog-article__tags,
.hh-blog-article__share {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: center;
    margin-top: 28px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
}

.hh-blog-article__tags-label,
.hh-blog-article__share-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #14857e;
}

.hh-blog-article__tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hh-blog-article__tags a {
    display: inline-flex;
    padding: 6px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    color: #0a1172;
    background: #f4f7fa;
    border-radius: 999px;
}

.hh-blog-article__share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hh-blog-share-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    color: #0a1172;
    background: #f4f7fa;
    border: 1px solid #e8edf3;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hh-blog-share-link:hover {
    background: #ffffff;
    border-color: #0a1172;
}

.hh-blog-article__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.hh-blog-article__nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 22px;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hh-blog-article__nav-link:hover {
    border-color: #0a1172;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.hh-blog-article__nav-link--next {
    text-align: right;
}

.hh-blog-article__nav-direction {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #14857e;
}

.hh-blog-article__nav-title {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.45;
    color: #0a1172;
}

.hh-blog-aside-card {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.hh-blog-aside-card + .hh-blog-aside-card {
    margin-top: 20px;
}

.hh-blog-aside-card__title {
    margin: 0 0 18px;
    font-size: 1rem;
    font-weight: 800;
    color: #0a1172;
}

.hh-blog-aside-card__list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.hh-blog-aside-card__list div {
    display: grid;
    gap: 2px;
}

.hh-blog-aside-card__list dt {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #14857e;
}

.hh-blog-aside-card__list dd {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    color: #374151;
}

.hh-blog-related {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hh-blog-related a {
    display: grid;
    gap: 6px;
    padding-bottom: 14px;
    text-decoration: none;
    border-bottom: 1px solid #e8edf3;
}

.hh-blog-related li:last-child a {
    padding-bottom: 0;
    border-bottom: 0;
}

.hh-blog-related__title {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.45;
    color: #0a1172;
}

.hh-blog-related time {
    font-size: 0.8125rem;
    color: #6b7280;
}

.hh-blog-back {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    text-decoration: none;
    color: #0a1172;
}

.hh-blog-back:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (min-width: 901px) {
    .hh-blog-article__meta {
        display: none;
    }

    .hh-blog-article__header {
        padding-bottom: clamp(56px, 8vw, 72px);
    }
}

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

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

    .hh-blog-article__aside {
        order: 2;
    }

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

    .hh-blog-article__nav-link--next {
        text-align: left;
    }
}
