*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #111827;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --dash: #D1D5DB;
  --text-mid: #4B5563;
  --text-xs: #6B7280;
  --text-faint: #9CA3AF;
  --radius: 10px;
  --radius-lg: 14px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; font-size: 15px; color: var(--black); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.page-content-wrap-blog{
  display:block !important;
  margin: 1rem auto;
  padding: 1rem 24px 80px;
  max-width: 1000px;
}

/* ── BREADCRUMB ── */
.breadcrumb { max-width: 1060px; margin: 0 auto; padding: 14px 24px; font-size: 13px; color: var(--text-xs); }
.breadcrumb a { color: var(--text-xs); }
.breadcrumb a:hover { color: var(--black); text-decoration: underline; }
.breadcrumb span { margin: 0 4px; }

/* ── FEATURED ARTICLE ── */
.featured-section { max-width: 1060px; margin: 0 auto; padding:12px 36px; }
.featured-card { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.featured-image { background: #1A1A1A; display: flex; align-items: center; justify-content: center; min-height: 260px; }
.featured-image .food-label { font-size: 42px; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.featured-content { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; }
.featured-badge { display: inline-flex; align-items: center; background: var(--black); color: var(--white); font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 6px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; width: fit-content; }
.featured-content h2 { font-size: 22px; font-weight: 700; color: var(--black); line-height: 1.25; margin-bottom: 14px; letter-spacing: -.01em; }
.featured-meta { display: flex; align-items: center; gap: 16px; font-size: 12.5px; color: var(--text-xs); margin-bottom: 14px; }
.featured-meta .meta-item { display: flex; align-items: center; gap: 5px; }
.featured-meta svg { width: 13px; height: 13px; stroke: var(--text-xs); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.featured-excerpt { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; margin-bottom: 22px; }
.btn-read-full { display: inline-flex; align-items: center; justify-content: center; background: var(--black); color: var(--white); padding: 12px 22px; border-radius: 7px; font-size: 14px; font-weight: 600; transition: opacity .2s; }
.btn-read-full:hover { opacity: .82; }

/* ── FILTER TABS ── */
.filter-section { max-width: 1060px; margin: 0 auto; padding: 24px 28px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.filter-btn { font-size: 14px; font-weight: 600; padding: 10px 24px; border-radius: 50px; cursor: pointer; transition: all .15s; border: 1.5px solid var(--dash); background: transparent; color: var(--black); }
.filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.filter-btn:hover:not(.active) { border-color: var(--black); background: #F9FAFB; }

/* ── SEARCH BAR ── */
.search-section { max-width: 1060px; margin: 0 auto; padding: 0 24px 40px; display: flex; justify-content: center; }
.search-wrap { display: flex; align-items: center; border: 1.5px solid var(--dash); border-radius: 8px; overflow: hidden; width: 100%; max-width: 540px; background: var(--white); }
.search-wrap input { flex: 1; padding: 12px 16px; border: none; outline: none; font-size: 14px; color: var(--black); font-family: inherit; background: transparent; }
.search-wrap input::placeholder { color: var(--text-faint); }
.search-btn { width: 50px; height: 50px; background: var(--black); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: opacity .2s; }
.search-btn:hover { opacity: .82; }
.search-btn svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── ARTICLE GRID ── */
.articles-section { max-width: 1060px; margin: 0 auto; padding: 0 24px 48px; }
.articles-section h2 { font-size: 22px; font-weight: 700; color: var(--black); text-align: center; margin-bottom: 28px; letter-spacing: -.01em; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.articles-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 710px; }

.article-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .18s; }
.article-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.article-thumb { background: #1A1A1A; height: 160px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.article-thumb .food-label { font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.article-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.article-category { font-size: 11.5px; font-weight: 600; color: var(--text-xs); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.article-body h3 { font-size: 15px; font-weight: 700; color: var(--black); line-height: 1.35; margin-bottom: 8px; letter-spacing: -.01em; }
.article-body h3 a:hover { text-decoration: underline; text-underline-offset: 2px; }
.article-meta { font-size: 12px; color: var(--text-xs); margin-bottom: 10px; }
.article-excerpt { font-size: 12.5px; color: var(--text-mid); line-height: 1.62; margin-bottom: 16px; flex: 1; }
.btn-read-more { display: inline-flex; align-items: center; justify-content: center; background: var(--black); color: var(--white); padding: 10px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; transition: opacity .2s; width: 100%; }
.btn-read-more:hover { opacity: .82; }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; padding: 0 24px 56px; }
.page-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; color: var(--text-mid); border: 1.5px solid transparent; cursor: pointer; transition: all .15s; }
.page-btn:hover { border-color: var(--dash); color: var(--black); }
.page-btn.active { background: var(--black); color: var(--white); border-color: var(--black); font-weight: 700; }
.page-btn.dots { cursor: default; border-color: transparent; color: var(--text-faint); }
.page-btn.arrow { color: var(--text-xs); }

/* ── EMAIL CTA ── */
.email-cta { padding: 64px 24px; border-top: 1px solid var(--border); text-align: center; }
.email-cta h2 { font-size: 28px; font-weight: 700; color: var(--black); margin-bottom: 10px; letter-spacing: -.02em; }
.email-cta p { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; }
.email-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.email-input { padding: 12px 20px; border: 1.5px solid var(--dash); border-radius: 50px; font-size: 14px; font-family: inherit; outline: none; width: 280px; transition: border-color .15s; }
.email-input:focus { border-color: var(--black); }
.email-input::placeholder { color: var(--text-faint); }
.btn-subscribe { background: transparent; color: var(--black); border: 1.5px solid var(--dash); padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; transition: border-color .15s, background .15s; }
.btn-subscribe:hover { border-color: var(--black); background: #F9FAFB; }
.email-note { font-size: 12px; color: var(--text-faint); }

/* ── FOOTER ── */
/* .site-footer { background: #111827; color: var(--white); padding: 56px 24px 0; } */
.footer-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-emblem { width: 40px; height: 40px; border: 2px solid rgba(255,255,255,.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.footer-logo-emblem svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-logo-text { font-size: 15px; font-weight: 700; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.42); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: #1F2937; border: 1px solid #374151; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: background .15s, color .15s; }
.social-btn:hover { background: #374151; color: var(--white); }
.social-btn svg { width: 14px; height: 14px; fill: currentColor; }
.footer-col h5 { font-size: 13.5px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .15s; }
.footer-col li a:hover { color: rgba(255,255,255,.88); }
.footer-bottom { max-width: 960px; margin: 0 auto; border-top: 1px solid #1F2937; padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.28); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-image { min-height: 200px; }
  .articles-grid { grid-template-columns: repeat(2,1fr); }
  .articles-row-2 { grid-template-columns: 1fr; max-width: 380px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .site-nav, .auth-links { display: none; }
  .hamburger { display: flex; }
  .articles-grid { grid-template-columns: 1fr; }
}
