.dh-values-grid {
    padding: 40px 0;
    background-color: #fff;
}

.dh-values-grid__header {
    text-align: center;

    margin: 0 auto 40px;
}

.dh-values-grid__overline {
    color: var(--primary-red-100, #DF002F);
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.dh-values-grid__title {
    color: var(--primary-black-100, #111B29);
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 28px;
    /* Responsive size */
    font-style: normal;
    font-weight: 700;
    line-height: 116%;
    /* 32.48px approx */
    margin-bottom: 16px;
}

.dh-values-grid__description {
    color: var(--primary-black-100, #111B29);
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 132%;
    /* 21.12px */
}

/* Cards Grid */
.dh-values-grid__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card */
.dh-values-grid__card {
    background-color: #FFF5F5;
    border-radius: 24px;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    flex: 1;
}

.dh-values-grid__card-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.dh-values-grid__card-icon img {
    width: 100%;
    height: auto;
}

.dh-values-grid__card-title {
    color: var(--primary-red-90, #E21A44);
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 115%;
    /* 34.5px */
    margin: 0 0 6px 0;
}

.dh-values-grid__card-description {
    color: var(--primary-red-90, #E21A44);
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 19.2px */
    margin: 0;
}

/* Desktop Styles */
@media (min-width: 992px) {
    .dh-values-grid {
        padding: 60px 0;
    }

    .dh-values-grid__title {
        font-size: 36px;
    }

    .dh-values-grid__cards {
        flex-direction: row;
        gap: 24px;
    }
}