/* ─── NEWSCENTRO METROPOLITAN EDITORIAL ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg-cream:   #fefcfb;
  --bg-sand:    #f5f3ef;
  --text-stone: #1c1917;
  --text-slate: #57534e;
  --gold:       #d97706;
  --gold-lite:  #fcd34d;
  --border:     #e7e5e4;
  --container:  1280px;
}

body { font-family: 'Inter', sans-serif; background: var(--bg-cream); color: var(--text-stone); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
a:hover { color: var(--gold); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

/* ─── MASTHEAD & HEADER ─── */
header { border-bottom: 1px solid var(--border); background: var(--bg-cream); position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.top-deck { background: var(--text-stone); color: var(--bg-sand); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; padding: 8px 0; border-bottom: 2px solid var(--gold); }
.top-deck-inner { display: flex; justify-content: space-between; align-items: center; }
.top-deck a { color: var(--gold-lite); }

.masthead { padding: 40px 0 30px; display: flex; flex-direction: column; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 60px; font-weight: 900; letter-spacing: -2px; color: var(--text-stone); line-height: 1; }
.logo span { color: var(--gold); font-style: italic; font-weight: 500; }
.tagline { font-family: 'Lora', serif; font-size: 15px; font-style: italic; color: var(--text-slate); margin-top: 15px; letter-spacing: 0.5px; }

.main-nav { display: flex; justify-content: center; gap: 40px; padding: 20px 0; border-top: 1px solid var(--border); }
.main-nav a { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-stone); position: relative; }
.main-nav a::after { content:''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.main-nav a:hover::after { width: 100%; }

/* ─── TYPOGRAPHY & HEADINGS ─── */
.section-hdr { margin: 80px 0 40px; text-align: center; position: relative; }
.section-hdr::before { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: var(--border); z-index: 1; }
.section-hdr h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; font-style: italic; color: var(--text-stone); background: var(--bg-cream); display: inline-block; padding: 0 30px; position: relative; z-index: 2; }
.section-hdr.dark::before { background: rgba(255,255,255,0.1); }
.section-hdr.dark h2 { background: var(--text-stone); color: var(--gold-lite); }

.badge { display: inline-block; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); border-bottom: 1px solid var(--gold); margin-bottom: 15px; padding-bottom: 2px; }

/* ─── GRID LAYOUTS ─── */
.grid-fashion { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.grid-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* ─── MAGAZINE CARDS ─── */
.card-hero { position: relative; width: 100%; height: 550px; overflow: hidden; }
.card-hero img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.card-hero:hover img { transform: scale(1.05); }
.card-hero-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 60px 40px 40px; background: linear-gradient(to top, rgba(28,25,23,0.95), transparent); color: #fff; }
.card-hero-title { font-family: 'Lora', serif; font-size: 42px; font-weight: 600; line-height: 1.2; margin-bottom: 15px; }

.card-editorial { display: flex; flex-direction: column; height: 100%; transition: opacity 0.3s; }
.card-editorial:hover { opacity: 0.85; }
.card-editorial-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 20px; }
.card-editorial-img img { width: 100%; height: 100%; object-fit: cover; }
.card-editorial-title { font-family: 'Lora', serif; font-size: 24px; font-weight: 600; line-height: 1.3; margin-bottom: 10px; color: var(--text-stone); }

.card-list { display: flex; gap: 25px; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 25px; margin-bottom: 25px; }
.card-list:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.card-list-img { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.card-list-img img { width: 100%; height: 100%; object-fit: cover; }
.card-list-title { font-family: 'Lora', serif; font-size: 18px; font-weight: 600; line-height: 1.4; color: var(--text-stone); }

.card-mini { text-align: center; }
.card-mini-img { aspect-ratio: 1/1; overflow: hidden; border-radius: 2px; margin-bottom: 15px; }
.card-mini-img img { width: 100%; height: 100%; object-fit: cover; }
.card-mini-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; line-height: 1.3; }

.post-meta { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-slate); font-weight: 400; font-style: italic; }

/* ─── DARK CULINARY MODULE ─── */
.dark-module { background: var(--text-stone); color: var(--bg-cream); padding: 80px 0; margin: 80px 0; }
.dark-module .card-editorial-title, .dark-module .card-list-title { color: var(--bg-cream); }
.dark-module .border-list { border-color: rgba(255,255,255,0.1); }
.dark-module .post-meta { color: #a8a29e; }

/* ─── SIDEBAR ─── */
.sidebar-box { background: var(--bg-sand); padding: 40px; border: 1px solid var(--border); text-align: center; margin-bottom: 40px; }
.sidebar-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; font-style: italic; margin-bottom: 20px; }
.subscribe-form input { width: 100%; padding: 15px; border: 1px solid var(--border); font-family: 'Inter'; font-size: 13px; margin-bottom: 15px; outline: none; background: #fff; }
.subscribe-form button { width: 100%; padding: 15px; background: var(--gold); color: #fff; font-family: 'Inter'; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; transition: 0.3s; }
.subscribe-form button:hover { background: var(--text-stone); }

/* ─── POST PAGE ─── */
.post-wrap { max-width: 800px; margin: 60px auto; }
.post-hdr { text-align: center; margin-bottom: 40px; border-bottom: 1px solid var(--border); padding-bottom: 40px; }
.post-title { font-family: 'Playfair Display', serif; font-size: 54px; font-weight: 900; line-height: 1.1; margin: 20px 0; color: var(--text-stone); letter-spacing: -1px; }
.post-hero { width: 100%; margin-bottom: 40px; }
.post-hero img { width: 100%; height: auto; display: block; }
.post-body { font-family: 'Lora', serif; font-size: 20px; line-height: 1.9; color: #292524; }
.post-body p { margin-bottom: 30px; }

/* ─── FOOTER ─── */
footer { background: var(--bg-sand); padding: 80px 0 40px; border-top: 1px solid var(--border); margin-top: 100px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; }
.ft-logo { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900; letter-spacing: -2px; color: var(--text-stone); margin-bottom: 20px; line-height: 1; }
.ft-logo span { color: var(--gold); font-style: italic; }
.ft-title { font-family: 'Inter'; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-stone); margin-bottom: 25px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 12px; font-family: 'Lora', serif; font-size: 15px; color: var(--text-slate); font-style: italic; }
.ft-col ul li a:hover { color: var(--gold); }
.ft-bottom { text-align: center; border-top: 1px solid var(--border); margin-top: 60px; padding-top: 30px; font-family: 'Inter'; font-size: 12px; color: var(--text-slate); text-transform: uppercase; letter-spacing: 1px; }
