/* ============================================================
   UNFILTERED POINT — Complete Design System v3
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --red:      #E32B23;
  --red-dark: #C0201B;
  --black:    #111111;
  --dark:     #1A1A1A;
  --white:    #FFFFFF;
  --off:      #F8F7F4;
  --light:    #F2F2F0;
  --border:   #E4E4E1;
  --border2:  #CFCFCB;
  --t1:       #141414;
  --t2:       #4A4A4A;
  --t3:       #888888;
  --shadow1:  0 1px 4px rgba(0,0,0,.07);
  --shadow2:  0 4px 16px rgba(0,0,0,.09);
  --shadow3:  0 12px 32px rgba(0,0,0,.11);
  --serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r:        8px;
  --r2:       14px;
  --max:      1200px;
}

/* ── Reset ─────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--off);
  color: var(--t1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--sans); }

/* ── Announce Bar ──────────────────────────────────────── */
#announce-bar {
  background: var(--red);
  color: #fff;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.announce-label {
  background: #000;
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  gap: 6px;
}
.announce-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.3; transform:scale(.7); }
}
.announce-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.announce-text {
  display: inline-block;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 500;
  padding-left: 40px;
  animation: marquee 40s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

/* ── Site Header ───────────────────────────────────────── */
#site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 3px solid var(--red);
}
.header-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
  transition: transform .2s;
}
.site-logo:hover .logo-icon { transform: rotate(-5deg) scale(1.08); }
.logo-title {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.logo-sub {
  font-size: .58rem;
  color: #666;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* ── Primary Navigation ────────────────────────────────── */
.primary-nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #9CA3AF;
  font-size: .82rem;
  font-weight: 500;
  padding: 8px 11px;
  border-radius: 6px;
  transition: all .18s;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
}
.nav-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-item:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-item.active { color: #fff; }
.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 8px; right: 8px;
  height: 2px;
  background: var(--red);
  border-radius: 1px 1px 0 0;
}
.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.1);
  margin: 0 5px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #9CA3AF;
  transition: all .18s;
  text-decoration: none;
}
.icon-btn:hover { background: rgba(255,255,255,.09); color: #fff; }
.icon-btn svg { width: 18px; height: 18px; }
.mobile-toggle { display: none; }

/* ── Search Bar ────────────────────────────────────────── */
#search-bar {
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 14px 20px;
  display: none;
}
#search-bar.open { display: block; }
.search-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.search-field {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 9px 14px;
  color: #fff;
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
}
.search-field::placeholder { color: #555; }
.search-field:focus { border-color: var(--red); }
.search-submit {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s;
}
.search-submit:hover { background: var(--red-dark); }

/* ── Mobile Menu ───────────────────────────────────────── */
#mobile-menu {
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,.07);
  display: none;
  padding: 8px 16px 16px;
}
#mobile-menu.open { display: block; }
.mob-nav-item {
  display: block;
  color: #9CA3AF;
  font-size: .9rem;
  font-weight: 500;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
  transition: color .15s;
}
.mob-nav-item:last-child { border-bottom: none; }
.mob-nav-item:hover,.mob-nav-item.active { color: #fff; }

/* ── Layout ────────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.page-body { padding: 36px 0 80px; }

/* ── Section Header ────────────────────────────────────── */
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--black);
}
.sec-title {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sec-title-dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.sec-more {
  font-size: .74rem;
  font-weight: 700;
  color: var(--red);
  transition: color .15s;
  text-decoration: none;
}
.sec-more:hover { color: var(--red-dark); text-decoration: underline; }

/* ── Badges ────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 3px;
  line-height: 1;
}
.badge-red { background: var(--red); color: #fff; }
.badge-live {
  background: var(--red); color: #fff;
  gap: 5px;
}
.badge-live::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: pulse 1.2s infinite;
}
.badge-cat {
  background: transparent;
  border: 1px solid currentColor;
  opacity: .9;
}

/* ── Placeholder Image ─────────────────────────────────── */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 900;
  color: rgba(255,255,255,.18);
  overflow: hidden;
  position: relative;
  letter-spacing: -.02em;
}
.ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 40%,rgba(0,0,0,.25));
}

/* ── Hero Section ──────────────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  margin-bottom: 36px;
}
.hero-main {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  overflow: hidden;
  text-decoration: none;
}
.hero-main img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.hero-main:hover img { transform: scale(1.03); }
.hero-main .ph {
  position: absolute;
  inset: 0;
  font-size: 7rem;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 55%, transparent 100%);
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.02em;
  transition: color .2s;
}
.hero-main:hover .hero-h1 { color: #FECACA; }
.hero-excerpt {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-cta {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── Hero Sidebar ──────────────────────────────────────── */
.hero-side {
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.hero-side-card {
  flex: 1;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .15s;
  overflow: hidden;
}
.hero-side-card:last-child { border-bottom: none; }
.hero-side-card:hover { background: var(--off); }
.hero-side-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}
.hero-side-ph {
  width: 100%;
  height: 80px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.6rem;
  color: rgba(255,255,255,.2);
}
.hero-side-h {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--t1);
  transition: color .15s;
}
.hero-side-card:hover .hero-side-h { color: var(--red); }
.hero-side-meta { font-size: .7rem; color: var(--t3); }

/* ── Trending Strip ────────────────────────────────────── */
.trending-strip {
  background: var(--dark);
  border-radius: var(--r);
  padding: 0;
  margin-bottom: 36px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.trending-tag {
  background: var(--red);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0 18px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.trending-list {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}
.trending-list::-webkit-scrollbar { display: none; }
.trending-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-right: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
  text-decoration: none;
  transition: background .15s;
  max-width: 200px;
}
.trending-item:hover { background: rgba(255,255,255,.04); }
.trending-item:last-child { border-right: none; }
.trending-n {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.1);
  line-height: 1;
  flex-shrink: 0;
  width: 22px;
}
.trending-txt {
  font-size: .78rem;
  font-weight: 600;
  color: #B0B0B0;
  line-height: 1.3;
  transition: color .15s;
}
.trending-item:hover .trending-txt { color: #fff; }

/* ── News Card ─────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
}
.card:hover {
  box-shadow: var(--shadow2);
  transform: translateY(-2px);
}
.card-img-box { overflow: hidden; flex-shrink: 0; }
.card-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.card:hover .card-img { transform: scale(1.04); }
.card-ph {
  width: 100%; height: 185px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 900;
  font-size: 2.5rem; color: rgba(255,255,255,.2);
  letter-spacing: -.03em;
}
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 7px; margin-bottom: 8px;
}
.card-time { font-size: .7rem; color: var(--t3); margin-left: auto; }
.card-h {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--t1);
  flex: 1;
  margin-bottom: 6px;
  transition: color .15s;
}
.card:hover .card-h { color: var(--red); }
.card-exc {
  font-size: .8rem;
  color: var(--t2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── List Card (sidebar) ───────────────────────────────── */
.list-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  text-decoration: none;
  transition: padding-left .15s;
}
.list-item:first-child { padding-top: 0; }
.list-item:last-child { border-bottom: none; }
.list-item:hover { padding-left: 4px; }
.list-n {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--border2);
  line-height: 1;
  width: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}
.list-h {
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--t1);
  margin-bottom: 4px;
  transition: color .15s;
}
.list-item:hover .list-h { color: var(--red); }
.list-meta { font-size: .7rem; color: var(--t3); }

/* ── Sidebar Widget ────────────────────────────────────── */
.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 22px;
}
.widget-head {
  padding: 13px 16px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
}
.widget-title {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t2);
}
.widget-body { padding: 0 16px; }

/* ── Grid Systems ──────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.grid-main-side {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}
.grid-article-side {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.grid-blog-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  margin-bottom: 36px;
  min-height: 360px;
}
.mb { margin-bottom: 48px; }
.mb-sm { margin-bottom: 28px; }

/* ── Blog Card ─────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover {
  box-shadow: var(--shadow2);
  transform: translateY(-3px);
}
.blog-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-ph {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 900;
  font-size: 3rem; color: rgba(255,255,255,.2);
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-h {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--t1);
  flex: 1;
  margin: 8px 0 10px;
  transition: color .15s;
}
.blog-card:hover .blog-card-h { color: var(--red); }
.blog-card-exc {
  font-size: .8rem;
  color: var(--t2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.blog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--t3);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ── Wall Feed ─────────────────────────────────────────── */
.wall-wrap { max-width: 700px; margin: 0 auto; }
.wall-filter-bar {
  position: sticky;
  top: 62px;
  z-index: 100;
  background: rgba(248,247,244,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.wall-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 0;
}
.wall-filters::-webkit-scrollbar { display: none; }
.fpill {
  font-size: .74rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  color: var(--t2);
  white-space: nowrap;
  background: var(--white);
  transition: all .15s;
  text-decoration: none;
  flex-shrink: 0;
}
.fpill:hover { border-color: var(--border2); color: var(--t1); }
.fpill.active { background: var(--black); color: #fff; border-color: var(--black); }
.wall-post {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow .2s;
  animation: fadeUp .3s ease both;
}
.wall-post:hover { box-shadow: var(--shadow2); }
@keyframes fadeUp {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:translateY(0); }
}
.wall-post-head { padding: 18px 20px 0; }
.wall-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}
.wall-post-time { font-size: .72rem; color: var(--t3); margin-left: auto; }
.wall-post-img {
  width: 100%;
  display: block;
  max-height: 400px;
  object-fit: cover;
  margin: 0 0 0;
}
.wall-post-img-box { overflow: hidden; }
.wall-post-content { padding: 18px 20px; }
.wall-h {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.28;
  color: var(--t1);
  letter-spacing: -.015em;
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .15s;
}
.wall-h:hover { color: var(--red); }
.wall-exc {
  font-size: .88rem;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wall-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: var(--off);
}
.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--t3);
  padding: 6px 10px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}
.action-btn:hover { background: var(--light); color: var(--t1); }
.action-btn svg { width: 14px; height: 14px; }
.read-btn {
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: gap .15s;
}
.read-btn:hover { gap: 8px; }

/* ── Single Post ───────────────────────────────────────── */
.post-header { margin-bottom: 28px; }
.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.post-hl {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--t1);
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.post-deck {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--t2);
  line-height: 1.65;
  border-left: 3px solid var(--red);
  padding-left: 16px;
  margin-bottom: 20px;
}
.post-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: .8rem;
  color: var(--t2);
  margin-bottom: 24px;
}
.post-byline-time { margin-left: auto; color: var(--t3); }
.share-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.share-lbl { font-size: .72rem; color: var(--t3); font-weight: 500; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--t2);
  transition: all .15s;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
}
.share-btn:hover { border-color: var(--border2); color: var(--t1); box-shadow: var(--shadow1); }
.share-btn svg { width: 13px; height: 13px; }
.post-featured-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  display: block;
}
.post-content {
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--t2);
}
.post-content > * + * { margin-top: 1.35em; }
.post-content h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--t1);
  margin-top: 2.5em;
  letter-spacing: -.02em;
}
.post-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t1);
  margin-top: 2em;
}
.post-content p { color: var(--t2); }
.post-content a { color: var(--red); text-decoration: underline; }
.post-content blockquote {
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  background: var(--off);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--t2);
  margin: 1.5em 0;
}
.post-content ul,.post-content ol { padding-left: 1.5rem; }
.post-content li { margin-bottom: .5em; }
.post-content img {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.post-content strong { color: var(--t1); font-weight: 700; }
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.video-embed iframe {
  position: absolute;
  top:0;left:0;
  width:100%;height:100%;
  border:none;
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.tag-chip {
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--light);
  color: var(--t2);
  border-radius: 4px;
  letter-spacing: .03em;
  border: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .74rem;
  color: var(--t3);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { transition: color .15s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--border2); }

/* ── Pagination ────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-top: 28px;
}
.pg-btn {
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--t2);
  transition: all .15s;
  padding: 0 10px;
  text-decoration: none;
}
.pg-btn:hover { border-color: var(--border2); color: var(--t1); }
.pg-btn.active { background: var(--black); color: #fff; border-color: var(--black); }

/* ── Newsletter CTA ────────────────────────────────────── */
.newsletter-cta {
  background: var(--dark);
  border-radius: var(--r2);
  padding: 48px 40px;
  text-align: center;
  margin-top: 52px;
  position: relative;
  overflow: hidden;
}
.newsletter-cta::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: var(--red);
  border-radius: 50%;
  opacity: .06;
}
.newsletter-cta h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.newsletter-cta p { color: #777; font-size: .875rem; margin-bottom: 24px; }
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: .88rem;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .15s;
  text-decoration: none;
  font-family: var(--sans);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-red svg { width: 16px; height: 16px; }

/* ── Footer ────────────────────────────────────────────── */
#site-footer {
  background: var(--black);
  color: #fff;
  margin-top: 72px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 20px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-desc {
  color: #555;
  font-size: .845rem;
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 300px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.05);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #555;
  transition: all .18s;
  text-decoration: none;
}
.footer-social:hover { background: var(--red); color: #fff; }
.footer-social svg { width: 15px; height: 15px; }
.footer-col-title {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: .84rem;
  color: #555;
  padding: 4px 0;
  text-decoration: none;
  transition: color .15s;
}
.footer-link:hover { color: var(--red); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .76rem;
  color: #3a3a3a;
}

/* ── Admin ─────────────────────────────────────────────── */
.adm-wrap { display: flex; min-height: 100vh; background: #F1F3F5; }
.adm-sidebar {
  width: 232px;
  background: var(--black);
  flex-shrink: 0;
  position: fixed;
  top:0;left:0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 300;
  transition: transform .25s;
}
.adm-main { flex: 1; margin-left: 232px; min-height: 100vh; display: flex; flex-direction: column; }
.adm-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.adm-content { padding: 24px; flex: 1; }
.adm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
}
.adm-nav-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  font-size: .82rem;
  color: #666;
  font-weight: 500;
  border-radius: 6px;
  margin: 0 8px 2px;
  transition: all .15s;
  text-decoration: none;
}
.adm-nav-link:hover { background: rgba(255,255,255,.05); color: #ccc; }
.adm-nav-link.active { background: rgba(227,43,35,.15); color: #F87171; }
.adm-nav-link svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── Forms ─────────────────────────────────────────────── */
.fl { display: block; font-size: .78rem; font-weight: 600; color: #374151; margin-bottom: 5px; }
.fi {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: .875rem;
  font-family: var(--sans);
  color: var(--t1);
  background: var(--white);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.fi:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,43,35,.08); }
.fi::placeholder { color: #B8B8B8; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  padding: 9px 22px;
  border-radius: 7px;
  font-size: .84rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .15s;
  font-family: var(--sans);
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--t2);
  padding: 9px 22px;
  border-radius: 7px;
  font-size: .84rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all .15s;
  font-family: var(--sans);
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--border2); color: var(--t1); }

/* ── Utilities ─────────────────────────────────────────── */
.spinner {
  width: 28px; height: 28px;
  border: 2.5px solid var(--border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#scroll-top {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 40px; height: 40px;
  background: var(--dark); color: #fff;
  border: none; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: all .22s;
  z-index: 999;
  box-shadow: var(--shadow2);
}
#scroll-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
#scroll-top:hover { background: var(--red); }
#scroll-top svg { width: 17px; height: 17px; }
.toast {
  position: fixed;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  background: var(--dark); color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: .81rem; font-weight: 500;
  box-shadow: var(--shadow3);
  z-index: 9999;
  animation: toastIn .2s ease;
  white-space: nowrap;
}
@keyframes toastIn {
  from { opacity:0; transform:translateX(-50%) translateY(10px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .4s ease, transform .4s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; }
  .hero-side-card { border-right: 1px solid var(--border); border-bottom: none; }
  .hero-side-card:last-child { border-right: none; }
  .grid-main-side { grid-template-columns: 1fr; }
  .grid-article-side { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .adm-main { margin-left: 0; }
  .adm-sidebar { transform: translateX(-100%); }
  .adm-sidebar.open { transform: translateX(0); }
}
@media (max-width: 768px) {
  .primary-nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero-main { min-height: 360px; }
  .hero-h1 { font-size: 1.5rem; }
  .hero-side { flex-direction: column; }
  .hero-side-card { border-right: none; border-bottom: 1px solid var(--border); }
  .trending-strip { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-blog-hero { grid-template-columns: 1fr; }
  .newsletter-cta { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .post-hl { font-size: 1.7rem; }
  .wrap { padding: 0 16px; }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-main { min-height: 300px; }
  .hero-h1 { font-size: 1.3rem; }
  .hero-side { display: none; }
  .wall-h { font-size: 1.2rem; }
  .post-hl { font-size: 1.45rem; }
}
