/* =============================================
   LinenHanger – Deutsches Magazin Stylesheet
   ============================================= */

:root {
  --primary: #1e5799;
  --primary-dark: #154180;
  --accent: #d4a017;
  --accent-dark: #b8880f;
  --dark: #0f2645;
  --dark-2: #162f50;
  --dark-3: #1a3860;
  --text: #1c1c1e;
  --text-light: #4a4a55;
  --text-lighter: #8a8a9a;
  --bg: #f7f6f2;
  --bg-2: #efefea;
  --white: #ffffff;
  --border: #e0dfd8;
  --border-light: #eeeee8;
  --card-shadow: 0 2px 8px rgba(15,38,69,0.07);
  --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1220px;
  --content-width: 760px;
  --radius: 8px;
  --radius-sm: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.6; }

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.22; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

/* ── TOP BAR ── */
.top-bar {
  background: var(--accent);
  color: var(--dark);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem;
}
.top-bar a { color: var(--dark); text-decoration: underline; }

/* ── HEADER ── */
.site-header {
  background: var(--dark);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(15,38,69,0.4);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.header-nav a {
  color: rgba(255,255,255,0.72);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.18s;
}
.header-nav a:hover { color: white; }
.btn-sub {
  background: var(--accent) !important;
  color: var(--dark) !important;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem !important;
  letter-spacing: 0.01em;
  transition: background 0.18s !important;
  white-space: nowrap;
}
.btn-sub:hover { background: var(--accent-dark) !important; }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* ── CATEGORY NAV ── */
.category-nav {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.category-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.category-nav-inner::-webkit-scrollbar { display: none; }
.category-nav a {
  color: rgba(255,255,255,0.55);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.18s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.category-nav a:hover, .category-nav a.active {
  color: white;
  border-bottom-color: var(--accent);
}

/* ── READING PROGRESS BAR ── */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  z-index: 200;
  transition: width 0.08s linear;
}

/* ── LAYOUT ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.main-content { max-width: var(--max-width); margin: 0 auto; padding: 2.5rem 1.5rem; }
.section { margin-bottom: 3.5rem; }

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--border);
}
.section-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-title-count {
  font-size: 0.7rem;
  color: #c0c0c8;
  font-weight: 400;
}
.section-link {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.section-link:hover { color: var(--primary-dark); }

/* ── ARTICLE CARDS ── */
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.35rem; }
.articles-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.35rem; }
.articles-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.35rem; }

.article-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.22s, transform 0.22s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
}
.article-card:hover {
  box-shadow: 0 8px 28px rgba(15,38,69,0.13);
  transform: translateY(-3px);
}
.article-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  flex-shrink: 0;
}
.article-card-body {
  padding: 1.1rem 1.2rem 0.9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.cat-tag {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary);
  background: rgba(30,87,153,0.09);
  padding: 0.18rem 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
}
.cat-tag.accent {
  color: var(--accent-dark);
  background: rgba(212,160,23,0.12);
}
.art-date { font-size: 0.7rem; color: var(--text-lighter); }
.art-read { font-size: 0.7rem; color: var(--text-lighter); margin-left: auto; }
.article-card h3 {
  font-size: 1.0rem;
  margin-bottom: 0.45rem;
  line-height: 1.32;
  flex: 1;
}
.article-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-footer {
  padding: 0.55rem 1.2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-lighter);
}

/* Featured card (larger) */
.article-card.featured .article-card-img { height: 270px; }
.article-card.featured h3 { font-size: 1.22rem; }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  background: var(--dark);
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.hero-content {
  padding: 3.5rem 2.5rem 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--accent);
}
.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.16;
  margin-bottom: 1.1rem;
  color: white;
}
.hero-content p {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.68;
  margin-bottom: 1.6rem;
}
.hero-meta { font-size: 0.76rem; color: rgba(255,255,255,0.4); }
.hero-meta span + span::before { content: ' · '; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 30%, transparent 70%);
  pointer-events: none;
}

/* ── DIVIDER ── */
.divider-line {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* ── SUBSCRIPTION BANNER ── */
.sub-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.sub-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(212,160,23,0.08);
  border-radius: 50%;
}
.sub-banner h2 { font-size: 1.9rem; margin-bottom: 0.65rem; }
.sub-banner p {
  color: rgba(255,255,255,0.68);
  margin-bottom: 1.5rem;
  font-size: 1.0rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.sub-banner p:last-of-type { margin-bottom: 1.5rem; }
.sub-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.18s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-dark); color: var(--dark); }
.btn-outline {
  background: transparent;
  color: white;
  padding: 0.73rem 1.9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: inline-block;
  transition: all 0.18s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: white; }

/* ── NEWSLETTER BOX ── */
.newsletter-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  text-align: center;
  margin: 1.5rem 0;
  box-shadow: var(--card-shadow);
}
.newsletter-box h3 { margin-bottom: 0.45rem; font-size: 1.3rem; }
.newsletter-box p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.25rem; }
.newsletter-form { display: flex; gap: 0.65rem; max-width: 430px; margin: 0 auto; }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  background: var(--bg);
  font-family: var(--font-sans);
  color: var(--text);
}
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--primary); }
.newsletter-notice { font-size: 0.7rem; color: var(--text-lighter); margin-top: 0.65rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.83rem; line-height: 1.68; color: rgba(255,255,255,0.42); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.footer-col li + li { margin-top: 0.5rem; }
.footer-col a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color 0.18s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  margin-bottom: 3.5rem;
}

/* ── ARTICLE PAGE ── */
.article-header { max-width: var(--content-width); margin: 2.5rem auto 0; padding: 0 1.5rem; }
.article-header .cat-tag { font-size: 0.72rem; margin-bottom: 0.9rem; display: inline-block; }
.article-header h1 { font-size: 2.3rem; line-height: 1.18; margin-bottom: 1rem; }
.article-lead {
  font-size: 1.12rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 400;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
  font-family: var(--font-sans);
}
.byline-info { flex: 1; }
.byline-name { font-weight: 700; font-size: 0.88rem; }
.byline-date { font-size: 0.76rem; color: var(--text-lighter); }
.byline-reading { font-size: 0.76rem; color: var(--text-lighter); }

.article-hero-img { max-width: var(--content-width); margin: 2rem auto; padding: 0 1.5rem; }
.article-hero-img img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); }
.img-caption { font-size: 0.76rem; color: var(--text-lighter); margin-top: 0.5rem; font-style: italic; }

.article-body { max-width: var(--content-width); margin: 0 auto; padding: 0 1.5rem 3rem; }
.article-body p { font-size: 1.05rem; line-height: 1.82; margin-bottom: 1.5rem; color: var(--text); }
.article-body h2 { font-size: 1.55rem; margin: 2.5rem 0 1rem; color: var(--dark); }
.article-body h3 { font-size: 1.2rem; margin: 2rem 0 0.75rem; color: var(--dark); }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.8rem 1.5rem;
  margin: 2rem 0;
  background: rgba(212,160,23,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body blockquote p { font-style: italic; font-size: 1.1rem; color: var(--text-light); margin-bottom: 0; }
.article-body ul { padding-left: 1.5rem; margin-bottom: 1.5rem; list-style: disc; }
.article-body ul li { font-size: 1.05rem; line-height: 1.78; margin-bottom: 0.45rem; }
.article-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; list-style: decimal; }
.article-body ol li { font-size: 1.05rem; line-height: 1.78; margin-bottom: 0.45rem; }
.article-body .article-inline-img { margin: 2rem 0; }
.article-body .article-inline-img img { width: 100%; border-radius: var(--radius-sm); }

/* Info box */
.info-box {
  background: rgba(30,87,153,0.06);
  border: 1px solid rgba(30,87,153,0.18);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
}
.info-box h4 { font-size: 1.0rem; color: var(--primary); margin-bottom: 0.65rem; }
.info-box p, .info-box li { font-size: 0.95rem !important; color: var(--text-light) !important; }

/* Tip box */
.tip-box {
  background: rgba(212,160,23,0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.6rem;
  margin: 2rem 0;
}
.tip-box strong { color: var(--accent-dark); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.4rem; }
.tip-box p { font-size: 0.95rem !important; margin-bottom: 0 !important; }

/* ── PAYWALL ── */
.paywall-wrap { position: relative; overflow: hidden; }
.paywall-fade {
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 75%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 75%);
  pointer-events: none;
}
.paywall-cta {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow: 0 6px 30px rgba(15,38,69,0.1);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}
.paywall-cta .lock-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.paywall-cta h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.paywall-cta p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.6; }
.paywall-price { font-size: 0.78rem; color: var(--text-lighter); margin-top: 0.65rem; }

/* ── ARTICLE TAGS ── */
.article-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2rem 0; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.art-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.28rem 0.85rem;
  font-size: 0.76rem;
  color: var(--text-light);
  transition: all 0.18s;
}
.art-tag:hover { background: var(--border); color: var(--text); }

/* ── RELATED ARTICLES ── */
.related-section { max-width: var(--content-width); margin: 0 auto; padding: 0 1.5rem 3rem; }
.related-section h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-lighter);
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--border);
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }

/* ── SUBSCRIPTION PAGE ── */
.abo-header { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%); color: white; padding: 4rem 1.5rem; text-align: center; }
.abo-header h1 { font-size: 2.5rem; margin-bottom: 0.75rem; }
.abo-header p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 550px; margin: 0 auto; }
.abo-content { max-width: 820px; margin: 3rem auto; padding: 0 1.5rem; }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 30px rgba(15,38,69,0.1); }
.pricing-card.featured { border-color: var(--accent); }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-period { font-size: 0.8rem; color: var(--text-lighter); margin-bottom: 0.4rem; }
.pricing-amount { font-size: 2.8rem; font-weight: 700; font-family: var(--font-serif); line-height: 1.1; }
.pricing-amount sub { font-size: 1rem; font-weight: 400; color: var(--text-lighter); }
.pricing-desc { font-size: 0.83rem; color: var(--text-light); margin: 0.75rem 0 1.5rem; line-height: 1.5; }
.pricing-features li {
  font-size: 0.875rem;
  padding: 0.38rem 0;
  padding-left: 1.6rem;
  position: relative;
  color: var(--text-light);
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: #27ae60; font-weight: 700; }
.pricing-features { margin-bottom: 1.5rem; }

.abo-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 3rem 0; }
.abo-feature { background: white; border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--card-shadow); border: 1px solid var(--border-light); }
.abo-feature .feat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.abo-feature h4 { font-size: 1.0rem; margin-bottom: 0.4rem; }
.abo-feature p { font-size: 0.83rem; color: var(--text-light); line-height: 1.55; }

.faq-section { margin: 3rem 0; }
.faq-item { background: white; border-radius: var(--radius-sm); margin-bottom: 0.65rem; overflow: hidden; border: 1px solid var(--border); }
.faq-q { padding: 1.1rem 1.25rem; font-weight: 700; font-size: 0.92rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--primary); font-weight: 400; }
.faq-a { padding: 0 1.25rem 1.1rem; font-size: 0.88rem; color: var(--text-light); line-height: 1.65; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q::after { content: '−'; }

/* ── ABOUT PAGE ── */
.about-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%); color: white; padding: 5rem 1.5rem; text-align: center; }
.about-hero h1 { font-size: 2.75rem; margin-bottom: 1rem; }
.about-hero p { font-size: 1.12rem; color: rgba(255,255,255,0.7); max-width: 620px; margin: 0 auto; line-height: 1.68; }
.about-content { max-width: 780px; margin: 3.5rem auto; padding: 0 1.5rem; }
.about-content h2 { font-size: 1.65rem; margin: 2.5rem 0 1rem; }
.about-content p { font-size: 0.97rem; color: var(--text-light); line-height: 1.78; margin-bottom: 1.1rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin: 2rem 0; }
.team-card { background: white; border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center; box-shadow: var(--card-shadow); border: 1px solid var(--border-light); }
.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-sans);
}
.team-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-role { font-size: 0.76rem; color: var(--text-lighter); }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2.5rem 0; }
.stat-box { background: var(--dark); color: white; border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.stat-num { font-size: 2rem; font-weight: 700; font-family: var(--font-serif); color: var(--accent); }
.stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

/* ── LEGAL PAGES ── */
.legal-header { background: var(--dark); color: white; padding: 3rem 1.5rem; }
.legal-header h1 { font-size: 2rem; }
.legal-content { max-width: 740px; margin: 2.5rem auto; padding: 0 1.5rem 5rem; }
.legal-updated { font-size: 0.82rem; color: var(--text-lighter); margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.legal-content h2 { font-size: 1.3rem; margin: 2.5rem 0 0.8rem; }
.legal-content h3 { font-size: 1.05rem; margin: 1.5rem 0 0.6rem; }
.legal-content p { font-size: 0.93rem; line-height: 1.78; margin-bottom: 1rem; color: var(--text-light); }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.legal-content ul li { font-size: 0.93rem; line-height: 1.7; margin-bottom: 0.4rem; color: var(--text-light); }
.legal-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
}
.legal-box p { margin: 0 !important; }
.legal-box p + p { margin-top: 0.35rem !important; }

/* ── ALL ARTICLES PAGE ── */
.all-articles-header { background: var(--dark); color: white; padding: 3rem 1.5rem; }
.all-articles-header h1 { font-size: 2.1rem; margin-bottom: 0.4rem; }
.all-articles-header p { font-size: 0.95rem; color: rgba(255,255,255,0.55); }

/* ── TABLE STYLES ── */
.article-body table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 2rem 0; }
.article-body thead tr { background: var(--dark); color: white; }
.article-body th { padding: 0.75rem 1rem; text-align: left; font-weight: 700; }
.article-body td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); }
.article-body tbody tr:nth-child(even) { background: var(--bg); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .articles-grid-4 { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 860px) {
  .articles-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { height: 280px; }
  .abo-features { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .articles-grid, .articles-grid-2, .related-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .footer-top { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .abo-features { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .article-header h1 { font-size: 1.8rem; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-content { padding: 2.5rem 1.5rem; }
}
