/* Közös szolgáltatási tényblokk és form-mikroszöveg. */
.service-facts-section {
    padding: clamp(48px, 6vw, 72px) 0;
    background: #faf8fc;
}
.service-facts {
    display: grid;
    overflow: hidden;
    border: 1px solid #e2dbe7;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-card);
    grid-template-columns: repeat(3, 1fr);
}
.service-facts article {
    padding: 28px;
}
.service-facts article:not(:last-child) {
    border-right: 1px solid #e8e2eb;
}
.service-facts article > span {
    color: var(--purple);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.11em;
}
.service-facts h3 {
    margin: 12px 0 9px;
    font-size: 19px;
    line-height: 1.3;
}
.service-facts p {
    margin: 0;
    color: #625b68;
    font-size: 15px;
    line-height: 1.7;
}
.form-microcopy {
    margin: 10px 0 0 !important;
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
}
@media (max-width: 760px) {
    .service-facts {
        grid-template-columns: 1fr;
    }
    .service-facts article:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid #e8e2eb;
    }
}
