/* ============================================================
   BLOG-ARTICLE.CSS — Página de artículo individual
   ============================================================ */

/* ---- TOP READING PROGRESS BAR ---- */
.reading-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: var(--grad-primary);
  z-index: 2000;
  transition: width .15s ease;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 12px rgba(0,180,160,.4);
}

/* ---- PAGE LAYOUT (main + sidebar) ---- */
.article-page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-12);
  max-width: 1240px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-16)) var(--space-8) var(--space-24);
  align-items: start;
}

/* ---- ARTICLE HERO ---- */
.article-hero { margin-bottom: var(--space-10); }

.article-back-link {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.article-back-link:hover { color: var(--color-primary-dark); }

.article-hero-tags {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.article-reading-time,
.article-date {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  white-space: nowrap;
}

.article-hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}
.article-hero-lead {
  font-size: var(--fs-lg);
  color: var(--color-text-muted);
  line-height: 1.75;
  border-left: 4px solid var(--color-primary);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-8);
  background: var(--color-bg-card2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
  background: var(--color-bg-card2);
}
.article-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.article-hero-image:hover img { transform: scale(1.02); }

/* ---- ARTICLE BODY ---- */
.article-body-wrap { margin-bottom: var(--space-12); }
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text);
  margin: var(--space-8) 0 var(--space-4);
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--color-text);
  margin: var(--space-6) 0 var(--space-3);
}
.article-body p { margin-bottom: var(--space-4); font-size: var(--fs-md); line-height: 1.8; color: var(--color-text-muted); }

/* Article quote */
.article-quote {
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-card2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-6) var(--space-8);
  margin: var(--space-8) 0;
}
.article-quote p { font-size: var(--fs-lg); color: var(--color-text); font-style: italic; line-height: 1.8; margin: 0 0 var(--space-3); }
.article-quote footer { font-size: var(--fs-sm); color: var(--color-text-light); }

/* Article tags */
.article-tag {
  padding: .4rem .85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
}
/* Inherit tag color classes from styles.css */

/* Styled list */
.article-list-styled { display: flex; flex-direction: column; gap: var(--space-4); margin: var(--space-6) 0; }
.list-item-styled {
  display: flex; align-items: flex-start; gap: var(--space-5);
  padding: var(--space-6) var(--space-7);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal), transform var(--transition-normal);
}
.list-item-styled:hover { border-color: var(--color-primary); transform: translateX(4px); }
.list-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.list-item-styled strong { display: block; color: var(--color-text); font-weight: 600; margin-bottom: var(--space-1); font-family: var(--font-display); }
.list-item-styled p { font-size: var(--fs-sm); margin: 0; line-height: 1.7; color: var(--color-text-muted); }

/* Highlight boxes */
.article-highlight-box {
  display: flex; align-items: flex-start; gap: var(--space-6);
  padding: var(--space-10) var(--space-10);
  border-radius: var(--radius-lg); margin: var(--space-8) 0;
  background: var(--color-bg-card2);
  border: 1px solid var(--color-border);
}
.highlight-box-teal {
  padding: var(--space-10) var(--space-10);
  background: var(--color-accent-soft);
  border-color: hsl(175,45%,74%);
}
html[data-theme="dark"] .highlight-box-teal { background: rgba(40,185,170,.07); border-color: rgba(40,185,170,.25); }
.highlight-box-amber {
  padding: var(--space-10) var(--space-10);
  background: rgba(255,190,50,.05);
  border-color: rgba(255,190,50,.2);
}
html[data-theme="dark"] .highlight-box-amber { background: rgba(255,190,50,.07); border-color: rgba(255,190,50,.25); }
.highlight-icon { font-size: 2.5rem; flex-shrink: 0; }
.highlight-content h3 { font-size: var(--fs-lg); margin-bottom: var(--space-3); }
.highlight-content p { font-size: var(--fs-sm); margin: 0; line-height: 1.7; }
.highlight-content p strong { color: var(--color-text); }

/* Stats inside highlight */
.highlight-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-4); margin-top: var(--space-4); }
.highlight-stat { text-align: center; }
.hs-num { display: block; font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 700; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: var(--space-1); }
.highlight-stat p { font-size: var(--fs-xs); margin: 0; }

/* Alert grid */
.article-alert-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-4); margin: var(--space-8) 0; }
.alert-card { padding: var(--space-6) var(--space-6); background: var(--color-bg-card); border: 1px solid rgba(220,60,60,.15); border-radius: var(--radius-md); }
html[data-theme="dark"] .alert-card { border-color: rgba(220,60,60,.2); }
.alert-card-icon { font-size: 1.8rem; display: block; margin-bottom: var(--space-3); }
.alert-card strong { display: block; color: var(--color-text); font-family: var(--font-display); font-weight: 600; font-size: var(--fs-md); margin-bottom: var(--space-3); }
.alert-card ul { display: flex; flex-direction: column; gap: var(--space-2); }
.alert-card li { font-size: var(--fs-xs); color: var(--color-text-muted); padding-left: var(--space-3); position: relative; list-style: none; line-height: 1.5; }
.alert-card li::before { content: '•'; position: absolute; left: 0; color: var(--color-danger); }

/* Steps */
.article-steps { display: flex; flex-direction: column; gap: var(--space-3); counter-reset: steps; margin: var(--space-6) 0; padding: 0; list-style: none; }
.article-steps li { display: flex; align-items: flex-start; gap: var(--space-4); padding: var(--space-5) var(--space-6); background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); font-size: var(--fs-sm); line-height: 1.7; counter-increment: steps; box-shadow: var(--shadow-sm); color: var(--color-text-muted); }
.article-steps li::before { content: counter(steps); display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; min-width: 28px; border-radius: var(--radius-full); background: var(--grad-primary); color: white; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm); flex-shrink: 0; }
.article-steps li strong { color: var(--color-text); }

/* TIC-TAC-TEP table */
.tic-tac-tep-table { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); margin: var(--space-6) 0; }
.ttt-row { display: grid; grid-template-columns: 100px 1fr 2fr; gap: var(--space-4); padding: var(--space-5) var(--space-6); align-items: center; border-bottom: 1px solid var(--color-border); font-size: var(--fs-sm); color: var(--color-text-muted); }
.ttt-row:last-child { border-bottom: none; }
.ttt-header { background: var(--color-bg-card2); font-family: var(--font-display); font-weight: 600; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--color-text-muted); }
.ttt-row:not(.ttt-header) { background: var(--color-bg-card); }
.ttt-row:not(.ttt-header):hover { background: var(--color-bg-card2); }
.ttt-badge { display: inline-block; padding: .2rem .8rem; border-radius: var(--radius-full); font-family: var(--font-display); font-weight: 700; font-size: .9rem; text-align: center; }
.ttt-tic { background: rgba(0,160,220,.1); color: hsl(200,80%,32%); }
.ttt-tac { background: var(--color-accent-soft); color: var(--color-primary-dark); }
.ttt-tep { background: rgba(0,180,100,.1); color: hsl(150,65%,30%); }
html[data-theme="dark"] .ttt-tic { background: rgba(0,160,220,.15); color: hsl(200,80%,62%); }
html[data-theme="dark"] .ttt-tac { background: rgba(40,185,170,.12); color: var(--color-primary-light); }
html[data-theme="dark"] .ttt-tep { background: rgba(0,180,100,.12); color: hsl(150,65%,55%); }

/* Forms grid */
.forms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-4); margin: var(--space-6) 0; }
.form-card { padding: var(--space-6) var(--space-6); background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: all var(--transition-normal); }
.form-card:hover { border-color: var(--color-primary); transform: translateY(-4px); }
.form-icon { font-size: 1.8rem; display: block; margin-bottom: var(--space-3); }
.form-card h4 { font-size: var(--fs-md); font-weight: 600; margin-bottom: var(--space-2); }
.form-card p { font-size: var(--fs-xs); line-height: 1.6; margin: 0; }

/* Citation bar */
.article-citation-bar { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; padding: var(--space-5) var(--space-6); background: var(--color-bg-card2); border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-top: var(--space-8); font-size: var(--fs-xs); }
.article-citation-bar span { color: var(--color-primary); font-weight: 700; font-family: var(--font-display); flex-shrink: 0; }
.article-citation-bar cite { font-style: italic; color: var(--color-text-muted); }

/* Sidebar emergency inside article */
.article-body-wrap .sidebar-emergency,
.article-body .sidebar-emergency {
  display: flex; align-items: flex-start; gap: var(--space-5);
  padding: var(--space-8) var(--space-8);
  background: var(--color-accent-soft);
  border: 1px solid hsl(175,45%,74%);
  border-radius: var(--radius-lg);
}
html[data-theme="dark"] .article-body-wrap .sidebar-emergency,
html[data-theme="dark"] .article-body .sidebar-emergency {
  background: rgba(40,185,170,.07);
  border-color: rgba(40,185,170,.25);
}
.article-body-wrap .sidebar-emergency-icon,
.article-body .sidebar-emergency-icon { font-size: 2.2rem; flex-shrink: 0; }
.article-body-wrap .sidebar-emergency strong,
.article-body .sidebar-emergency strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-md); color: var(--color-text); margin-bottom: var(--space-2); }
.article-body-wrap .sidebar-emergency-link,
.article-body .sidebar-emergency-link { display: block; color: var(--color-danger); font-family: var(--font-display); font-weight: 700; font-size: var(--fs-md); margin-bottom: var(--space-2); text-decoration: none; }
.article-body-wrap .sidebar-emergency-note,
.article-body .sidebar-emergency-note { font-size: var(--fs-xs); color: var(--color-text-light); display: block; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.article-sidebar { position: relative; }
.sidebar-sticky-wrap {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: calc(100vh - var(--nav-height) - 40px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent;
  padding-right: 2px;
}
.sidebar-sticky-wrap::-webkit-scrollbar { width: 3px; }
.sidebar-sticky-wrap::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 99px; }
.sidebar-sticky-wrap::-webkit-scrollbar-track { background: transparent; }

/* Progress box */
.sidebar-progress-box {
  padding: var(--space-6) var(--space-6);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.spb-header { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-4); }
.spb-icon { font-size: 1.8rem; flex-shrink: 0; }
.spb-title { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--color-text); }
.spb-pct { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-xl); background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.spb-bar-bg { height: 10px; background: var(--color-bg-card2); border-radius: var(--radius-full); overflow: hidden; margin-bottom: var(--space-3); }
.spb-bar-fill { height: 100%; background: var(--grad-primary); border-radius: var(--radius-full); width: 0; transition: width .3s ease; }
.spb-hint { font-size: var(--fs-xs); color: var(--color-text-light); text-align: center; margin: 0; }

/* Other articles */
.sidebar-articles {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 16px 14px;
  box-shadow: var(--shadow-sm);
}
.sidebar-articles-heading {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 14px;
  padding: 0 4px 12px;
  border-bottom: 2px solid var(--color-primary);
}
.sidebar-card {
  display: flex;
  gap: 12px;
  padding: 12px 10px;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  margin-bottom: 8px;
  border: 1px solid transparent;
}
.sidebar-card:last-child { margin-bottom: 0; }
.sidebar-card:hover { background: var(--color-bg-card2); border-color: var(--color-primary); transform: translateX(-3px); }
.sidebar-card-img { width: 72px; height: 58px; flex-shrink: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--color-bg-card2); }
.sidebar-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar-card-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; padding: 2px 0; }
.sidebar-tag { padding: .15rem .55rem; border-radius: var(--radius-full); font-family: var(--font-display); font-weight: 600; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; width: fit-content; }
.sidebar-card-info h5 { font-family: var(--font-display); font-size: var(--fs-sm); font-weight: 600; color: var(--color-text); line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin: 0; }
.sidebar-date { font-size: .7rem; color: var(--color-text-light); }

/* Sidebar emergency */
.sidebar-emergency {
  display: flex; align-items: flex-start; gap: var(--space-4);
  padding: 20px 18px;
  background: var(--color-accent-soft);
  border: 1px solid hsl(175,45%,74%);
  border-radius: var(--radius-lg);
}
html[data-theme="dark"] .sidebar-emergency { background: rgba(40,185,170,.07); border-color: rgba(40,185,170,.25); }
.sidebar-emergency-icon { font-size: 1.8rem; flex-shrink: 0; }
.sidebar-emergency strong { display: block; font-family: var(--font-display); font-size: var(--fs-sm); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-1); }
.sidebar-emergency-link { display: block; color: var(--color-danger); font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm); margin-bottom: 4px; text-decoration: none; }
.sidebar-emergency-note { font-size: var(--fs-xs); color: var(--color-text-light); }

/* ============================================================
   COMMENTS SECTION
   ============================================================ */
.comments-section {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-10);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-8);
}
.comments-heading { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-2); }
.comments-sub { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--space-8); }
.no-comments { font-size: var(--fs-sm); color: var(--color-text-light); font-style: italic; padding: var(--space-6) 0; }

/* Comment cards */
.comment-card { display: flex; gap: var(--space-4); padding: var(--space-6) var(--space-6); background: var(--color-bg-card2); border-radius: var(--radius-md); margin-bottom: var(--space-4); border: 1px solid var(--color-border); }
.comment-avatar { width: 44px; height: 44px; border-radius: var(--radius-full); background: var(--grad-primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-lg); color: white; flex-shrink: 0; }
.comment-content { flex: 1; min-width: 0; }
.comment-header { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-2); }
.comment-author { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--color-text); }
.comment-date { font-size: var(--fs-xs); color: var(--color-text-light); }
.comment-text { font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.7; margin: 0; }

/* Comment form */
.comment-form-wrapper {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-8);
  margin-top: var(--space-6);
}
.comment-form-title { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-6); }
.comment-form-grid { display: grid; gap: var(--space-5); margin-bottom: var(--space-6); }
.form-field { display: flex; flex-direction: column; gap: var(--space-2); }
.form-field label { font-family: var(--font-display); font-size: var(--fs-sm); font-weight: 600; color: var(--color-text); }
.form-field input, .form-field textarea {
  width: 100%; padding: var(--space-4) var(--space-5);
  background: var(--color-bg-card2); border: 2px solid var(--color-border);
  border-radius: var(--radius-md); font-family: var(--font-body); font-size: var(--fs-md);
  color: var(--color-text); transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(40,185,170,.15); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--color-text-light); }
.char-counter { font-size: var(--fs-xs); color: var(--color-text-light); text-align: right; }
.comment-privacy-note { font-size: var(--fs-xs); color: var(--color-text-light); background: var(--color-bg-card2); padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm); border: 1px solid var(--color-border); }

/* Success */
.comment-success {
  text-align: center;
  padding: var(--space-10) var(--space-8);
  background: var(--color-accent-soft); border: 1px solid hsl(175,45%,74%);
  border-radius: var(--radius-lg); margin-top: var(--space-6);
}
html[data-theme="dark"] .comment-success { background: rgba(40,185,170,.07); border-color: rgba(40,185,170,.25); }
.success-icon { font-size: 3rem; margin-bottom: var(--space-4); }
.comment-success h4 { font-size: var(--fs-xl); margin-bottom: var(--space-3); }
.comment-success p { font-size: var(--fs-sm); }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-panel {
  margin-top: var(--space-8);
  padding: var(--space-8) var(--space-8);
  background: hsl(210,25%,10%); border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg); color: white;
}
html[data-theme="dark"] .admin-panel { background: hsl(215,28%,8%); }
.admin-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-4); }
.admin-panel-header h4 { font-size: var(--fs-xl); font-weight: 600; }
.admin-close-btn { background: rgba(255,255,255,.1); border: none; color: white; width: 32px; height: 32px; border-radius: var(--radius-full); cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background var(--transition-fast); }
.admin-close-btn:hover { background: rgba(255,255,255,.2); }
.admin-panel-sub { font-size: var(--fs-sm); color: rgba(255,255,255,.7); margin-bottom: var(--space-4); }
.admin-comment-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); padding: var(--space-5) var(--space-5); margin-bottom: var(--space-3); }
.admin-comment-meta { font-size: var(--fs-xs); color: rgba(255,255,255,.6); margin-bottom: var(--space-2); }
.admin-comment-card p { font-size: var(--fs-sm); color: rgba(255,255,255,.9); margin: 0 0 var(--space-4); }
.admin-actions { display: flex; gap: var(--space-3); }
.btn-approve, .btn-reject { padding: .35rem .9rem; border-radius: var(--radius-full); border: none; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-xs); transition: all var(--transition-fast); }
.btn-approve { background: rgba(40,185,170,.25); color: var(--color-primary-light); }
.btn-approve:hover { background: rgba(40,185,170,.4); }
.btn-reject { background: rgba(220,60,60,.2); color: hsl(0,72%,68%); }
.btn-reject:hover { background: rgba(220,60,60,.35); }
.pending-list { max-height: 300px; overflow-y: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .article-page-layout { grid-template-columns: 1fr 280px; gap: var(--space-8); }
  .highlight-stats-grid { grid-template-columns: repeat(2,1fr); }
  .forms-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .article-page-layout { grid-template-columns: 1fr; padding: calc(var(--nav-height) + var(--space-6)) var(--space-4) var(--space-16); }
  .article-sidebar { order: -1; }
  .sidebar-sticky-wrap { position: static; flex-direction: row; overflow-x: auto; overflow-y: visible; max-height: none; gap: 12px; padding-bottom: var(--space-2); }
  .sidebar-sticky-wrap::-webkit-scrollbar { height: 3px; width: auto; }
  .sidebar-articles, .sidebar-emergency { min-width: 280px; }
  .sidebar-progress-box { min-width: 240px; }
  .article-alert-grid { grid-template-columns: 1fr; }
  .forms-grid { grid-template-columns: 1fr 1fr; }
  .comments-section { padding: var(--space-6) var(--space-5); }
  .ttt-row { grid-template-columns: 80px 1fr; }
  .ttt-row :nth-child(3) { display: none; }
  .ttt-header span:nth-child(3) { display: none; }
}
@media (max-width: 480px) {
  .forms-grid { grid-template-columns: 1fr; }
  .highlight-stats-grid { grid-template-columns: 1fr 1fr; }
  .article-hero-title { font-size: 1.5rem; }
}
