/*
Theme Name: Hidup Luar Biasa
Theme URI: https://hidupluarbiasa.com
Author: Hidup Luar Biasa
Author URI: https://hidupluarbiasa.com
Description: Theme WordPress untuk blog tips karir, produktivitas, dan keuangan untuk pekerja Indonesia. Desain warm & friendly dengan magazine hybrid layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hidupluarbiasa
Tags: blog, custom-colors, custom-menu, featured-images, post-formats, sticky-post, threaded-comments, translation-ready
*/

/* ── ROOT VARIABLES ── */
:root {
  --green-dark:  #1A5C35;
  --green-main:  #2A9055;
  --green-mid:   #3DAB72;
  --green-light: #D6F5E4;
  --green-pale:  #F0FAF4;
  --cream:       #FAF9F6;
  --cream-2:     #F3F0EA;
  --border:      #E4E0D8;
  --border-soft: #EDE9E2;
  --text-1:      #1C1C1A;
  --text-2:      #6B6860;
  --text-3:      #9B9890;
  --white:       #ffffff;
  --amber:       #E8A23A;
  --amber-pale:  #FFF8EC;
  --blue:        #3B7DD8;
  --blue-pale:   #EEF4FF;
  --purple:      #7B3FB5;
  --purple-pale: #F5EEFF;
  --r:           10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
@keyframes ticker   { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes pulse    { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes floatUp  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.22,.68,0,1.1), transform .55s cubic-bezier(.22,.68,0,1.1);
}
.reveal.visible { opacity: 1; transform: none; }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s} .d4{transition-delay:.32s}

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  animation: fadeDown .35s ease both;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem; height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 600; color: var(--text-1);
  letter-spacing: -.3px; white-space: nowrap;
}
.nav-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-mid);
  animation: pulse 2.5s ease-in-out infinite;
}
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  font-size: 13px; color: var(--text-2);
  padding: 5px 11px; border-radius: 6px;
  transition: background .15s, color .15s;
}
.nav-links a:hover,
.nav-links a.current-menu-item { background: var(--green-pale); color: var(--green-dark); font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-search {
  width: 34px; height: 34px; border-radius: 50%;
  border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 15px;
  transition: border-color .15s, color .15s;
}
.nav-search:hover { border-color: var(--green-mid); color: var(--green-main); }
.nav-cta {
  background: var(--green-main); color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 6px; border: none;
  transition: background .15s; white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dark); }

/* ── TICKER ── */
.ticker-bar {
  background: var(--green-pale);
  border-bottom: 0.5px solid #C8EDD8;
  padding: 7px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 2rem; font-size: 12px; color: var(--green-dark);
}
.ticker-badge {
  background: var(--green-main); color: var(--white);
  font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 20px; flex-shrink: 0;
}
.ticker-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--green-mid); flex-shrink: 0; }

/* ── HERO ── */
.hero {
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  padding: 4rem 1.5rem 3.5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--green-pale); opacity: .6; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -60px; left: 30%;
  width: 260px; height: 260px; border-radius: 50%;
  background: var(--amber-pale); opacity: .5; pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green-dark);
  font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 1.25rem;
}
.hero-h1 {
  font-size: clamp(30px, 4.5vw, 48px); font-weight: 600;
  color: var(--text-1); line-height: 1.18;
  letter-spacing: -1px; margin-bottom: 1rem; max-width: 580px;
}
.hero-h1 em { font-style: normal; color: var(--green-main); border-bottom: 3px solid #A8E4C0; }
.hero-sub {
  font-size: 15px; color: var(--text-2);
  line-height: 1.75; max-width: 480px; margin-bottom: 1.75rem;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
  background: var(--green-main); color: var(--white);
  font-size: 13px; font-weight: 600;
  padding: 11px 22px; border-radius: 8px; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .15s, transform .15s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-ghost {
  background: var(--white); color: var(--green-main);
  font-size: 13px; font-weight: 500;
  padding: 11px 22px; border-radius: 8px;
  border: 1px solid #A8E4C0;
  transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: var(--green-main); background: var(--green-pale); }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 1.75rem; border-top: 0.5px solid var(--border);
}
.stat-val { font-size: 22px; font-weight: 600; color: var(--text-1); }
.stat-lbl { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* ── WRAP & SECTION HEADERS ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.sec-title {
  font-size: 14px; font-weight: 600; color: var(--text-1);
  display: flex; align-items: center; gap: 8px;
}
.sec-title::before {
  content: ''; display: block; width: 3px; height: 16px;
  background: var(--green-main); border-radius: 2px;
}
.sec-link {
  font-size: 12px; color: var(--green-main);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .15s;
}
.sec-link:hover { gap: 7px; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--r); overflow: hidden; cursor: pointer;
  transition: transform .22s cubic-bezier(.22,.68,0,1.2), border-color .15s, box-shadow .22s;
}
.card:hover { transform: translateY(-4px); border-color: #C8EDD8; box-shadow: 0 8px 24px rgba(42,144,85,.08); }

/* ── MAGAZINE SECTION ── */
.section-mag { padding: 2.5rem 0; background: var(--white); border-bottom: 0.5px solid var(--border); }
.mag-grid { display: grid; grid-template-columns: 1.15fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.card-featured { grid-column: 1; grid-row: 1/3; display: flex; flex-direction: column; }
.card-featured .thumb { height: 210px; position: relative; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.thumb-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #1A5C35 0%, #2A9055 50%, #3DAB72 100%); }
.thumb-pattern { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 20px 20px; }
.thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.thumb-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  color: #fff; font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  border: 0.5px solid rgba(255,255,255,.25);
}
.thumb-emoji { position: relative; z-index: 1; font-size: 56px; animation: floatUp 3s ease-in-out infinite; }
.card-featured .card-body {
  padding: 1.25rem; flex: 1; display: flex; flex-direction: column;
  border-left: 3px solid var(--green-light);
}
.card-featured .card-title { font-size: 16px; font-weight: 600; color: var(--text-1); line-height: 1.4; margin-bottom: .5rem; }
.card-excerpt { font-size: 12px; color: var(--text-2); line-height: 1.65; margin-bottom: .75rem; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 7px; }
.avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 600; color: var(--green-dark); flex-shrink: 0; }
.card-by { font-size: 11px; color: var(--text-3); }
.card-mini { display: flex; flex-direction: column; }
.card-mini .thumb { height: 115px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.card-mini .thumb-emoji { font-size: 34px; animation: none; }
.card-mini .card-body { padding: .8rem .9rem .9rem; flex: 1; }
.cat-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.card-mini .card-title { font-size: 13px; font-weight: 600; color: var(--text-1); line-height: 1.4; margin-bottom: 4px; }
.card-read { font-size: 11px; color: var(--text-3); }

/* ── KATEGORI ── */
.section-cats { padding: 2.5rem 0; background: var(--cream-2); border-bottom: 0.5px solid var(--border); }
.cats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.cat-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--r); padding: 1.25rem .75rem; text-align: center;
  transition: border-color .15s, transform .2s cubic-bezier(.22,.68,0,1.2), box-shadow .2s;
}
.cat-card:hover { border-color: var(--green-mid); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(42,144,85,.07); }
.cat-icon-wrap { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 10px; }
.cat-name { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 3px; }
.cat-count { font-size: 11px; color: var(--text-3); }
.cat-arrow { font-size: 12px; color: var(--text-3); margin-top: 8px; transition: color .15s; }
.cat-card:hover .cat-arrow { color: var(--green-main); }

/* ── POPULER LIST ── */
.section-pop { padding: 2.5rem 0; background: var(--white); border-bottom: 0.5px solid var(--border); }
.list-item {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--r); padding: .9rem 1rem;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.list-item:hover { border-color: #C8EDD8; transform: translateX(4px); box-shadow: 0 4px 14px rgba(42,144,85,.06); }
.list-num { font-size: 14px; font-weight: 600; color: var(--green-mid); min-width: 26px; flex-shrink: 0; }
.list-accent { width: 3px; height: 36px; border-radius: 2px; flex-shrink: 0; }
.list-body { flex: 1; min-width: 0; }
.list-title { font-size: 13px; font-weight: 600; color: var(--text-1); line-height: 1.4; margin-bottom: 3px; }
.list-meta { font-size: 11px; color: var(--text-3); }
.list-arr { color: #C5C2BA; flex-shrink: 0; transition: color .15s; }
.list-item:hover .list-arr { color: var(--green-main); }

/* ── NEWSLETTER ── */
.section-nl { padding: 2.5rem 0; background: var(--cream-2); border-bottom: 0.5px solid var(--border); }
.nl-box {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 14px; padding: 2rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.nl-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-pale); border: 0.5px solid #C8EDD8;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.nl-text { flex: 1; min-width: 160px; }
.nl-title { font-size: 15px; font-weight: 600; color: var(--text-1); margin-bottom: 3px; }
.nl-sub { font-size: 12px; color: var(--text-2); }
.nl-form { display: flex; gap: 8px; flex-wrap: wrap; }
.nl-input {
  font-family: inherit; font-size: 13px;
  padding: 10px 14px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--cream); color: var(--text-1);
  min-width: 210px; outline: none; transition: border-color .15s;
}
.nl-input:focus { border-color: var(--green-main); background: var(--white); }
.nl-btn {
  font-size: 13px; font-weight: 600;
  background: var(--green-main); color: var(--white);
  padding: 10px 18px; border-radius: 8px; border: none;
  white-space: nowrap; transition: background .15s;
}
.nl-btn:hover { background: var(--green-dark); }

/* ── TERBARU GRID ── */
.section-new { padding: 2.5rem 0; background: var(--white); border-bottom: 0.5px solid var(--border); }
.new-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.card-sm { display: flex; flex-direction: column; }
.card-sm .thumb { height: 120px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.card-sm .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.card-sm:hover .thumb img { transform: scale(1.05); }
.card-sm .card-body { padding: .85rem .9rem .9rem; flex: 1; display: flex; flex-direction: column; }
.card-sm .card-title { font-size: 13px; font-weight: 600; color: var(--text-1); line-height: 1.4; flex: 1; margin-bottom: 6px; }

/* ── SINGLE POST ── */
.progress-bar { position: fixed; top: 56px; left: 0; right: 0; height: 3px; background: var(--border); z-index: 99; }
.progress-fill { height: 100%; background: var(--green-main); width: 0%; transition: width .1s linear; }
.single-layout { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 3rem; display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.art-hero-img { border-radius: var(--r); overflow: hidden; margin-bottom: 1.75rem; position: relative; }
.art-hero-img img { width: 100%; height: 360px; object-fit: cover; display: block; }
.art-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,92,53,.5) 0%, transparent 50%); }
.art-hero-cat { position: absolute; top: 16px; left: 16px; background: var(--green-main); color: var(--white); font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 20px; }
.art-header { margin-bottom: 1.75rem; }
.art-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: .75rem; flex-wrap: wrap; }
.art-cat-link { font-size: 12px; font-weight: 600; color: var(--green-main); text-transform: uppercase; letter-spacing: .05em; }
.art-date { font-size: 12px; color: var(--text-3); }
.art-title { font-size: clamp(22px,3.5vw,32px); font-weight: 600; color: var(--text-1); line-height: 1.28; letter-spacing: -.5px; margin-bottom: .9rem; }
.art-sub { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 1.25rem; }
.art-meta-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; padding: 1rem 0; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.art-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--green-dark); flex-shrink: 0; overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 13px; font-weight: 600; color: var(--text-1); }
.author-role { font-size: 11px; color: var(--text-3); }
.art-stats { display: flex; align-items: center; gap: 12px; }
.art-stat { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-3); }

/* Article body typography */
.entry-content { animation: fadeUp .5s .15s ease both; }
.entry-content p { font-family: 'Lora', serif; font-size: 16px; color: var(--text-1); line-height: 1.85; margin-bottom: 1.25rem; }
.entry-content h2 { font-size: 20px; font-weight: 600; color: var(--text-1); margin: 2rem 0 .75rem; letter-spacing: -.2px; padding-top: 1rem; border-top: 0.5px solid var(--border); }
.entry-content h3 { font-size: 17px; font-weight: 600; color: var(--text-1); margin: 1.5rem 0 .6rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { font-family: 'Lora', serif; font-size: 16px; color: var(--text-1); line-height: 1.8; margin-bottom: .5rem; }
.entry-content strong { font-weight: 600; }
.entry-content blockquote { background: var(--cream-2); border-left: 4px solid var(--green-main); border-radius: 0 var(--r) var(--r) 0; padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.entry-content blockquote p { font-style: italic; color: var(--text-1); margin: 0; }
.entry-content img { border-radius: var(--r); margin: 1.5rem 0; width: 100%; }
.entry-content a { color: var(--green-main); text-decoration: underline; }

/* ── ARCHIVE (KATEGORI) ── */
.breadcrumb { background: var(--white); border-bottom: 0.5px solid var(--border); padding: .75rem 0; }
.breadcrumb-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-3); flex-wrap: wrap; }
.breadcrumb a { color: var(--text-3); transition: color .15s; }
.breadcrumb a:hover { color: var(--green-main); }
.cat-hero { background: var(--white); border-bottom: 0.5px solid var(--border); padding: 2.5rem 0; position: relative; overflow: hidden; }
.cat-hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: var(--green-pale); opacity: .7; pointer-events: none; }
.cat-hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; display: flex; align-items: center; gap: 1.5rem; }
.cat-hero-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--green-pale); border: 0.5px solid #C8EDD8; display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }
.cat-badge { display: inline-block; background: var(--green-light); color: var(--green-dark); font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-bottom: .5rem; }
.cat-hero-title { font-size: 28px; font-weight: 600; color: var(--text-1); letter-spacing: -.5px; margin-bottom: .4rem; }
.cat-hero-sub { font-size: 13px; color: var(--text-2); line-height: 1.65; max-width: 500px; }
.archive-layout { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 3rem; display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.art-card { background: var(--white); border: 0.5px solid var(--border); border-radius: var(--r); overflow: hidden; display: grid; grid-template-columns: 140px 1fr; transition: transform .18s cubic-bezier(.22,.68,0,1.2), border-color .15s, box-shadow .18s; margin-bottom: 10px; }
.art-card:hover { transform: translateY(-2px); border-color: #C8EDD8; box-shadow: 0 4px 16px rgba(42,144,85,.07); }
.art-card .art-img { overflow: hidden; }
.art-card .art-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.art-card:hover .art-img img { transform: scale(1.06); }
.art-card .art-body { padding: .9rem 1rem; display: flex; flex-direction: column; }
.art-tag { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--green-main); margin-bottom: 5px; }
.art-title { font-size: 14px; font-weight: 600; color: var(--text-1); line-height: 1.4; margin-bottom: 5px; flex: 1; }
.art-info { display: flex; align-items: center; gap: 8px; }
.art-time { font-size: 11px; color: var(--text-3); }
.art-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 80px; }
.side-card { background: var(--white); border: 0.5px solid var(--border); border-radius: var(--r); overflow: hidden; }
.side-head { padding: .85rem 1rem; border-bottom: 0.5px solid var(--border); font-size: 13px; font-weight: 600; color: var(--text-1); display: flex; align-items: center; gap: 6px; }
.side-head::before { content: ''; display: block; width: 3px; height: 14px; background: var(--green-main); border-radius: 2px; }
.side-pop-item { display: flex; align-items: flex-start; gap: 10px; padding: .7rem 1rem; border-bottom: 0.5px solid var(--border); transition: background .15s; }
.side-pop-item:last-child { border-bottom: none; }
.side-pop-item:hover { background: var(--green-pale); }
.side-num { font-size: 13px; font-weight: 600; color: var(--green-mid); min-width: 20px; flex-shrink: 0; }
.side-title { font-size: 12px; font-weight: 500; color: var(--text-1); line-height: 1.4; }
.side-meta { font-size: 10px; color: var(--text-3); margin-top: 3px; }
.tags-wrap { padding: .85rem 1rem; display: flex; flex-wrap: wrap; gap: 6px; }
.tag-pill { background: var(--cream-2); border: 0.5px solid var(--border); color: var(--text-2); font-size: 11px; padding: 4px 10px; border-radius: 20px; transition: all .15s; }
.tag-pill:hover { background: var(--green-light); border-color: #C8EDD8; color: var(--green-dark); }
.nl-side { padding: 1rem; }
.nl-side-title { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.nl-side-sub { font-size: 11px; color: var(--text-2); line-height: 1.5; margin-bottom: .85rem; }
.nl-side-input { width: 100%; font-family: inherit; font-size: 12px; padding: 8px 11px; border-radius: 6px; border: 1px solid var(--border); background: var(--cream); color: var(--text-1); outline: none; margin-bottom: 7px; transition: border-color .15s; }
.nl-side-input:focus { border-color: var(--green-main); background: var(--white); }
.nl-side-btn { width: 100%; font-family: inherit; font-size: 12px; font-weight: 600; background: var(--green-main); color: var(--white); padding: 9px; border-radius: 6px; border: none; transition: background .15s; }
.nl-side-btn:hover { background: var(--green-dark); }

/* ── ADSENSE SLOTS ── */
.ad-slot { background: var(--cream-2); border: 0.5px dashed var(--border); border-radius: var(--r); padding: 1.5rem; text-align: center; margin: 2rem 0; min-height: 100px; display: flex; align-items: center; justify-content: center; }
.ad-side { background: var(--cream-2); border: 0.5px dashed var(--border); border-radius: var(--r); padding: 2rem 1rem; text-align: center; min-height: 250px; display: flex; align-items: center; justify-content: center; }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 1.5rem; }
.page-numbers { width: 34px; height: 34px; border-radius: 8px; border: 0.5px solid var(--border); background: var(--white); font-size: 13px; font-weight: 500; color: var(--text-2); display: inline-flex; align-items: center; justify-content: center; transition: all .15s; }
.page-numbers:hover { border-color: var(--green-mid); color: var(--green-dark); }
.page-numbers.current { background: var(--green-main); color: var(--white); border-color: var(--green-main); }

/* ── FOOTER ── */
.footer { background: var(--cream-2); border-top: 0.5px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 1.5rem; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); }
.footer-brand .f-logo { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.footer-tagline { font-size: 12px; color: var(--text-3); max-width: 220px; line-height: 1.6; }
.footer-col h4 { font-size: 11px; font-weight: 600; color: var(--text-1); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col a { display: block; font-size: 12px; color: var(--text-2); margin-bottom: 7px; transition: color .15s; }
.footer-col a:hover { color: var(--green-main); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 11px; color: var(--text-3); }
.footer-badge { background: var(--green-pale); color: var(--green-dark); font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 20px; border: 0.5px solid #C8EDD8; }

/* ── 404 ── */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; text-align: center; }
.num-404 { font-size: 120px; font-weight: 600; color: var(--green-light); line-height: 1; margin-bottom: .5rem; animation: floatUp 3s ease-in-out infinite; letter-spacing: -4px; }
.err-title { font-size: 24px; font-weight: 600; color: var(--text-1); margin-bottom: .75rem; }
.err-sub { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 2rem; max-width: 380px; margin-left: auto; margin-right: auto; }
.err-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mag-grid { grid-template-columns: 1fr; }
  .card-featured { grid-column: 1; grid-row: auto; }
  .cats-grid { grid-template-columns: repeat(2,1fr); }
  .new-grid { grid-template-columns: 1fr; }
  .single-layout { grid-template-columns: 1fr; }
  .archive-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .art-card { grid-template-columns: 110px 1fr; }
  .hero-h1 { font-size: 26px; }
  .hero-stats { gap: 1.5rem; }
  .nl-box { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-direction: column; }
  .art-hero-img img { height: 220px; }
  .num-404 { font-size: 80px; }
}
