.hdv2-vds-features {
    margin: 0 0 4rem;
    width: 100%;
    padding: 5rem 0;
    background: var(--hdv2-home-surface-muted);
    color: var(--hdv2-home-text);
}

.hdv2-vds-features .hdv2-home__container {
    max-width: 72rem;
}

.hdv2-vds-features__head {
    margin: 0 auto 4rem;
    max-width: 36rem;
    text-align: center;
}

.hdv2-vds-features__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 2.8vw, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--hdv2-home-text-strong);
}

.hdv2-vds-features__lead {
    margin: 0 auto;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--hdv2-vds-a11y-muted);
}

.hdv2-vds-features__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hdv2-vds-features__col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hdv2-vds-features__item-head {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.hdv2-vds-features__num {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--hdv2-vds-a11y-decorative);
    font-variant-numeric: tabular-nums;
    transition: color 0.2s ease;
}

.hdv2-vds-features__item:hover .hdv2-vds-features__num {
    color: var(--hdv2-home-primary);
}

.hdv2-vds-features__name {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--hdv2-home-text-strong);
}

.hdv2-vds-features__desc {
    margin: 0;
    padding-left: 3.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--hdv2-vds-a11y-muted);
}

.hdv2-vds-features__media {
    display: flex;
    justify-content: center;
    margin: 0;
}

.hdv2-vds-features__media-wrap {
    position: relative;
    width: 16rem;
    height: 20rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

:root[data-hdv2-theme="dark"] .hdv2-vds-features__media-wrap {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hdv2-vds-features__media-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .hdv2-vds-features__grid {
        grid-template-columns: minmax(0, 2fr) auto minmax(0, 2fr);
        gap: 3rem;
    }
}

@media (max-width: 1023px) {
    .hdv2-vds-features {
        padding: 3.5rem 0;
    }

    .hdv2-vds-features__head {
        margin-bottom: 2.5rem;
    }

    .hdv2-vds-features__media {
        order: -1;
    }

    .hdv2-vds-features__desc {
        padding-left: 3.25rem;
    }
}

@media (max-width: 640px) {
    .hdv2-vds-features__media-wrap {
        width: min(100%, 14rem);
        height: 17.5rem;
    }

    .hdv2-vds-features__num {
        font-size: 1.875rem;
    }

    .hdv2-vds-features__name {
        font-size: 1rem;
    }
}
