.hvb-keyfacts {
    margin: 2rem 0;
}

.hvb-keyfacts__header {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.hvb-keyfacts__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    background: #e0d5cf;
    border: 1px solid #e0d5cf;
    border-radius: 12px;
    overflow: hidden;
}

.hvb-keyfacts__item {
    background: #f9f6f4;
    padding: 1.25rem 0.75rem;
    text-align: center;
}

.hvb-keyfacts__value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color1, #903315);
    margin: 0;
}

.hvb-keyfacts__label {
    font-size: 0.85rem;
    color: #666;
    margin: 0.3rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 480px) {
    .hvb-keyfacts__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .hvb-keyfacts__value {
        font-size: 1.5rem;
    }
}
