/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #fafaf8;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-secondary: #555;
  --color-text-muted: #888;
  --color-accent: #1a5632;
  --color-accent-light: #e8f2ec;
  --color-accent-hover: #124025;
  --color-border: #e2e0dc;
  --color-border-light: #f0eeeb;
  --color-highlight: #f5f0e6;
  --color-red: #c0392b;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --max-width: 1200px;
  --content-width: 740px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --transition: 0.2s ease;
}

html { font-size: 17px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }

img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1px;
  font-weight: 500;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-main a {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: border-color var(--transition);
}

.nav-search:hover { border-color: var(--color-accent); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: all var(--transition);
}

/* category bar */
.category-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
}

.category-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.category-bar a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 10px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.category-bar a:hover,
.category-bar a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* ===== HERO / FEATURED ===== */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.hero-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #2a2a2a;
  min-height: 440px;
}

.hero-main .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.hero-main:hover .hero-img { opacity: 0.6; }

.hero-main .hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  color: white;
}

.hero-badge {
  display: inline-block;
  background: var(--color-red);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
  width: fit-content;
}

.hero-badge.green { background: var(--color-accent); }

.hero-main h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  line-height: 1.25;
  margin-bottom: 12px;
  font-weight: 700;
}

.hero-main p {
  font-size: 0.92rem;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 500px;
}

.hero-meta {
  margin-top: 14px;
  font-size: 0.78rem;
  opacity: 0.7;
}

.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #2a2a2a;
  flex: 1;
  min-height: 200px;
}

.hero-card .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.65;
  transition: opacity var(--transition);
}

.hero-card:hover .hero-img { opacity: 0.55; }

.hero-card .hero-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  color: white;
}

.hero-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-card .hero-meta {
  margin-top: 8px;
  font-size: 0.75rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.section-header a {
  font-size: 0.82rem;
  font-weight: 600;
}

/* ===== ARTICLE CARDS GRID ===== */
.articles-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--color-surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
  cursor: pointer;
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #e8e6e1, #d5d2cc);
}

.article-card-body {
  padding: 20px;
}

.article-card-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.article-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--color-text);
  font-weight: 700;
}

.article-card-body p {
  font-size: 0.84rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.article-card-meta .author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* ===== NEWSLETTER BANNER ===== */
.newsletter-banner {
  background: var(--color-accent);
  color: white;
  padding: 48px 24px;
  text-align: center;
}

.newsletter-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.newsletter-banner p {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: white; }

.newsletter-form button {
  padding: 12px 28px;
  background: white;
  color: var(--color-accent);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}

.newsletter-form button:hover { background: var(--color-highlight); }

/* ===== TRUST BAR ===== */
.trust-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-item .trust-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
}

.trust-item .trust-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 48px 24px 24px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #333;
}

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: #999;
}

.footer-col a {
  display: block;
  color: #999;
  font-size: 0.84rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: white; }

.footer-about .logo {
  margin-bottom: 12px;
}

.footer-about .logo .logo-icon { background: var(--color-accent); }
.footer-about .logo .logo-text { color: white; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #666;
}

.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: white; }

/* ===== ARTICLE PAGE ===== */
.article-header {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 48px 24px 0;
}

.article-breadcrumb {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.article-breadcrumb a { color: var(--color-text-muted); }
.article-breadcrumb a:hover { color: var(--color-accent); }

.article-category-tag {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.article-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.article-author-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 32px;
}

.article-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1rem;
}

.article-author-info .name {
  font-weight: 600;
  font-size: 0.92rem;
}

.article-author-info .details {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.article-share {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition);
  background: none;
}

.share-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-light);
}

/* Article body content */
.article-body {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 60px;
}

.article-body p {
  margin-bottom: 1.3em;
  font-size: 1rem;
  line-height: 1.78;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  margin-top: 2.5em;
  margin-bottom: 0.7em;
  font-weight: 700;
  line-height: 1.25;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.3em;
  padding-left: 1.5em;
}

.article-body li {
  margin-bottom: 0.5em;
  line-height: 1.65;
}

.article-body strong { font-weight: 600; }

.article-body blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 16px 24px;
  margin: 1.5em 0;
  background: var(--color-accent-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-text-secondary);
}

/* table wrapper for mobile scroll */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5em 0;
}

.table-wrap table {
  margin: 0;
}

/* tables */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.88rem;
  min-width: 540px;
}

.article-body thead { background: var(--color-accent); color: white; }
.article-body th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
}

.article-body td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--color-border-light);
}

.article-body tbody tr:hover { background: var(--color-accent-light); }
.article-body tbody tr:nth-child(even) { background: var(--color-bg); }
.article-body tbody tr:nth-child(even):hover { background: var(--color-accent-light); }

.winner-cell { color: var(--color-accent); font-weight: 600; }

/* image placeholders */
.article-img {
  width: 100%;
  border-radius: 10px;
  margin: 1.5em 0 0.5em;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e6e1, #d5d2cc);
  border: 1px solid var(--color-border-light);
}

.article-img .img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 40px;
  text-align: center;
  color: #888;
  font-size: 0.88rem;
  font-style: italic;
}

.article-img-caption {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 1.5em;
  line-height: 1.5;
}

/* CTA boxes */
.article-cta {
  background: linear-gradient(135deg, #1a5632, #0d3a1f);
  color: white;
  padding: 32px 36px;
  border-radius: 12px;
  margin: 2.5em 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26, 86, 50, 0.3);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.article-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4ecdc4, #45b7aa, #4ecdc4);
}

.article-cta a {
  display: inline-block;
  color: #1a5632;
  background: white;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.article-cta a:hover {
  background: #f0faf5;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.article-cta p {
  margin-bottom: 0.8em !important;
  font-size: 1.25rem !important;
  font-weight: 700;
  opacity: 1;
  letter-spacing: 0.01em;
}

/* #1 Recommendation banner */
.recommend-banner {
  background: linear-gradient(135deg, #f0faf5, #e0f2eb);
  border: 2px solid #1a5632;
  border-radius: 12px;
  padding: 28px 32px;
  margin: 2.5em 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.recommend-banner .recommend-badge {
  background: #1a5632;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recommend-banner .recommend-content {
  flex: 1;
}

.recommend-banner .recommend-content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--color-text);
}

.recommend-banner .recommend-content p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
}

.recommend-banner .recommend-link {
  background: #1a5632;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.recommend-banner .recommend-link:hover {
  background: #124025;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .recommend-banner {
    flex-direction: column;
    text-align: center;
  }
  .recommend-banner .recommend-link {
    width: 100%;
    text-align: center;
  }
}

/* disclosure */
.article-disclosure {
  background: var(--color-highlight);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 2em 0;
  font-size: 0.84rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* author bio at end */
.author-bio {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 28px;
  margin-top: 2em;
}

.author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.author-bio h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.author-bio p {
  font-size: 0.86rem !important;
  color: var(--color-text-secondary);
  line-height: 1.55 !important;
  margin-bottom: 0 !important;
}

/* ===== ABOUT PAGE ===== */
.page-header {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 48px 24px 0;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.page-header .subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}

.page-body {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.page-body p {
  margin-bottom: 1.3em;
  line-height: 1.78;
}

.page-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-top: 2em;
  margin-bottom: 0.7em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 2em 0;
}

.team-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.5rem;
  margin: 0 auto 14px;
}

.team-card h3 { font-size: 1rem; margin-bottom: 2px; }
.team-card .role { font-size: 0.82rem; color: var(--color-accent); margin-bottom: 10px; }
.team-card p { font-size: 0.84rem; color: var(--color-text-secondary); line-height: 1.5; }

/* values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2em 0;
}

.value-card {
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.value-card p { font-size: 0.86rem; color: var(--color-text-secondary); line-height: 1.55; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-sidebar {
    flex-direction: row;
  }

  .hero-card { min-height: 160px; }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  html { font-size: 16px; }

  .nav-main, .nav-search { display: none; }
  .hamburger { display: block; }

  .header-top { padding: 12px 16px; }
  .logo-icon { width: 28px; height: 28px; font-size: 14px; }
  .logo-text { font-size: 1rem; }
  .logo-tagline { font-size: 0.6rem; }

  .category-bar-inner { padding: 0 16px; }

  .hero { padding: 24px 16px; }
  .hero-main { min-height: 300px; }
  .hero-main h2 { font-size: 1.45rem; }

  .hero-sidebar { flex-direction: column; }

  .articles-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 32px;
  }

  .article-header { padding: 32px 16px 0; }
  .article-header h1 { font-size: 1.75rem; }
  .article-body { padding: 0 16px 40px; }

  .newsletter-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .trust-bar { gap: 28px; }

  .article-author-bar { flex-wrap: wrap; }
  .article-share { margin-left: 0; }
}
