
:root {
    --vr-navy: #182454;
    --vr-navy-deep: #101936;
    --vr-gold: #DAB66A;
    --vr-ink: #20263a;
    --vr-muted: #6d7382;
    --vr-line: #e7e9ef;
    --vr-soft: #f6f7fa;
    --vr-white: #ffffff;
}

.vr-latest-posts,
.vr-blog-archive,
.vr-single-page {
    font-family: "Roboto", Arial, sans-serif;
    color: var(--vr-ink);
}

.vr-latest-posts *,
.vr-blog-archive *,
.vr-single-page * {
    box-sizing: border-box;
}

.vr-section-shell {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.vr-latest-posts {
    padding: 90px 0;
    background: #fff;
}

.vr-section-heading {
    margin-bottom: 38px;
}

.vr-section-heading--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.vr-section-heading h2,
.vr-archive-heading h2 {
    margin: 8px 0 12px;
    color: var(--vr-navy);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 300;
}

.vr-section-heading p,
.vr-archive-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--vr-muted);
    font-size: 15px;
    line-height: 1.75;
}

.vr-section-eyebrow {
    color: var(--vr-gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vr-view-all,
.vr-filter-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 25px;
    border: 1px solid var(--vr-navy);
    background: var(--vr-navy);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    transition: .3s ease;
}

.vr-view-all:hover,
.vr-filter-submit:hover {
    border-color: var(--vr-gold);
    background: var(--vr-gold);
    color: var(--vr-navy) !important;
    transform: translateY(-2px);
}

.vr-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.vr-post-card {
    overflow: hidden;
    border: 1px solid var(--vr-line);
    background: #fff;
    box-shadow: 0 12px 45px rgba(16, 25, 54, .07);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.vr-post-card:hover {
    transform: translateY(-7px);
    border-color: rgba(218, 182, 106, .7);
    box-shadow: 0 20px 55px rgba(16, 25, 54, .13);
}

.vr-post-card__image-link {
    position: relative;
    display: block;
    height: 245px;
    overflow: hidden;
    background: var(--vr-soft);
}

.vr-post-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease;
}

.vr-post-card:hover .vr-post-card__image {
    transform: scale(1.055);
}

.vr-post-card__category {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    background: rgba(24, 36, 84, .86);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .7px;
    text-transform: uppercase;
    transition: .3s ease;
}

.vr-post-card:hover .vr-post-card__category {
    background: var(--vr-gold);
    color: var(--vr-navy);
    transform: translateY(-2px);
}

.vr-post-card__body {
    padding: 27px;
}

.vr-post-card__meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: #858a98;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.vr-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--vr-gold);
}

.vr-post-card__title {
    margin: 0 0 13px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 500;
}

.vr-post-card__title a {
    color: var(--vr-navy) !important;
    text-decoration: none !important;
}

.vr-post-card__excerpt {
    min-height: 73px;
    margin: 0 0 20px;
    color: var(--vr-muted);
    font-size: 14px;
    line-height: 1.72;
}

.vr-post-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--vr-navy) !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.vr-post-card__read-more span {
    color: var(--vr-gold);
    transition: transform .25s ease;
}

.vr-post-card__read-more:hover span {
    transform: translateX(4px);
}

.vr-mobile-view-all {
    display: none;
    margin-top: 28px;
    text-align: center;
}

/* Archive */
.vr-blog-archive {
    padding: 70px 0 100px;
    background: #fff;
}

.vr-archive-heading {
    max-width: 850px;
    margin-bottom: 36px;
}

.vr-blog-filters {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, minmax(130px, .75fr)) auto;
    gap: 14px;
    align-items: end;
    padding: 22px;
    border: 1px solid var(--vr-line);
    background: var(--vr-soft);
}

.vr-filter-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--vr-navy);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.vr-filter-field input,
.vr-filter-field select {
    width: 100%;
    height: 46px;
    padding: 0 13px;
    border: 1px solid #dfe2ea;
    border-radius: 0;
    outline: none;
    background: #fff;
    color: var(--vr-ink);
    font: inherit;
    font-size: 13px;
}

.vr-filter-field input:focus,
.vr-filter-field select:focus {
    border-color: var(--vr-gold);
    box-shadow: 0 0 0 3px rgba(218, 182, 106, .13);
}

.vr-search-wrap {
    position: relative;
}

.vr-search-wrap svg {
    position: absolute;
    top: 50%;
    left: 13px;
    width: 17px;
    height: 17px;
    transform: translateY(-50%);
    fill: none;
    stroke: #7b8190;
    stroke-width: 1.8;
}

.vr-search-wrap input {
    padding-left: 40px;
}

.vr-filter-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vr-filter-submit {
    height: 46px;
    border: 0;
    cursor: pointer;
}

.vr-filter-reset {
    color: var(--vr-muted) !important;
    font-size: 12px;
    text-decoration: underline !important;
}

.vr-results-summary {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0;
    color: var(--vr-muted);
    font-size: 12px;
}

.vr-pagination {
    margin-top: 46px;
}

.vr-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vr-pagination a,
.vr-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    border: 1px solid var(--vr-line);
    color: var(--vr-navy) !important;
    text-decoration: none !important;
    font-size: 12px;
}

.vr-pagination .current,
.vr-pagination a:hover {
    border-color: var(--vr-navy);
    background: var(--vr-navy);
    color: #fff !important;
}

.vr-empty-state {
    padding: 60px 25px;
    border: 1px solid var(--vr-line);
    background: var(--vr-soft);
    text-align: center;
}

.vr-empty-state h3 {
    margin: 0 0 10px;
    color: var(--vr-navy);
}

/* Single post */
.vr-single-page {
    background: #fff;
}

.vr-single-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.vr-single-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,25,54,.98), rgba(24,36,84,.86) 48%, rgba(24,36,84,.36));
}

.vr-single-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 90px 0 62px;
}

.vr-single-category {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--vr-gold);
    color: var(--vr-navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.vr-single-title {
    max-width: 940px;
    margin: 0 0 23px;
    color: #fff;
    font-size: clamp(38px, 5.8vw, 72px);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -2px;
}

.vr-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
}

.vr-single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.vr-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 58px;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0 95px;
}

.vr-single-content {
    min-width: 0;
}

.vr-single-content > *:first-child {
    margin-top: 0;
}

.vr-single-content p,
.vr-single-content li {
    color: #4f5667;
    font-size: 16px;
    line-height: 1.9;
}

.vr-single-content h2,
.vr-single-content h3,
.vr-single-content h4 {
    color: var(--vr-navy);
    line-height: 1.25;
}

.vr-single-content h2 {
    margin: 48px 0 18px;
    font-size: 34px;
    font-weight: 400;
}

.vr-single-content h3 {
    margin: 38px 0 15px;
    font-size: 25px;
}

.vr-single-content img {
    max-width: 100%;
    height: auto;
}

.vr-single-content blockquote {
    margin: 38px 0;
    padding: 28px 32px;
    border-left: 3px solid var(--vr-gold);
    background: var(--vr-soft);
}

.vr-share-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--vr-line);
}

.vr-share-label {
    margin-right: 8px;
    color: var(--vr-navy);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.vr-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--vr-line);
    color: var(--vr-navy) !important;
    text-decoration: none !important;
    font-size: 11px;
    transition: .25s ease;
}

.vr-share-link:hover {
    border-color: var(--vr-gold);
    background: var(--vr-gold);
}

.vr-single-sidebar {
    align-self: start;
    position: sticky;
    top: 120px;
}

.vr-sidebar-box {
    padding: 27px;
    border: 1px solid var(--vr-line);
    background: var(--vr-soft);
}

.vr-sidebar-title {
    margin: 0 0 22px;
    color: var(--vr-navy);
    font-size: 21px;
    font-weight: 400;
}

.vr-side-post {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 13px;
    padding: 14px 0;
    border-top: 1px solid #e1e4eb;
    text-decoration: none !important;
}

.vr-side-post:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.vr-side-post img {
    width: 78px;
    height: 68px;
    object-fit: cover;
}

.vr-side-post__title {
    display: block;
    color: var(--vr-navy);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.vr-side-post__date {
    display: block;
    margin-top: 6px;
    color: #858a98;
    font-size: 10px;
    text-transform: uppercase;
}

.vr-sidebar-cta {
    margin-top: 22px;
    padding: 28px;
    background: var(--vr-navy);
    color: #fff;
}

.vr-sidebar-cta h3 {
    margin: 0 0 10px;
    font-size: 23px;
    font-weight: 300;
}

.vr-sidebar-cta p {
    margin: 0 0 18px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    line-height: 1.65;
}

.vr-sidebar-cta a {
    display: inline-flex;
    padding: 11px 15px;
    background: var(--vr-gold);
    color: var(--vr-navy) !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .vr-blog-filters {
        grid-template-columns: repeat(3, 1fr);
    }
    .vr-filter-field--search {
        grid-column: span 2;
    }
    .vr-filter-actions {
        align-self: end;
    }
}

@media (max-width: 900px) {
    .vr-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .vr-single-layout {
        grid-template-columns: 1fr;
    }
    .vr-single-sidebar {
        position: static;
    }
}

@media (max-width: 650px) {
    .vr-section-shell,
    .vr-single-layout,
    .vr-single-hero__inner {
        width: min(100% - 30px, 1280px);
    }
    .vr-latest-posts,
    .vr-blog-archive {
        padding: 58px 0;
    }
    .vr-section-heading--split {
        display: block;
    }
    .vr-section-heading--split > .vr-view-all {
        display: none;
    }
    .vr-mobile-view-all {
        display: block;
    }
    .vr-post-grid {
        grid-template-columns: 1fr;
    }
    .vr-post-card__image-link {
        height: 225px;
    }
    .vr-blog-filters {
        grid-template-columns: 1fr;
        padding: 17px;
    }
    .vr-filter-field--search {
        grid-column: auto;
    }
    .vr-filter-actions {
        flex-wrap: wrap;
    }
    .vr-filter-submit {
        flex: 1;
    }
    .vr-single-hero {
        min-height: 390px;
    }
    .vr-single-hero__inner {
        padding: 75px 0 43px;
    }
    .vr-single-title {
        font-size: 40px;
    }
    .vr-single-layout {
        gap: 40px;
        padding: 48px 0 70px;
    }
    .vr-single-content p,
    .vr-single-content li {
        font-size: 15px;
        line-height: 1.82;
    }
}
