.vhf-stories-page,
.vhf-story-detail-page {
    background: #ffffff;
    color: #111111;
}

.vhf-stories-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.vhf-stories-hero,
.vhf-story-detail-hero {
    padding: 80px 0 50px;
    background: #f7f7f7;
}

.vhf-stories-eyebrow {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #666666;
}

.vhf-stories-hero h1,
.vhf-story-detail-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    color: #111111;
}

.vhf-stories-hero p,
.vhf-story-detail-hero p {
    max-width: 720px;
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
}

.vhf-stories-list-section {
    padding: 60px 0 80px;
}

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

.vhf-story-card {
    overflow: hidden;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vhf-story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.vhf-story-card-image {
    display: block;
    height: 240px;
    overflow: hidden;
    background: #eeeeee;
}

.vhf-story-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vhf-story-card:hover .vhf-story-card-image img {
    transform: scale(1.05);
}

.vhf-story-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #777777;
    background: linear-gradient(135deg, #f2f2f2, #e5e5e5);
}

.vhf-story-card-content {
    padding: 24px;
}

.vhf-story-card h2 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
}

.vhf-story-card h2 a {
    color: #111111;
    text-decoration: none;
}

.vhf-story-card h2 a:hover {
    color: #444444;
}

.vhf-story-excerpt {
    margin-bottom: 20px;
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
}

.vhf-story-excerpt p {
    margin: 0;
}

.vhf-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vhf-read-more:hover {
    background: #333333;
    transform: translateY(-2px);
}

.vhf-stories-pagination {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.vhf-stories-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    color: #111111;
    text-decoration: none;
}

.vhf-stories-pagination .current,
.vhf-stories-pagination .page-numbers:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.vhf-no-stories {
    padding: 40px;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    text-align: center;
    background: #fafafa;
}

.vhf-back-link {
    display: inline-block;
    margin-bottom: 24px;
    color: #111111;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.vhf-back-link:hover {
    text-decoration: underline;
}

.vhf-story-featured-image-wrap {
    padding: 50px 0 0;
}

.vhf-story-featured-image {
    overflow: hidden;
    border-radius: 22px;
    background: #eeeeee;
}

.vhf-story-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.vhf-story-content-section {
    padding: 55px 0 80px;
}

.vhf-story-content {
    max-width: 860px;
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
}

.vhf-story-content h2,
.vhf-story-content h3,
.vhf-story-content h4 {
    margin-top: 34px;
    margin-bottom: 14px;
    color: #111111;
    line-height: 1.25;
}

.vhf-story-content p {
    margin: 0 0 22px;
}

.vhf-story-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

@media (max-width: 991px) {
    .vhf-stories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .vhf-story-card-image {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .vhf-stories-container {
        width: min(100% - 28px, 1180px);
    }

    .vhf-stories-hero,
    .vhf-story-detail-hero {
        padding: 58px 0 38px;
    }

    .vhf-stories-list-section {
        padding: 38px 0 58px;
    }

    .vhf-stories-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vhf-story-card-content {
        padding: 20px;
    }

    .vhf-story-card-image {
        height: 230px;
    }

    .vhf-story-content {
        font-size: 16px;
    }
}
