/**
 * Shared layout for treatments/*.html (load after site-header.css).
 * Footer width/spacing matches homepage via site-header.css.
 */
body {
    font-family: 'Inter', sans-serif;
    color: #333333;
    line-height: 1.6;
}

.t-main {
    padding: 2rem 0 3rem;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--secondary-color);
}

.t-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.t-hero p {
    color: #555;
    max-width: 720px;
}

.t-card {
    background: #e0f2f1;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.t-card h2 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.t-main .btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--secondary-color);
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.t-main .btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Treatments hub (index.html in /treatments/) */
.hub-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.hub-hero p {
    color: #555;
    max-width: 720px;
}

.hub-hero a {
    color: var(--secondary-color);
    text-decoration: none;
}

.hub-hero a:hover {
    color: var(--primary-color);
}

.hub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 560px) {
    .hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hub-card {
    background: #e0f2f1;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.hub-card h2 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.hub-card h2 a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.hub-card h2 a:hover {
    color: var(--secondary-color);
}

.hub-card p {
    font-size: 0.92rem;
    color: #444;
    margin: 0;
}

.hub-actions {
    margin-top: 2rem;
}

.hub-actions .btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--secondary-color);
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 500;
    margin: 0.35rem 0.5rem 0.35rem 0;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hub-actions .btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}
