/* ============================================================
   Service Page Template
   ============================================================ */

/* ── Sub-Procedure Navigation ─────────────────── */
.service-sub-nav {
    background: var(--white, #ffffff);
    border-bottom: 1px solid var(--light-gray, #e8edf2);
    position: relative;
    z-index: 10;
}

.service-sub-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.service-sub-nav__inner::-webkit-scrollbar {
    display: none;
}

.service-sub-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 16px 20px;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--body-text, #303030);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.service-sub-nav__link:hover {
    color: var(--primary, #054f7d);
    border-bottom-color: var(--accent, #00a1dd);
}

.service-sub-nav__link.is-active {
    color: var(--primary, #054f7d);
    border-bottom-color: var(--accent, #00a1dd);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
    .service-sub-nav__inner {
        padding: 0 16px;
    }

    .service-sub-nav__link {
        padding: 12px 16px;
        font-size: 13px;
    }
}
