/* ============================================
   alimentation.fr — Style principal
   Magazine culinaire premium · Mobile-first
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* --- Variables --- */
:root {
  --vert-profond: #2D6A4F;
  --vert-clair: #95D5B2;
  --vert-pale: #d8f3dc;
  --fond-creme: #FEFAE0;
  --orange-terre: #E76F51;
  --orange-clair: #f4a261;
  --anthracite: #264653;
  --blanc: #ffffff;
  --gris-clair: #f0efe8;
  --gris-moyen: #c9c7b8;
  --gris-texte: #5a6670;
  --font-titre: 'DM Serif Display', Georgia, serif;
  --font-corps: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(38,70,83,0.08);
  --shadow-hover: 0 6px 24px rgba(38,70,83,0.14);
  --transition: 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-corps);
  color: var(--anthracite);
  background: var(--fond-creme);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vert-profond); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-terre); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-titre); color: var(--anthracite); line-height: 1.25; }

/* --- Utility --- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }

/* ===========================
   HEADER & NAV
   =========================== */
.site-header {
  background: var(--blanc);
  border-bottom: 1px solid var(--gris-clair);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(38,70,83,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
}
.logo {
  font-family: var(--font-titre);
  font-size: 1.5rem;
  color: var(--vert-profond);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--orange-terre); }

/* Desktop nav */
.main-nav { display: none; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--anthracite);
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange-terre);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--vert-profond); }
.main-nav a:hover::after { width: 100%; }

/* Mobile burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--anthracite);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--blanc);
  padding: 24px;
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--anthracite);
  border-bottom: 1px solid var(--gris-clair);
}
.mobile-menu a:hover { color: var(--vert-profond); }

@media (min-width: 768px) {
  .main-nav { display: block; }
  .burger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ===========================
   BREADCRUMBS
   =========================== */
.breadcrumbs {
  padding: 16px 0 8px;
  font-size: 0.85rem;
  color: var(--gris-texte);
}
.breadcrumbs a { color: var(--vert-profond); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 6px; color: var(--gris-moyen); }

/* ===========================
   HERO
   =========================== */
.hero {
  background: linear-gradient(135deg, var(--vert-profond) 0%, #1b4332 100%);
  color: var(--blanc);
  padding: 60px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(149,213,178,0.12);
}
.hero h1 {
  font-size: 2.2rem;
  color: var(--blanc);
  margin-bottom: 16px;
  position: relative;
}
.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 28px;
  opacity: 0.92;
  line-height: 1.6;
  position: relative;
}
.hero-sub { font-size: 2.8rem; }

@media (min-width: 768px) {
  .hero { padding: 80px 0 100px; }
  .hero h1 { font-size: 3rem; }
  .hero-sub { font-size: 3.6rem; }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-corps);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--orange-terre);
  color: var(--blanc);
}
.btn-primary:hover {
  background: #d4553d;
  color: var(--blanc);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(231,111,81,0.35);
}
.btn-secondary {
  background: var(--vert-profond);
  color: var(--blanc);
}
.btn-secondary:hover {
  background: #1b4332;
  color: var(--blanc);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--vert-profond);
  color: var(--vert-profond);
}
.btn-outline:hover {
  background: var(--vert-profond);
  color: var(--blanc);
}
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-block { display: block; width: 100%; }

/* ===========================
   CARDS
   =========================== */
.card {
  background: var(--blanc);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-img {
  width: 100%;
  height: 200px;
  background: var(--gris-clair);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris-texte);
  font-size: 0.85rem;
  text-align: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.card-img::before {
  content: '📷';
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}
.card-body { padding: 20px; }
.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.card-body p {
  color: var(--gris-texte);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.card-tag {
  display: inline-block;
  background: var(--vert-pale);
  color: var(--vert-profond);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===========================
   SECTIONS
   =========================== */
.section { padding: 60px 0; }
.section-alt { background: var(--blanc); }
.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--gris-texte);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

/* Univers navigation (homepage) */
.univers-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .univers-grid { grid-template-columns: repeat(5, 1fr); } }
.univers-item {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.univers-item:hover {
  border-color: var(--vert-profond);
  transform: translateY(-3px);
}
.univers-item .icon { font-size: 2.2rem; margin-bottom: 10px; }
.univers-item h3 { font-size: 1rem; margin-bottom: 4px; }
.univers-item p { font-size: 0.8rem; color: var(--gris-texte); }

/* ===========================
   ARTICLE LAYOUT
   =========================== */
.article-header {
  padding: 40px 0 24px;
  text-align: center;
}
.article-header h1 {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto 16px;
}
.article-meta {
  color: var(--gris-texte);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 4px; }

.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px 60px;
}
.article-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--vert-pale);
}
.article-content h3 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--vert-profond);
}
.article-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.article-content ul, .article-content ol {
  margin: 0 0 20px 24px;
  list-style: disc;
}
.article-content ol { list-style: decimal; }
.article-content li {
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.article-content strong { color: var(--anthracite); }

@media (min-width: 768px) {
  .article-header h1 { font-size: 2.6rem; }
}

/* Image placeholder in articles */
.img-placeholder {
  background: var(--gris-clair);
  border-radius: var(--radius-sm);
  padding: 40px 24px;
  text-align: center;
  color: var(--gris-texte);
  font-size: 0.9rem;
  margin: 24px 0;
  border: 2px dashed var(--gris-moyen);
}
.img-placeholder::before {
  content: '🖼️';
  display: block;
  font-size: 2.5rem;
  margin-bottom: 8px;
}

/* ===========================
   ENCADRÉS / CALLOUTS
   =========================== */
.callout {
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.98rem;
}
.callout-info {
  background: #e8f4f0;
  border-left: 4px solid var(--vert-profond);
}
.callout-warning {
  background: #fef3e2;
  border-left: 4px solid var(--orange-terre);
}
.callout-method {
  background: var(--vert-pale);
  border-left: 4px solid var(--vert-profond);
}
.callout h4 {
  font-family: var(--font-corps);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}
.callout p { margin-bottom: 8px; }
.callout p:last-child { margin-bottom: 0; }

/* Disclaimer santé */
.disclaimer {
  background: #fff3e0;
  border: 1px solid var(--orange-clair);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: #7a4a1a;
}
.disclaimer strong { color: var(--orange-terre); }

/* ===========================
   TABLES (comparatifs)
   =========================== */
.table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--blanc);
  min-width: 640px;
}
.comparison-table thead {
  background: var(--vert-profond);
  color: var(--blanc);
}
.comparison-table th {
  padding: 14px 16px;
  font-family: var(--font-corps);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: left;
  white-space: nowrap;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gris-clair);
  font-size: 0.92rem;
  vertical-align: top;
}
.comparison-table tbody tr:hover { background: #f7faf5; }
.comparison-table .highlight { background: #f0fdf4; }
.note-table {
  font-weight: 700;
  color: var(--vert-profond);
}

/* ===========================
   CTA AFFILIATION
   =========================== */
.cta-box {
  background: linear-gradient(135deg, var(--vert-profond), #1b4332);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  color: var(--blanc);
  margin: 32px 0;
}
.cta-box h3 { color: var(--blanc); font-size: 1.4rem; margin-bottom: 12px; }
.cta-box p { opacity: 0.9; margin-bottom: 20px; }

.product-card {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .product-card { flex-direction: row; align-items: center; }
}
.product-card .product-info { flex: 1; }
.product-card h4 { font-size: 1.15rem; margin-bottom: 6px; }
.product-card .price { font-weight: 700; color: var(--orange-terre); font-size: 1.1rem; }

/* ===========================
   SAVIEZ-VOUS
   =========================== */
.fact-box {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  text-align: center;
}
.fact-box .icon { font-size: 2.4rem; margin-bottom: 12px; }
.fact-box h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--vert-profond); }
.fact-box p { color: var(--gris-texte); font-size: 1rem; }

/* ===========================
   NEWSLETTER
   =========================== */
.newsletter {
  background: var(--vert-profond);
  color: var(--blanc);
  padding: 50px 0;
  text-align: center;
}
.newsletter h2 { color: var(--blanc); font-size: 1.6rem; margin-bottom: 10px; }
.newsletter p { opacity: 0.9; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-corps);
  outline: none;
}
.newsletter-form input[type="email"]:focus { box-shadow: 0 0 0 3px rgba(149,213,178,0.5); }
@media (min-width: 640px) {
  .newsletter-form { flex-direction: row; }
  .newsletter-form input[type="email"] { flex: 1; }
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--anthracite);
  color: rgba(255,255,255,0.8);
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 {
  color: var(--blanc);
  font-family: var(--font-corps);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--vert-clair); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--anthracite);
  color: var(--blanc);
  padding: 18px 24px;
  z-index: 10000;
  display: none;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.cookie-banner.visible { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.cookie-banner p { font-size: 0.9rem; max-width: 700px; margin: 0; }
.cookie-banner a { color: var(--vert-clair); text-decoration: underline; }
.cookie-banner .btn { padding: 10px 24px; font-size: 0.9rem; }

/* ===========================
   CALCULATEURS (OUTILS)
   =========================== */
.tool-section {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
  box-shadow: var(--shadow);
}
.tool-section h2 { font-size: 1.5rem; margin-bottom: 8px; }
.tool-section .tool-desc { color: var(--gris-texte); margin-bottom: 24px; }

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gris-clair);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-corps);
  background: var(--fond-creme);
  color: var(--anthracite);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--vert-profond);
}
.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }

.result-box {
  background: var(--vert-pale);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-top: 24px;
  display: none;
}
.result-box.visible { display: block; }
.result-number {
  font-family: var(--font-titre);
  font-size: 2.8rem;
  color: var(--vert-profond);
  margin-bottom: 8px;
}
.result-label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.result-text {
  color: var(--gris-texte);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Radio buttons style */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  cursor: pointer;
  padding: 8px 14px;
  border: 2px solid var(--gris-clair);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.radio-group input[type="radio"] { accent-color: var(--vert-profond); }
.radio-group label:has(input:checked) {
  border-color: var(--vert-profond);
  background: var(--vert-pale);
}

/* ===========================
   RECIPE CARDS
   =========================== */
.recipe-card {
  background: var(--blanc);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 24px 0;
}
.recipe-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gris-clair);
}
.recipe-header h3 { font-size: 1.3rem; margin-bottom: 8px; }
.recipe-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-time { background: #e0f2fe; color: #0369a1; }
.badge-diff { background: var(--vert-pale); color: var(--vert-profond); }
.badge-cost { background: #fef3c7; color: #92400e; }
.badge-cal { background: #fce7f3; color: #9d174d; }

.recipe-body { padding: 20px 24px; }
.recipe-body h4 { margin-bottom: 10px; font-size: 1rem; }
.recipe-ingredients {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.recipe-ingredients li {
  padding: 4px 0;
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}
.recipe-ingredients li::before {
  content: '•';
  color: var(--vert-profond);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.recipe-steps { list-style: decimal; margin: 0 0 16px 20px; }
.recipe-steps li { padding: 4px 0; font-size: 0.95rem; }

.recipe-nutrition {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: var(--gris-clair);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 16px;
  text-align: center;
}
.recipe-nutrition .nutri-item { font-size: 0.85rem; }
.recipe-nutrition .nutri-val {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--vert-profond);
  display: block;
}

/* ===========================
   TABLE OF CONTENTS
   =========================== */
.toc {
  background: var(--blanc);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.toc h4 {
  font-family: var(--font-corps);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--vert-profond);
}
.toc ol {
  list-style: decimal;
  margin-left: 20px;
}
.toc li {
  padding: 4px 0;
}
.toc a {
  color: var(--anthracite);
  font-size: 0.95rem;
}
.toc a:hover { color: var(--vert-profond); }

/* ===========================
   PAGE INSTITUTIONAL
   =========================== */
.page-simple {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.page-simple h1 { font-size: 2rem; margin-bottom: 24px; }
.page-simple h2 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--vert-profond); }
.page-simple p { margin-bottom: 14px; font-size: 1.02rem; }
.page-simple ul { margin: 0 0 16px 24px; list-style: disc; }
.page-simple li { margin-bottom: 6px; font-size: 0.98rem; }

/* ===========================
   RATING STARS
   =========================== */
.stars { color: #f59e0b; letter-spacing: 2px; }

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 80px; right: 20px;
  width: 44px; height: 44px;
  background: var(--vert-profond);
  color: var(--blanc);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: #1b4332; transform: translateY(-2px); }

/* ===========================
   PRINT
   =========================== */
@media print {
  .site-header, .site-footer, .cookie-banner, .newsletter, .scroll-top, .burger, .mobile-menu { display: none !important; }
  body { background: #fff; }
  .article-content { max-width: 100%; }
}
