/* ============================================
 * m38_contact_cards - 3 Cards (Phone/Email/Address)
 * Figma: 463x471, Icon-Box 95x95 @ (51,48), Topline @ y=172, Text @ y=211,
 *        Headline-Value @ y=336, Subtext @ y=406
 * ============================================ */
.m38_contact_cards {
    background: #F7F7F7;
    padding: clamp(48px, 7vw, 110px) 0;
    color: #1d1d1b;
}
/* Container-Breite kommt aus globalem .hs_container + data-container Attribut */

.m38_header {
    margin-bottom: clamp(40px, 4vw, 64px);
}
.m38_headline {
    color: var(--hs-dark);
    font-weight: 600;
    font-size: clamp(26px, 2.6vw, 40px);
    line-height: 1.125;
    letter-spacing: 0.03em;
    margin: 18px 0 0;
}

.m38_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 40px);
    align-items: stretch;
}
.m38_card {
    background: #fff;
    border: 1px solid #E1E2E3;
    padding: 48px 50px 46px;
    min-height: 471px; /* Figma height */
    display: flex;
    flex-direction: column;
}
.m38_card_icon {
    width: 95px;
    height: 95px;
    background: var(--hs-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 76px;
    border-radius: 50%;
}
.m38_card_icon svg { width: 49px; height: 49px; display: block; }

.m38_card_topline_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
}
.m38_card_mark {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--hs-gold);
    flex-shrink: 0;
}
.m38_card_topline {
    color: var(--hs-gold);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}
.m38_card_text {
    color: #1d1d1b;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin: 0 0 30px;
    flex: 1;
}
.m38_card_value {
    color: var(--hs-dark);
    font-family: var(--hs-font-display);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.36;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}
.m38_card_value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.m38_card_value a:hover { color: var(--hs-gold); }
.m38_card_subtext {
    color: rgba(29, 29, 27, 0.5);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin: 0;
}

@media (max-width: 992px) {
    .m38_grid { grid-template-columns: 1fr; gap: 24px; }
    .m38_card { padding: clamp(24px, 5vw, 32px) clamp(20px, 5vw, 28px); }
    .m38_card_icon { margin-bottom: 32px; }
}
@media (max-width: 360px) {
    .m38_card_value { font-size: 18px; }
    .m38_card_icon { width: 72px; height: 72px; }
    .m38_card_icon svg { width: 38px; height: 38px; }
}
