
/* =================================================================
   GUM TREATMENT PAGE — GT-specific CSS
   ================================================================= */

/* ── DISEASE GRID ───────────────────────────────────────────────── */
.gt-disease-grid { display:flex;flex-direction:column;gap:14px;margin:20px 0; }
.gt-disease-card {
    display:flex;gap:16px;align-items:flex-start;
    background:#F9FAFB;border:1px solid #E5E7EB;border-radius:14px;padding:18px 20px;
    transition:border-color .2s,box-shadow .2s;
}
.gt-disease-card:hover { border-color:#A7F3D0;box-shadow:0 4px 16px rgba(46,196,182,.08); }
.gt-disease-num {
    flex-shrink:0;width:36px;height:36px;border-radius:10px;
    background:linear-gradient(135deg,#0A1628,#1B6FD8);
    display:flex;align-items:center;justify-content:center;
    font-size:.8rem;font-weight:800;color:#2EC4B6;letter-spacing:.02em;
}
.gt-disease-card > div:last-child { flex:1; }
.gt-disease-card strong { display:flex;align-items:center;flex-wrap:wrap;gap:8px;font-size:.93rem;font-weight:700;color:#0A1628;margin-bottom:6px; }
.gt-disease-card p { font-size:.85rem;color:#4B5563;line-height:1.7;margin:0; }

.gt-stage-tag {
    display:inline-block;font-size:.7rem;font-weight:700;text-transform:uppercase;
    letter-spacing:.04em;border-radius:20px;padding:3px 10px;
}
.gt-tag-green  { background:#D1FAE5;color:#065F46; }
.gt-tag-amber  { background:#FEF3C7;color:#92400E; }
.gt-tag-red    { background:#FEE2E2;color:#991B1B; }

/* ── CAUSES SECTION ─────────────────────────────────────────────── */
.gt-causes { padding:80px 0;background:#fff; }
.gt-causes-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px; }
.gt-cause-card {
    display:flex;gap:14px;align-items:flex-start;
    background:#F9FAFB;border:1px solid #E5E7EB;border-radius:16px;padding:22px 18px;
    transition:transform .2s,box-shadow .2s,border-color .2s;
}
.gt-cause-card:hover { transform:translateY(-3px);box-shadow:0 8px 24px rgba(46,196,182,.1);border-color:#A7F3D0; }
.gt-cause-card > div:last-child { flex:1; }
.gt-cause-card strong { display:block;font-size:.9rem;font-weight:700;color:#0A1628;margin-bottom:5px; }
.gt-cause-card p { font-size:.84rem;color:#4B5563;line-height:1.65;margin:0; }
.gt-cause-card a { color:#1B6FD8;font-weight:600;text-decoration:none; }
.gt-cause-card a:hover { text-decoration:underline; }

/* ── TREATMENT STEPS ────────────────────────────────────────────── */
.gt-treatment { background:linear-gradient(160deg,#F8FAFF,#F0F9FF); }
.gt-steps-grid { grid-template-columns:repeat(2,1fr) !important; }
.gt-steps-img-wrap {
    border-radius:16px;overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,.12);margin-top:32px;
}
.gt-steps-img-wrap img { width:100%;height:320px;object-fit:cover;display:block; }

/* ── COST MODIFIER ──────────────────────────────────────────────── */
.gt-cost { background:#fff; }
.gt-cost-highlight td { background:#EFF6FF !important;font-weight:600; }
.gt-cost-note {
    display:flex;gap:10px;align-items:flex-start;margin-top:20px;
    background:#EFF6FF;border:1px solid #BFDBFE;border-radius:12px;padding:14px 18px;
}
.gt-cost-note svg { flex-shrink:0;margin-top:2px; }
.gt-cost-note p { font-size:.87rem;color:#1E40AF;line-height:1.7;margin:0; }
.gt-cost-note a { color:#1B6FD8;font-weight:600;text-decoration:none; }
.gt-cost-note a:hover { text-decoration:underline; }

/* ── WHY — IMAGE ────────────────────────────────────────────────── */
.gt-why-img-wrap {
    border-radius:16px;overflow:hidden;box-shadow:0 8px 32px rgba(10,22,40,.1);
    margin-bottom:40px;
}
.gt-why-img-wrap img { width:100%;height:300px;object-fit:cover;display:block; }

/* ── GT RESPONSIVE ──────────────────────────────────────────────── */
@media(max-width:1024px){
    .gt-causes-grid { grid-template-columns:repeat(2,1fr); }
    .gt-steps-grid { grid-template-columns:1fr !important; }
}
@media(max-width:768px){
    .gt-causes { padding:64px 0; }
    .gt-causes-grid { grid-template-columns:1fr; }
    .gt-steps-img-wrap img { height:200px; }
    .gt-why-img-wrap img { height:200px; }
    .gt-cause-card { flex-direction:column;gap:10px; }
}
