.vhd-wrapper {
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding: 60px 0;
}
.vhd-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 50% 54%, var(--bg-glow, rgba(255, 75, 37, 0.15)) 0%, var(--bg-navy, rgba(36, 51, 102, 0.05)) 50%, transparent 100%);
    opacity: 0.6;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}
.vhd-content-inner {
    position: relative;
    z-index: 1;
}

.vhd-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vhd-kicker {
    color: #ff4b25;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.vhd-headline {
    color: #243366;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -2px;
    max-width: 1050px;
    margin-bottom: 24px;
}
.vhd-intro {
    color: #53618a;
    font-size: 20px;
    line-height: 1.62;
    max-width: 900px;
    margin: 0;
}
.vhd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.vhd-card {
    background: #ffffff;
    border: 1px solid #dfe3ec;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 30px rgba(20,32,70,0.06);
    transition: 0.28s ease;
    opacity: 1;
}
.vhd-grid[data-animate="yes"] .vhd-card {
    opacity: 0;
    transform: translateY(30px);
}
.vhd-grid.vhd-in-view .vhd-card {
    animation: vhdFadeInUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.vhd-grid.vhd-in-view .vhd-card:nth-child(1) { animation-delay: 0s; }
.vhd-grid.vhd-in-view .vhd-card:nth-child(2) { animation-delay: 0.10s; }
.vhd-grid.vhd-in-view .vhd-card:nth-child(3) { animation-delay: 0.20s; }
@keyframes vhdFadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.vhd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 64px rgba(20,32,70,0.14);
    border-color: rgba(255,75,37,0.32);
}
.vhd-card-image-wrap {
    height: 260px;
    position: relative;
    overflow: hidden;
}
.vhd-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.vhd-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,29,68,0.05) 0%, rgba(17,29,68,0.24) 48%, rgba(17,29,68,0.72) 100%);
}
.vhd-badges {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vhd-badge {
    height: 32px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
}
.vhd-badge-primary { background: #ff4b25; color: #ffffff; }
.vhd-badge-secondary { background: rgba(255,255,255,0.94); color: #243366; }
.vhd-location {
    position: absolute;
    left: 30px;
    bottom: 28px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.vhd-card-content {
    padding: 40px 34px 34px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.vhd-number {
    color: #ff4b25;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 28px;
}
.vhd-title {
    color: #243366;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 22px;
    margin-top: 0;
}
.vhd-description {
    color: #53618a;
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 30px;
}
.vhd-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 34px;
}
.vhd-tag {
    min-height: 62px;
    border: 1px solid #dfe3ec;
    border-radius: 16px;
    padding: 13px 16px;
    background: #ffffff;
    color: #53618a;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.22;
    display: flex;
    align-items: center;
}
.vhd-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vhd-btn {
    width: 100%;
    min-height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.2px;
    transition: 0.25s ease;
}
.vhd-btn-secondary {
    background: #ffffff;
    color: #243366;
    border: 1px solid #dfe3ec;
}
.vhd-btn-secondary:hover {
    background: #f7f8f4;
    border-color: rgba(36,51,102,0.22);
    transform: translateY(-3px);
}
.vhd-btn-primary {
    background: #ff4b25;
    color: #ffffff;
    border: 1px solid #ff4b25;
    box-shadow: 0 12px 24px rgba(255,75,37,0.18);
}
.vhd-btn-primary:hover {
    background: #e94121;
    border-color: #e94121;
    box-shadow: 0 16px 30px rgba(255,75,37,0.25);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .vhd-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .vhd-headline { font-size: 50px; }
    .vhd-intro { font-size: 18px; }
    .vhd-card-image-wrap { height: 250px; }
    .vhd-title { font-size: 32px; }
}
@media (max-width: 767px) {
    .vhd-grid { grid-template-columns: 1fr; gap: 24px; }
    .vhd-headline { font-size: 36px; }
    .vhd-intro { font-size: 16px; margin-bottom: 40px; }
    .vhd-kicker { font-size: 12px; }
    .vhd-card-image-wrap { height: 225px; }
    .vhd-card-content { padding: 34px 26px 28px; }
    .vhd-title { font-size: 30px; }
    .vhd-description { font-size: 16.5px; }
    .vhd-tags { grid-template-columns: 1fr; }
    .vhd-tag { min-height: auto; }
    .vhd-btn { min-height: 58px; font-size: 18px; }
}