.atlas-service-index {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.atlas-service-index--related {
    border-top: 1px solid rgba(15, 23, 42, .08);
    background: #ffffff;
}
.atlas-service-index__header {
    max-width: 760px;
    margin-bottom: 2.2rem;
}
.atlas-service-index__eyebrow,
.atlas-service-card__type {
    display: inline-block;
    color: var(--atlas-accent, #0ea5e9);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.atlas-service-index__header h2 {
    margin: .65rem 0 .75rem;
    color: var(--atlas-primary, #0b1f4d);
    font-family: "EB Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
}
.atlas-service-index__header p {
    margin: 0;
    color: var(--atlas-text-muted, #64748b);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.7;
}
.atlas-service-index__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.atlas-service-card {
    min-height: 235px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .09);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .07);
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}
.atlas-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, .32);
    box-shadow: 0 24px 58px rgba(15, 23, 42, .13);
}
.atlas-service-card__body {
    display: flex;
    min-height: 235px;
    flex-direction: column;
    padding: 2rem;
}
.atlas-service-card h3 {
    margin: .8rem 0 1.5rem;
    font-family: "EB Garamond", serif;
    font-size: clamp(1.65rem, 2.3vw, 2.3rem);
    line-height: 1.08;
}
.atlas-service-card h3 a {
    color: var(--atlas-primary, #0b1f4d);
    text-decoration: none;
}
.atlas-service-card__link {
    display: inline-flex;
    gap: .55rem;
    align-items: center;
    margin-top: auto;
    color: var(--atlas-primary, #0b1f4d);
    font-weight: 700;
    text-decoration: none;
}
.atlas-service-card__link i {
    transition: transform .2s ease;
}
.atlas-service-card:hover .atlas-service-card__link i {
    transform: translateX(4px);
}
@media (max-width: 991px) {
    .atlas-service-index__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .atlas-service-index__grid {
        grid-template-columns: 1fr;
    }

    .atlas-service-card,
    .atlas-service-card__body {
        min-height: 205px;
    }
}
