/* ==========================================================================
   NUTRIPRIA INDONESIA - CLINICAL NUTRITION & DIETETICS STYLESHEET
   Author: dr. Rian Firmansyah, Sp.GK, M.Kes
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  --forest: #1b4332;
  --forest-dark: #081c15;
  --forest-mid: #2d6a4f;
  --forest-light: #d8f3dc;
  --forest-subtle: #f0fdf4;
  
  --amber: #b07d62;
  --amber-dark: #8c583f;
  --amber-light: #fbeee6;
  
  --gold: #d4a373;
  --gold-light: #fefae0;
  
  --text-main: #1f2421;
  --text-muted: #52796f;
  --text-light: #84a98c;
  
  --bg-page: #fbfbfa;
  --bg-card: #ffffff;
  --bg-subtle: #f3f4f1;
  
  --border-color: #e5e7eb;
  --border-focus: #2d6a4f;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.05);
  --shadow-md: 0 4px 8px -2px rgba(27, 67, 50, 0.08), 0 2px 4px -2px rgba(27, 67, 50, 0.04);
  --shadow-lg: 0 12px 20px -4px rgba(27, 67, 50, 0.1), 0 4px 6px -2px rgba(27, 67, 50, 0.05);
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-width: 1140px;
  --article-width: 820px;
  --transition: all 0.25s ease-in-out;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.75;
  overflow-x: hidden;
}

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

a {
  color: var(--forest-mid);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--forest);
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.article-container {
  width: 100%;
  max-width: var(--article-width);
  margin-left: auto;
  margin-right: auto;
}

/* Top Verified Nutrition Bar */
.nutrition-topbar {
  background-color: var(--forest-dark);
  color: #a7c957;
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nutrition-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nutrition-badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #6ee7b7;
  font-weight: 600;
}

.topbar-nav-links {
  display: flex;
  gap: 1.25rem;
}

.topbar-nav-links a {
  color: #e5e7eb;
  font-size: 0.8125rem;
}

.topbar-nav-links a:hover {
  color: #ffffff;
}

/* Main Site Navigation */
.main-navbar {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.brand-nutri {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--forest);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.brand-leaf-icon {
  width: 32px;
  height: 32px;
  background-color: var(--forest-light);
  color: var(--forest);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.brand-nutri span {
  color: var(--amber);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
}

.nav-links-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.nav-links-list li {
  margin: 0;
  white-space: nowrap;
}

.nav-links-list a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;
}

.nav-links-list a:hover,
.nav-links-list a.active {
  color: var(--forest-mid);
}

.nav-links-list a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--forest-mid);
  border-radius: var(--radius-full);
}

.btn-cta-diet {
  background-color: var(--forest-mid);
  color: #ffffff !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem !important;
  box-shadow: 0 2px 4px rgba(45, 106, 79, 0.25);
  margin-left: 0.25rem;
}

.btn-cta-diet:hover {
  background-color: var(--forest);
  transform: translateY(-1px);
}

.burger-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
}

.burger-menu-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--forest);
  border-radius: 2px;
  transition: var(--transition);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 0.85rem 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb-nav li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.breadcrumb-nav a {
  color: var(--text-muted);
}

.breadcrumb-nav a:hover {
  color: var(--forest-mid);
}

.breadcrumb-nav .active {
  color: var(--forest);
  font-weight: 700;
}

/* Editorial Longread Hero */
.editorial-hero {
  padding: 2.75rem 0 1.5rem;
  background: #ffffff;
}

.editorial-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--forest-light);
  color: var(--forest-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.editorial-headline {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.28;
  color: var(--forest-dark);
  margin-bottom: 1.15rem;
}

.editorial-lead {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.nutritionist-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--forest-subtle);
  border-radius: var(--radius-md);
  border: 1px solid #bbf7d0;
  margin-bottom: 2rem;
}

.nutritionist-mini-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nutritionist-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--forest-mid);
}

.nutritionist-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.nutritionist-details p {
  font-size: 0.8125rem;
  color: var(--forest-mid);
  margin: 0;
  font-weight: 600;
}

.meta-stats-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.8125rem;
  color: #4b5563;
}

.meta-item-tag {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.clinical-evidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Hero Feature Image */
.feature-media-wrap {
  margin: 1.5rem 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: var(--forest-dark);
}

.feature-media-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.feature-caption {
  padding: 0.85rem 1.25rem;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}

/* Editorial Article Body */
.editorial-article-content {
  background-color: #ffffff;
  padding: 2.75rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 3rem;
}

.editorial-article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--forest-dark);
  margin: 2.5rem 0 1rem;
  line-height: 1.35;
  position: relative;
  padding-left: 1rem;
}

.editorial-article-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 4px;
  background: var(--forest-mid);
  border-radius: var(--radius-full);
}

.editorial-article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin: 1.75rem 0 0.75rem;
}

.editorial-article-content p {
  font-size: 1.0625rem;
  color: #334155;
  margin-bottom: 1.4rem;
  line-height: 1.8;
}

.editorial-article-content strong {
  color: var(--forest-dark);
  font-weight: 700;
}

/* Callouts & Quotes */
.doctor-quote-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #e8f5e9 100%);
  border-left: 4px solid var(--forest-mid);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.doctor-quote-banner p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--forest-dark);
  margin-bottom: 0.4rem;
}

.doctor-quote-banner .signature {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest-mid);
  text-align: right;
  font-style: normal;
}

.deficiency-alert-box {
  background-color: var(--gold-light);
  border: 1px solid #fde047;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.deficiency-alert-box svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #ca8a04;
  margin-top: 0.2rem;
}

.alert-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #854d0e;
  margin-bottom: 0.35rem;
}

.alert-body p {
  font-size: 0.9375rem;
  color: #713f12;
  margin: 0;
  line-height: 1.6;
}

/* Superfood Cards Grid */
.superfood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.superfood-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.superfood-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #86efac;
}

.superfood-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-mid), var(--amber));
}

.superfood-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.superfood-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.nutrient-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  background-color: var(--forest-light);
  color: var(--forest-dark);
}

.superfood-desc {
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.clinical-dose-box {
  background-color: var(--bg-subtle);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  color: var(--forest-dark);
}

.clinical-dose-box strong {
  color: var(--forest-mid);
}

/* Interactive Nutrient Intake Calculator */
.intake-calculator-card {
  background-color: #ffffff;
  border: 2px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-md);
}

.calc-title {
  text-align: center;
  margin-bottom: 1.75rem;
}

.calc-title h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--forest-dark);
  margin-bottom: 0.4rem;
}

.calc-title p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

.calc-row {
  margin-bottom: 1.25rem;
}

.calc-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.form-select,
.form-text-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background-color: #ffffff;
  color: var(--text-main);
  transition: var(--transition);
}

.form-select:focus,
.form-text-input:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.btn-calc-action {
  width: 100%;
  background-color: var(--forest);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-top: 0.5rem;
}

.btn-calc-action:hover {
  background-color: var(--forest-mid);
  transform: translateY(-1px);
}

.intake-result-card {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background-color: var(--forest-subtle);
  border: 1px solid #86efac;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.intake-result-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.intake-result-card p {
  font-size: 0.9375rem;
  color: #14532d;
  margin-bottom: 0.75rem;
}

/* 7-Day Meal Matrix Planner Widget */
.meal-matrix-widget {
  background: linear-gradient(145deg, var(--forest-dark), var(--forest));
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-xl);
}

.meal-matrix-widget h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.35rem;
}

.meal-matrix-widget p {
  color: #a7f3d0;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1.75rem;
}

.day-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tab-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #e5e7eb;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: #ffffff;
  color: var(--forest-dark);
}

.meal-day-content {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.meal-slot {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meal-slot:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.slot-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--gold);
  color: var(--forest-dark);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.slot-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.slot-info p {
  font-size: 0.875rem;
  color: #cbd5e1;
  text-align: left;
  margin: 0;
}

/* FAQ Accordion */
.editorial-faq-wrap {
  margin: 3rem 0;
}

.faq-card-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-card-item.active {
  border-color: var(--forest-mid);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
  color: var(--forest-mid);
  flex-shrink: 0;
}

.faq-card-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
}

.faq-card-item.active .faq-expandable {
  max-height: 1000px;
  transition: max-height 0.4s ease-in-out;
  padding-bottom: 1.25rem;
}

.faq-expandable p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Author Full Profile Card */
.nutritionist-full-profile {
  background: linear-gradient(to right, #f8fafc, #f1f5f9);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 3rem 0;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nutritionist-photo-lg {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-md);
}

.nutritionist-profile-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--forest-dark);
  margin-bottom: 0.2rem;
}

.nutritionist-role-title {
  font-size: 0.875rem;
  color: var(--forest-mid);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.nutritionist-profile-body p {
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.nutri-credentials-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nutri-badge-item {
  font-size: 0.75rem;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  color: #334155;
}

/* Consultation Lead Magnet Box */
.diet-plan-cta-box {
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.diet-plan-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.diet-plan-cta-box p {
  color: #d8f3dc;
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 1.5rem;
}

.lead-diet-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.5rem;
}

.lead-diet-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  border: none;
  font-size: 0.95rem;
}

.lead-diet-form input:focus {
  outline: 2px solid var(--gold);
}

.lead-diet-form button {
  background-color: var(--amber);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: var(--transition);
}

.lead-diet-form button:hover {
  background-color: var(--amber-dark);
}

/* Dietary Disclaimer Box */
.dietary-disclaimer-card {
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0;
  font-size: 0.8125rem;
  color: #991b1b;
  line-height: 1.6;
}

.dietary-disclaimer-card strong {
  color: #7f1d1d;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

/* Footer (Complete Google Ads Compliance & Trust) */
.editorial-footer {
  background-color: var(--forest-dark);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-about-col h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.footer-about-col p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.footer-menu-col h4 {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-menu-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-col li {
  margin-bottom: 0.65rem;
}

.footer-menu-col a {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-menu-col a:hover {
  color: #6ee7b7;
}

.footer-bottom-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #64748b;
  text-align: center;
}

.footer-legal-links-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.25rem 0;
}

.footer-legal-links-list a {
  color: #94a3b8;
  font-size: 0.8125rem;
}

.footer-legal-links-list a:hover {
  color: #ffffff;
}

/* Cookie Consent */
.diet-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  background-color: var(--forest-dark);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 9999;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.diet-cookie-banner p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.diet-cookie-banner a {
  color: #6ee7b7;
  text-decoration: underline;
}

.cookie-action-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-cookie-agree {
  background-color: var(--forest-mid);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-cookie-agree:hover {
  background-color: var(--forest);
}

.btn-cookie-refuse {
  background-color: transparent;
  color: #94a3b8;
  border: 1px solid #475569;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-cookie-refuse:hover {
  background-color: #334155;
  color: #ffffff;
}

/* Static Pages Layout */
.editorial-static-header {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
  color: #ffffff;
  padding: 4rem 0 3rem;
  text-align: center;
}

.editorial-static-header h1 {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.editorial-static-header p {
  font-size: 1.1rem;
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.editorial-static-body {
  padding: 3.5rem 0;
}

.editorial-legal-card {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  max-width: 880px;
  margin: 0 auto;
}

.editorial-legal-card h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin: 2rem 0 0.85rem;
}

.editorial-legal-card p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-links-list {
    gap: 0.85rem;
  }
  .nav-links-list a {
    font-size: 0.8125rem;
  }
}

@media (max-width: 991px) {
  .nav-links-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-color);
    display: none;
    z-index: 999;
  }
  
  .nav-links-list.open {
    display: flex;
  }
  
  .burger-menu-btn {
    display: flex;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .editorial-headline {
    font-size: 1.95rem;
  }
}

@media (max-width: 768px) {
  .editorial-article-content {
    padding: 1.5rem;
  }
  
  .editorial-headline {
    font-size: 1.65rem;
  }

  .nutritionist-meta-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nutritionist-full-profile {
    flex-direction: column;
    text-align: center;
  }
  
  .lead-diet-form {
    flex-direction: column;
  }
  
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
  
  .diet-cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
