/* ========================================
   SAĞLIK SAYFALARI — Özel Stiller
   Obezite / Kilo / Rehabilitasyon odaklı
======================================== */

/* ── Hero ── */
.sg-hero {
    background: linear-gradient(135deg, #002B49 0%, #0d3a66 40%, #0e4a7a 100%);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}
.sg-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.sg-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.sg-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,165,233,0.15);
    border: 1px solid rgba(14,165,233,0.3);
    color: #7dd3fc;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 24px;
    margin-bottom: 18px;
}
.sg-hero h1 {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.sg-hero h1 em {
    font-style: normal;
    color: #38bdf8;
}
.sg-hero-desc {
    font-size: 1.05rem;
    color: #bae6fd;
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 680px;
}
.sg-hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.sg-hero-stat {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px 20px;
    border-radius: 14px;
    text-align: center;
}
.sg-hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #38bdf8;
}
.sg-hero-stat span {
    font-size: 0.78rem;
    color: #94a3b8;
}

/* ── Topic Cards Grid ── */
.sg-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
}
.sg-section-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sg-section-title i {
    color: #0EA5E9;
    font-size: 1.2rem;
}
.sg-section-sub {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0 0 32px;
    line-height: 1.6;
}

.sg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.sg-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.sg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,43,73,0.12);
}
.sg-card-icon {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
}
.sg-card-icon.grad-red { background: linear-gradient(135deg, #dc2626, #f97316); }
.sg-card-icon.grad-blue { background: linear-gradient(135deg, #0284c7, #06b6d4); }
.sg-card-icon.grad-green { background: linear-gradient(135deg, #059669, #34d399); }
.sg-card-icon.grad-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.sg-card-icon.grad-pink { background: linear-gradient(135deg, #db2777, #f472b6); }
.sg-card-icon.grad-amber { background: linear-gradient(135deg, #d97706, #fbbf24); }

.sg-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sg-card-body h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 8px;
}
.sg-card-body p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 14px;
    flex: 1;
}
.sg-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0EA5E9;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sg-card:hover .sg-card-link {
    gap: 10px;
}

/* ── Why Water Section ── */
.sg-why {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 48px 24px;
}
.sg-why-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.sg-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 28px;
}
.sg-benefit {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(14,165,233,0.12);
    text-align: center;
}
.sg-benefit i {
    font-size: 2rem;
    color: #0EA5E9;
    margin-bottom: 12px;
    display: block;
}
.sg-benefit h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 6px;
}
.sg-benefit p {
    font-size: 0.83rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── CTA Banner ── */
.sg-cta {
    background: linear-gradient(135deg, #002B49, #0d3a66);
    padding: 48px 24px;
    text-align: center;
    color: white;
}
.sg-cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: white;
}
.sg-cta p {
    color: #bae6fd;
    font-size: 0.95rem;
    margin: 0 0 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.sg-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.sg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform 0.2s;
}
.sg-cta-btn:hover {
    transform: translateY(-2px);
}
.sg-cta-btn.primary {
    background: linear-gradient(135deg, #0EA5E9, #2563EB);
    color: white;
}
.sg-cta-btn.whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

/* ── Article Page ── */
.sg-article {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}
.sg-breadcrumb {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 24px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}
.sg-breadcrumb a {
    color: #0EA5E9;
    text-decoration: none;
}
.sg-article h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 12px;
    line-height: 1.25;
}
.sg-article .sg-lead {
    font-size: 1.08rem;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e0f2fe;
}
.sg-article h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #002B49;
    margin: 36px 0 12px;
    padding-left: 14px;
    border-left: 4px solid #0EA5E9;
}
.sg-article .sg-cta h2 {
    color: white;
    border-left: none;
    padding-left: 0;
    font-size: 1.6rem;
    margin: 0 0 10px;
}
.sg-article .sg-cta p {
    color: #bae6fd;
}
.sg-article .sg-cta h2 {
    color: white;
    border-left: none;
    padding-left: 0;
    font-size: 1.6rem;
    margin: 0 0 10px;
}
.sg-article .sg-cta p {
    color: #bae6fd;
}
.sg-article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 24px 0 8px;
}
.sg-article p {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.85;
    margin: 0 0 16px;
}
.sg-article ul, .sg-article ol {
    margin: 0 0 18px 20px;
    color: #334155;
    font-size: 0.93rem;
    line-height: 1.8;
}
.sg-article li {
    margin-bottom: 6px;
}

/* Data box */
.sg-data-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid rgba(14,165,233,0.2);
    border-radius: 14px;
    padding: 24px;
    margin: 24px 0;
}
.sg-data-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #002B49;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sg-data-box ul {
    margin: 0;
    padding-left: 18px;
}

/* Comparison table */
.sg-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.sg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.sg-table th {
    background: #002B49;
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}
.sg-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}
.sg-table tr:nth-child(even) td {
    background: #f8fafc;
}

/* Related topics */
.sg-related {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid #e0f2fe;
}
.sg-related h3 {
    font-size: 1.1rem;
    border-left: none;
    padding-left: 0;
}
.sg-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.sg-related-item {
    background: #f0f9ff;
    border: 1px solid rgba(14,165,233,0.15);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}
.sg-related-item:hover {
    transform: translateY(-2px);
}
.sg-related-item h4 {
    font-size: 0.9rem;
    color: #002B49;
    margin: 0 0 4px;
}
.sg-related-item p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .sg-hero { padding: 56px 0 40px; }
    .sg-hero h1 { font-size: 1.7rem; }
    .sg-grid { grid-template-columns: 1fr; }
    .sg-benefit-grid { grid-template-columns: 1fr 1fr; }
    .sg-article h1 { font-size: 1.5rem; }
    .sg-cta h2 { font-size: 1.3rem; }
}
@media (max-width: 480px) {
    .sg-hero h1 { font-size: 1.45rem; }
    .sg-hero-stats { flex-direction: column; }
    .sg-benefit-grid { grid-template-columns: 1fr; }
    .sg-related-grid { grid-template-columns: 1fr; }
}
