/* ============================================================
   Tadalafil Bilgi Sitesi — Global Style System
   Mobil-first, Core Web Vitals optimize, medikal güven tasarımı
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1a3a5c;
  --navy-dark:   #0f2438;
  --navy-light:  #2a5298;
  --teal:        #0d7d8a;
  --teal-light:  #e6f4f5;
  --accent:      #e07b39;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --warning-bg:  #fff8e1;
  --warning-bdr: #f59e0b;
  --danger-bg:   #fff1f1;
  --danger-bdr:  #ef4444;
  --success-bg:  #f0fdf4;
  --success-bdr: #22c55e;
  --text:        #1e293b;
  --text-light:  #475569;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:      0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 28px rgba(0,0,0,.12);
  --max-w:       1140px;
  --prose-w:     720px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  /* prevent any child from overflowing the viewport */
  word-break: break-word;
  overflow-wrap: break-word;
}

img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
/* prevent any single element from stretching the page */
* { min-width: 0; }
a { color: var(--navy-light); text-decoration: none; word-break: break-word; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--navy-light); outline-offset: 2px; border-radius: 2px; }
pre, code { overflow-x: auto; max-width: 100%; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy-dark);
}
h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
h2 { font-size: clamp(1.25rem, 3vw, 1.65rem); margin-bottom: .5rem; }
h3 { font-size: 1.15rem; margin-bottom: .35rem; }
p  { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-left:  max(1rem, env(safe-area-inset-left,  1rem));
  padding-right: max(1rem, env(safe-area-inset-right, 1rem));
}
@media (min-width: 640px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem;   } }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background: var(--navy);
  color: var(--white);
  padding: .85rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.site-logo span { color: #7ec8e3; }
.site-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.site-nav a {
  color: rgba(255,255,255,.82);
  font-size: .875rem;
  font-weight: 500;
  transition: color .15s;
}
.site-nav a:hover { color: var(--white); text-decoration: none; }
.site-nav a:focus-visible { outline-color: #7ec8e3; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  color: var(--white);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    padding: 5rem 1.5rem 2rem;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.9);
  }
  .site-nav a:last-child { border-bottom: none; }
  /* Close button area — nav-toggle stays on top */
  .nav-toggle { z-index: 100; }
}

/* ============================================================
   MEDICAL DISCLAIMER BANNER
   ============================================================ */
.disclaimer-banner {
  background: var(--warning-bg);
  border-bottom: 2px solid var(--warning-bdr);
  padding: .65rem 0;
}
.disclaimer-banner .container {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: #7c5b00;
  line-height: 1.5;
}
.disclaimer-banner .icon { font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: .75rem 0;
  font-size: .8rem;
  color: var(--gray-600);
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .25rem .4rem; align-items: center; }
.breadcrumb li + li::before { content: '›'; color: var(--gray-400); margin-right: .3rem; }
.breadcrumb a { color: var(--navy-light); }

/* ============================================================
   HERO / DRUG CARD
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 3rem 0 2.5rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.hero h1 { color: var(--white); margin-bottom: .5rem; }
.hero .subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .hero-tag { font-size: .72rem; padding: .15rem .5rem; }
}
.hero-tag {
  background: rgba(255,255,255,.18);
  border-radius: 4px;
  padding: .2rem .6rem;
  font-size: .78rem;
  font-weight: 500;
}

/* Featured Article Image */
.featured-image {
  margin: 0 0 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.featured-image img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}
.featured-image figcaption {
  font-size: .78rem;
  color: var(--gray-500);
  background: var(--gray-50);
  padding: .45rem .85rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}
@media (max-width: 768px) {
  .featured-image img { max-height: 200px; }
}

.drug-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  min-width: 0;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.drug-card-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-400);
  margin-bottom: .75rem;
}
.drug-card-row {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.drug-card-item { font-size: .83rem; line-height: 1.4; }
.drug-card-item strong {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-400);
  margin-bottom: .1rem;
}
.drug-card-item > span { color: var(--navy-dark); font-weight: 500; }
.rx-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: .1rem .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3px;
  margin-top: .2rem;
}

@media (max-width: 768px) {
  .hero { padding: 2rem 0 1.75rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero .subtitle { font-size: .95rem; }
}

/* ============================================================
   CONTENT AREA
   ============================================================ */
.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.5rem;
  padding: 2.5rem 0 3.5rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .content-wrap { grid-template-columns: minmax(0, 1fr) 260px; gap: 2rem; }
}
@media (max-width: 768px) {
  .content-wrap {
    grid-template-columns: 1fr;
    padding: 1.5rem 0 2.5rem;
  }
  /* sidebar goes below article on mobile — TOC not useful at top */
  .sidebar { order: 2; }
  /* hide less critical sidebar widgets on mobile */
  .sidebar .sidebar-widget:nth-child(n+3) { display: none; }
}

/* --- Article Sections --- */
.article-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 80px;
}
.section-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 1.25rem;
}
.section-icon {
  width: 32px; height: 32px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.section-header h2 { border: none; padding: 0; margin: 0; }

/* --- Tables --- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
  border-radius: var(--radius);
}
.data-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: .9rem;
  margin-bottom: 0;
  display: table;
}
@media (max-width: 768px) {
  .data-table { font-size: .8rem; }
  .data-table thead th { padding: .5rem .65rem; }
  .data-table tbody td { padding: .5rem .65rem; }
}
.data-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: .65rem .9rem;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .3px;
}
.data-table tbody td {
  padding: .6rem .9rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: break-word;
}
.data-table tbody tr:nth-child(even) td { background: var(--gray-50); }
.data-table tbody tr:hover td { background: var(--teal-light); }

/* --- Callout Boxes --- */
.callout {
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .9rem;
  line-height: 1.6;
}
.callout-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.callout.warning  { background: var(--warning-bg); border-left: 4px solid var(--warning-bdr); }
.callout.danger   { background: var(--danger-bg);  border-left: 4px solid var(--danger-bdr); }
.callout.info     { background: #e8f4fd; border-left: 4px solid #3b82f6; }
.callout.success  { background: var(--success-bg); border-left: 4px solid var(--success-bdr); }
.callout p        { margin: 0; }

/* --- Side-effect grid --- */
.se-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: .75rem;
  margin-bottom: 1rem;
}
.se-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .85rem 1rem;
}
.se-card h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.se-card.common   h4 { color: #b45309; }
.se-card.rare     h4 { color: #0369a1; }
.se-card.serious  h4 { color: #b91c1c; }
.se-card ul { font-size: .85rem; }
.se-card li { margin-bottom: .2rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { margin-top: 1rem; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: .9rem 1rem;
  text-align: left;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  transition: background .15s;
  line-height: 1.45;
}
@media (max-width: 480px) {
  .faq-question { font-size: .87rem; padding: .8rem .9rem; }
  .faq-answer   { font-size: .85rem; padding: 0 .9rem .9rem; }
}
.faq-question:hover { background: var(--gray-50); }
.faq-question[aria-expanded="true"] { background: var(--teal-light); color: var(--teal); }
.faq-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform .25s;
  color: var(--gray-400);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--teal); }
.faq-answer {
  display: none;
  padding: 0 1.1rem 1rem;
  font-size: .9rem;
  color: var(--gray-800);
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
}
.faq-answer.open { display: block; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   REFERENCES
   ============================================================ */
.references-list {
  list-style: none;
  padding: 0;
  font-size: .83rem;
  color: var(--gray-600);
  counter-reset: ref;
}
.references-list li {
  counter-increment: ref;
  padding: .4rem 0 .4rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.references-list li::before {
  content: '[' counter(ref) ']';
  position: absolute;
  left: 0;
  color: var(--navy-light);
  font-weight: 700;
}
.references-list a { color: var(--navy-light); word-break: break-all; }
sup a { color: var(--navy-light); font-weight: 700; font-size: .72rem; }

/* ============================================================
   AUTHOR REVIEW BOX
   ============================================================ */
.author-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; padding: 1.25rem 1rem; }
  .author-meta { justify-content: center; }
}
.author-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--teal-light);
  flex-shrink: 0;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.author-info h3 { font-size: 1rem; margin-bottom: .15rem; color: var(--navy-dark); }
.author-title { font-size: .82rem; color: var(--teal); font-weight: 600; margin-bottom: .35rem; }
.author-bio  { font-size: .82rem; color: var(--gray-600); margin-bottom: .5rem; line-height: 1.55; }
.author-meta {
  display: flex; flex-wrap: wrap; gap: .4rem .75rem;
  font-size: .75rem; color: var(--gray-400);
}
.author-meta span { display: flex; align-items: center; gap: .25rem; min-width: 0; word-break: break-word; }
.author-meta a { color: var(--navy-light); }

@media (max-width: 480px) {
  .author-meta { flex-direction: column; gap: .3rem; }
  .author-meta span { font-size: .78rem; }
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget-head {
  background: var(--navy);
  color: var(--white);
  padding: .65rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.sidebar-widget-body { padding: 1rem; }

.toc-list { list-style: none; padding: 0; font-size: .85rem; }
.toc-list li { border-bottom: 1px solid var(--gray-100); }
.toc-list li:last-child { border-bottom: none; }
.toc-list a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .2rem;
  color: var(--gray-600);
  font-weight: 500;
  transition: color .15s;
}
.toc-list a:hover { color: var(--navy); text-decoration: none; }
.toc-num {
  width: 20px; height: 20px;
  background: var(--gray-100);
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gray-400);
}

.quick-facts { list-style: none; padding: 0; font-size: .85rem; }
.quick-facts li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
  padding: .45rem 0;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.4;
}
.quick-facts li:last-child { border-bottom: none; }
.quick-facts .label { color: var(--gray-400); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .3px; flex-shrink: 0; }
.quick-facts .value { color: var(--navy-dark); font-weight: 500; text-align: right; word-break: break-word; }

.widget-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  font-size: .85rem;
  line-height: 1.55;
}
.widget-cta strong { display: block; font-size: .9rem; margin-bottom: .35rem; }
.widget-cta p { margin: 0 0 .75rem; opacity: .9; }
.btn-outline-white {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 6px;
  padding: .4rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  transition: background .15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); text-decoration: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 2.5rem 0 1.5rem;
  font-size: .83rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .site-logo { font-size: 1rem; margin-bottom: .6rem; }
.footer-brand p { font-size: .8rem; line-height: 1.6; opacity: .75; }
.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.65); transition: color .15s; }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .75rem;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  opacity: .6;
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .25rem; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 2rem 0 1.5rem;
}
.page-hero h1 { font-size: clamp(1.3rem, 4vw, 1.9rem); margin-bottom: .4rem; }
.page-hero .subtitle { color: var(--gray-600); font-size: .9rem; margin: 0; }

@media (max-width: 480px) {
  .page-hero { padding: 1.5rem 0 1.25rem; }
}

/* Inner page prose wrapper — limits prose readability width */
.prose-wrap {
  max-width: var(--prose-w);
  margin-inline: auto;
}
.inner-content {
  max-width: 860px;
  margin-inline: auto;
}

/* ============================================================
   AUTHOR PAGE — specific
   ============================================================ */
.author-profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 520px) {
  .author-profile-card { grid-template-columns: 1fr; text-align: center; }
  .author-profile-photo { margin: 0 auto; }
}
.author-profile-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 4px solid var(--teal-light);
  background: var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  flex-shrink: 0;
}
.author-profile-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.author-profile-name { font-size: 1.5rem; font-weight: 800; color: var(--navy-dark); margin-bottom: .2rem; }
.author-profile-title { color: var(--teal); font-weight: 600; font-size: 1rem; margin-bottom: .75rem; }
.author-credential-list { list-style: none; padding: 0; font-size: .87rem; }
.author-credential-list li {
  display: flex; align-items: flex-start; gap: .5rem;
  padding: .35rem 0;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.author-credential-list li:last-child { border-bottom: none; }
.cred-icon { color: var(--teal); flex-shrink: 0; font-size: 1rem; }

.expertise-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .75rem 0 0; }
.tag {
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 100px;
  padding: .2rem .7rem;
  font-size: .75rem;
  font-weight: 600;
}

/* ============================================================
   CONTACT / HAKKIMIZDA PAGE
   ============================================================ */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.info-card h3 { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: 1.05rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-row { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; margin-bottom: .75rem; }
.contact-row:last-child { margin-bottom: 0; }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; color: var(--teal); margin-top: .05rem; }
.contact-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .4px; color: var(--gray-400); font-weight: 700; }

/* ============================================================
   HAKKIMIZDA — Editorial grid
   ============================================================ */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: .5rem;
}
@media (max-width: 560px) {
  .editorial-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.prose h2 { margin-top: 1.75rem; margin-bottom: .75rem; }
.prose h3 { margin-top: 1.25rem; color: var(--gray-600); font-size: 1rem; }
.prose ul { margin-left: 1.25rem; }
.prose p, .prose li { font-size: .93rem; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-sm   { font-size: .875rem; }
.text-xs   { font-size: .75rem; }
.text-muted { color: var(--gray-600); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.fw-600 { font-weight: 600; }
.d-flex { display: flex; }
.gap-1  { gap: .5rem; }
.align-items-center { align-items: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .sidebar, .disclaimer-banner, .nav-toggle { display: none; }
  .content-wrap { grid-template-columns: 1fr; }
  body { font-size: 12pt; }
  a { color: inherit; }
}
