/* ═══════════════════════════════════════════════════
   NHN – השרון הצפוני | TIME/VOGUE MAGAZINE STYLE
   אדום #c0251a · ירוק #5aab1e · לבן
   WP 5.x / PHP 7.x compatible
═══════════════════════════════════════════════════ */

:root {
  --red:      #c0251a;
  --red2:     #e8350a;
  --red-lt:   #fef2f1;
  --green:    #5aab1e;
  --green2:   #4a9318;
  --green-lt: #f1f9ea;
  --white:    #ffffff;
  --off:      #f8f7f4;
  --border:   #e8e4dc;
  --text:     #181818;
  --mid:      #666;
  --soft:     #aaa;
  --gap:      3px;
  --ease:     cubic-bezier(0.22,1,0.36,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Lunasima','Heebo','Arial',sans-serif;
  background: var(--white);
  color: var(--text);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
img.fill { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── TICKER ── */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding: 9px 0;
  position: relative;
  z-index: 200;
}
.ticker::before {
  content: "עכשיו";
  position: absolute; right: 0; top: 0; bottom: 0;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  white-space: nowrap;
}
.ticker-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-animation: roll 38s linear infinite;
          animation: roll 38s linear infinite;
  padding-right: 96px;
}
.ticker-track:hover { -webkit-animation-play-state: paused; animation-play-state: paused; }
.ticker-track span {
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,.22);
  font-size: 12.5px;
  color: rgba(255,255,255,.88);
}
.ticker-track a { color: inherit; }
.ticker-track strong { color: #fff; font-weight: 700; }
@-webkit-keyframes roll { 0%{-webkit-transform:translateX(0);transform:translateX(0)} 100%{-webkit-transform:translateX(-50%);transform:translateX(50%)} }
@keyframes roll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  -webkit-box-shadow: 0 2px 16px rgba(0,0,0,.07);
          box-shadow: 0 2px 16px rgba(0,0,0,.07);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header.scrolled { -webkit-box-shadow: 0 4px 24px rgba(0,0,0,.12); box-shadow: 0 4px 24px rgba(0,0,0,.12); }
.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo-wrap { -ms-flex-negative: 0; flex-shrink: 0; }
.logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.logo-nhnet {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .06em;
  padding: 5px 10px;
  border-radius: 5px;
}
.logo-divider { width: 1px; height: 30px; background: var(--border); -ms-flex-negative: 0; flex-shrink: 0; }
.logo-textgroup { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.logo-he { font-size: 22px; font-weight: 700; color: var(--red2); line-height: 1; letter-spacing: -.3px; }
.logo-cities { font-size: 10px; color: var(--soft); margin-top: 2px; }
.custom-logo { height: 44px; width: auto; }

.site-nav { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; overflow: hidden; }
.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav-list li a {
  padding: 6px 12px;
  font-size: 13px;
  color: var(--mid);
  border-radius: 5px;
  white-space: nowrap;
  -webkit-transition: all .15s;
  transition: all .15s;
  display: block;
}
.nav-list li a:hover,
.nav-list li.current-menu-item a,
.nav-list li.current-cat a { color: var(--red); background: var(--red-lt); }
.nav-list li a.hot { color: var(--red); font-weight: 700; }

.hdr-btns { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 8px; -ms-flex-negative: 0; flex-shrink: 0; }
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  -webkit-transition: all .18s var(--ease);
  transition: all .18s var(--ease);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--mid); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red2); -webkit-transform: translateY(-1px); transform: translateY(-1px); -webkit-box-shadow: 0 4px 14px rgba(192,37,26,.28); box-shadow: 0 4px 14px rgba(192,37,26,.28); }
.btn-white-red { background: #fff; color: var(--green2); font-weight: 700; padding: 9px 20px; border-radius: 5px; display: inline-block; -webkit-transition: opacity .2s; transition: opacity .2s; }
.btn-white-red:hover { opacity: .9; }

.nav-toggle { display: none; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; -webkit-transition: all .2s; transition: all .2s; }

/* ── CITY BAR ── */
.city-bar { background: var(--off); border-bottom: 1px solid var(--border); }
.city-bar-inner {
  max-width: 1360px; margin: 0 auto; padding: 10px 24px;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  gap: 6px; -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  overflow-x: auto; scrollbar-width: none;
}
.city-bar-inner::-webkit-scrollbar { display: none; }
.city-lbl { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; color: var(--soft); margin-left: 10px; white-space: nowrap; }
.cpill {
  padding: 5px 15px; border-radius: 100px; font-size: 12px; font-weight: 700;
  cursor: pointer; border: 1.5px solid var(--border); background: #fff;
  color: var(--mid); font-family: inherit; white-space: nowrap;
  -webkit-transition: all .15s; transition: all .15s;
}
.cpill:hover { border-color: var(--green); color: var(--green); }
.cpill.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ── BADGES ── */
.badge {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
}
.b-red     { background: var(--red); color: #fff; }
.b-red-lt  { background: var(--red-lt); color: var(--red); border: 1px solid rgba(192,37,26,.15); }
.b-green   { background: var(--green); color: #fff; }
.b-green-lt{ background: var(--green-lt); color: var(--green2); border: 1px solid rgba(90,171,30,.2); }
.b-soft    { background: var(--off); color: var(--mid); border: 1px solid var(--border); }
.b-white   { background: rgba(255,255,255,.2); color: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.28); }

/* ── SECTION LABELS ── */
.sec-lbl {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  gap: 12px; padding: 24px 0 8px;
}
.bar { width: 4px; height: 22px; border-radius: 3px; -ms-flex-negative: 0; flex-shrink: 0; }
.bar-red   { background: var(--red); }
.bar-green { background: var(--green); }
.sec-lbl h2 { font-size: 18px; font-weight: 700; }
.rule { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; height: 1px; background: var(--border); }
.sec-lbl a { font-size: 12px; font-weight: 700; color: var(--red); }
.sec-lbl a:hover { color: var(--red2); }
.green-link { color: var(--green2) !important; }
.green-link:hover { color: var(--green) !important; }

/* ── MAGAZINE WRAPPER ── */
.mag-wrap { max-width: 1360px; margin: 0 auto; padding: 18px 20px 64px; }

/* ── ANIMATIONS ── */
@-webkit-keyframes fadeUp { from{opacity:0;-webkit-transform:translateY(18px);transform:translateY(18px)} to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
.anim { opacity: 0; }
.anim.in { -webkit-animation: fadeUp .46s var(--ease) both; animation: fadeUp .46s var(--ease) both; }

/* ══════════════════════════════════════
   VOGUE HERO – תמונה ענקית מלאה
══════════════════════════════════════ */
.hero-section { margin-bottom: var(--gap); }

.vogue-hero { display: block;
  position: relative;
  height: 88vh;
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
  background: #111;
}
.vogue-hero img { position: absolute; top:0; left:0;
  width: 100%; height: 100%;
  -o-object-fit: cover; object-fit: cover;
  -webkit-transition: -webkit-transform .8s var(--ease);
  transition: transform .8s var(--ease);
  filter: brightness(.6);
}
.vogue-hero:hover img { -webkit-transform: scale(1.03); transform: scale(1.03); }

.vogue-hero-overlay {
  position: absolute; inset: 0;
  background: -webkit-gradient(linear,left bottom,left top,from(rgba(10,4,2,.96)),color-stop(40%,rgba(10,4,2,.35)),to(transparent));
  background: linear-gradient(to top,rgba(10,4,2,.96) 0%,rgba(10,4,2,.35) 40%,transparent 100%);
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
  -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end;
  padding: 48px 52px;
}
.vogue-hero-overlay .badge { margin-bottom: 16px; }
.vogue-hero-title {
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.5px;
  max-width: 820px;
  margin-bottom: 16px;
}
.vogue-hero-lead {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 18px;
}
.vogue-hero-meta {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  gap: 20px; font-size: 11.5px; color: rgba(255,255,255,.35);
  -ms-flex-wrap: wrap; flex-wrap: wrap;
}

/* VOGUE SECONDARY ROW – 3 תמונות קטנות מתחת ל-hero */
.vogue-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: var(--gap);
}
.vsec-card {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #eee;
}
.vsec-card img {
  width: 100%; height: 100%;
  -o-object-fit: cover; object-fit: cover;
  -webkit-transition: -webkit-transform .6s var(--ease);
  transition: transform .6s var(--ease);
  filter: brightness(.65);
}
.vsec-card:hover img { -webkit-transform: scale(1.05); transform: scale(1.05); }
.vsec-overlay {
  position: absolute; inset: 0;
  background: -webkit-gradient(linear,left bottom,left top,from(rgba(8,4,2,.9)),color-stop(50%,transparent));
  background: linear-gradient(to top,rgba(8,4,2,.9) 0%,transparent 50%);
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
  -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end;
  padding: 20px 22px;
}
.vsec-overlay .badge { margin-bottom: 8px; }
.vsec-overlay h3 {
  font-size: 16px; font-weight: 700; color: #fff; line-height: 1.28;
  -webkit-transition: opacity .2s; transition: opacity .2s;
}
.vsec-card:hover h3 { opacity: .85; }
.vsec-meta { font-size: 10.5px; color: rgba(255,255,255,.38); margin-top: 6px; }

/* ══════════════════════════════════════
   POPULAR – הכי נקראים
══════════════════════════════════════ */
.popular-wrap {
  display: grid;
  grid-template-columns: 160px repeat(5,1fr);
  gap: var(--gap);
  height: 150px;
  margin-bottom: var(--gap);
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(0,0,0,.06);
          box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.pop-label {
  background: var(--red);
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
  -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end;
  padding: 14px 16px 18px;
}
.pl-num { font-size: 64px; font-weight: 700; color: rgba(255,255,255,.15); line-height: 1; }
.pl-txt { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; margin-top: -5px; }
.pop-card {
  background: #fff; position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
  -webkit-transition: background .15s; transition: background .15s;
}
.pop-card:last-child { border-right: none; }
.pop-link {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
  -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
  height: 100%; padding: 13px 14px;
}
.pop-card:hover { background: var(--red-lt); }
.pop-card.green-card { background: var(--green-lt); }
.pop-card.green-card:hover { background: #e6f6d4; }
.pop-rank { font-size: 44px; font-weight: 700; color: var(--off); line-height: 1; position: absolute; top: 6px; left: 8px; }
.pop-card.green-card .pop-rank { color: rgba(90,171,30,.1); }
.pc-cat { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); position: relative; }
.pop-card h4 { font-size: 13px; font-weight: 700; line-height: 1.3; color: var(--text); position: relative; -webkit-transition: color .15s; transition: color .15s; }
.pop-card:hover h4 { color: var(--red); }
.pop-card.green-card:hover h4 { color: var(--green2); }
.pc-meta { font-size: 10px; color: var(--soft); position: relative; }

/* ══════════════════════════════════════
   VOGUE 2-COL EDITORIAL
══════════════════════════════════════ */
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-bottom: var(--gap);
}
.ed-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #eee;
}
.ed-card img {
  width: 100%; height: 100%;
  -o-object-fit: cover; object-fit: cover;
  -webkit-transition: -webkit-transform .65s var(--ease);
  transition: transform .65s var(--ease);
  filter: brightness(.62);
}
.ed-card:hover img { -webkit-transform: scale(1.04); transform: scale(1.04); }
.ed-overlay {
  position: absolute; inset: 0;
  background: -webkit-gradient(linear,left bottom,left top,from(rgba(8,4,2,.94)),color-stop(48%,transparent));
  background: linear-gradient(to top,rgba(8,4,2,.94) 0%,transparent 48%);
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
  -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end;
  padding: 28px 28px;
}
.ed-overlay .badge { margin-bottom: 10px; }
.ed-overlay h2 { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.22; margin-bottom: 8px; -webkit-transition: opacity .2s; transition: opacity .2s; }
.ed-card:hover h2 { opacity: .85; }
.ed-overlay p { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.65; }
.ed-meta { font-size: 10.5px; color: rgba(255,255,255,.32); margin-top: 10px; }

/* ══════════════════════════════════════
   3 IMAGE CARDS
══════════════════════════════════════ */
.three-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: var(--gap); margin-bottom: var(--gap);
}
.img-card {
  background: #fff; border-radius: 8px; border: 1px solid var(--border);
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow .25s var(--ease),-webkit-transform .25s var(--ease);
  transition: box-shadow .25s var(--ease),transform .25s var(--ease);
}
.img-card:hover { -webkit-box-shadow: 0 8px 32px rgba(0,0,0,.1); box-shadow: 0 8px 32px rgba(0,0,0,.1); -webkit-transform: translateY(-3px); transform: translateY(-3px); }
.card-link { display: block; }
.ic-thumb { overflow: hidden; height: 200px; }
.ic-thumb img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; -webkit-transition: -webkit-transform .55s var(--ease); transition: transform .55s var(--ease); }
.img-card:hover .ic-thumb img { -webkit-transform: scale(1.06); transform: scale(1.06); }
.ic-body { padding: 18px 20px 20px; }
.ic-body .badge { margin-bottom: 10px; }
.ic-body h3 { font-size: 19px; font-weight: 700; line-height: 1.25; margin-bottom: 9px; color: var(--text); -webkit-transition: color .15s; transition: color .15s; }
.img-card:hover h3 { color: var(--red); }
.ic-body p { font-size: 12.5px; color: var(--mid); line-height: 1.65; }
.ic-foot { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border); font-size: 11px; color: var(--soft); }

/* ══════════════════════════════════════
   LOCATION GRID
══════════════════════════════════════ */
.loc-grid {
  display: grid; grid-template-columns: 215px 1fr 1fr;
  gap: var(--gap); margin-bottom: var(--gap);
  border-radius: 8px; overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(0,0,0,.06);
          box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.city-anchor {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
  -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end;
  padding: 24px 20px;
}
.red-bg { background: var(--red); }
.green-bg { background: var(--green); }
.ca-label { font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.ca-title { font-size: 28px; font-weight: 700; color: #fff; line-height: 1.1; }
.ca-sub   { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 4px; }
.ca-link  { margin-top: 16px; font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.48); display: inline-block; -webkit-transition: color .15s; transition: color .15s; }
.city-anchor:hover .ca-link { color: #fff; }
.city-news { background: #fff; overflow: hidden; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.cn-header { padding: 11px 15px; border-bottom: 2.5px solid var(--red); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
.cn-header.green-hd { border-bottom-color: var(--green); }
.cn-header span { font-size: 14px; font-weight: 700; }
.cn-header a { font-size: 11px; font-weight: 700; color: var(--red); }
.cn-header.green-hd a { color: var(--green2); }
.cn-feat { display: grid; grid-template-columns: 108px 1fr; cursor: pointer; border-bottom: 1px solid var(--border); -webkit-transition: background .15s; transition: background .15s; -ms-flex-negative: 0; flex-shrink: 0; }
.cn-feat:hover { background: var(--off); }
.cn-feat-img { overflow: hidden; }
.cn-feat-img img { width: 108px; height: 86px; -o-object-fit: cover; object-fit: cover; }
.cn-feat-body { padding: 11px 13px; }
.cn-feat-body .badge { margin-bottom: 5px; }
.cn-feat-body h4 { font-size: 13.5px; font-weight: 700; line-height: 1.3; -webkit-transition: color .15s; transition: color .15s; }
.cn-feat:hover h4, .cn-feat a:hover h4 { color: var(--red); }
.cn-feat-body a { color: inherit; }
.tm { font-size: 10px; color: var(--soft); margin-top: 4px; }
.cn-item { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: baseline; -ms-flex-align: baseline; align-items: baseline; gap: 10px; padding: 9px 14px; border-bottom: 1px solid var(--border); cursor: pointer; -webkit-transition: background .15s; transition: background .15s; }
.cn-item:last-child { border-bottom: none; }
.cn-item:hover { background: var(--off); }
.cn-num { font-size: 20px; font-weight: 700; color: var(--border); -ms-flex-negative: 0; flex-shrink: 0; width: 22px; line-height: 1; }
.cn-item h4 { font-size: 13px; font-weight: 700; line-height: 1.35; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -webkit-transition: color .15s; transition: color .15s; }
.cn-item:hover h4 { color: var(--red); }
.cn-item a { color: inherit; }
.cn-item .tm { white-space: nowrap; }
.no-posts { padding: 16px; font-size: 13px; color: var(--mid); }

/* ══════════════════════════════════════
   FEATURE ROW
══════════════════════════════════════ */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr 250px;
  gap: var(--gap); min-height: 268px; margin-bottom: var(--gap);
  border-radius: 8px; overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(0,0,0,.06); box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.feat-block { cursor: pointer; position: relative; overflow: hidden; }
.feat-link {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
  -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end;
  height: 100%; padding: 26px 24px;
}
.red-feat { background: var(--red); -webkit-transition: background .2s; transition: background .2s; }
.red-feat:hover { background: var(--red2); }
.red-feat::before { content:''; position:absolute; top:-50px; left:-50px; width:200px; height:200px; border-radius:50%; background:rgba(255,255,255,.04); pointer-events:none; }
.red-feat .badge { margin-bottom: 14px; -ms-flex-item-align: start; align-self: flex-start; }
.red-feat h2 { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.22; margin-bottom: 10px; position: relative; }
.red-feat p { font-size: 12.5px; color: rgba(255,255,255,.6); line-height: 1.7; position: relative; }
.read-more { margin-top: 16px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.72); display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 6px; position: relative; -webkit-transition: gap .2s; transition: gap .2s; }
.red-feat:hover .read-more { gap: 10px; color: #fff; }
.green-feat { background: var(--green); -webkit-transition: background .2s; transition: background .2s; }
.green-feat:hover { background: var(--green2); }
.big-txt { font-size: 96px; font-weight: 700; color: rgba(255,255,255,.1); line-height: 1; position: absolute; top: -8px; left: 8px; letter-spacing: -4px; pointer-events: none; }
.green-feat .badge { margin-bottom: 10px; -ms-flex-item-align: start; align-self: flex-start; }
.green-feat h3 { font-size: 19px; font-weight: 700; color: #fff; line-height: 1.22; margin-bottom: 8px; position: relative; }
.green-feat p { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.65; position: relative; }
.feat-side { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: var(--gap); background: var(--border); }
.sd { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; background: #fff; padding: 14px 15px; cursor: pointer; -webkit-transition: background .15s; transition: background .15s; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; gap: 6px; }
.sd:hover { background: var(--off); }
.sd-link { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 6px; }
.sd .badge { -ms-flex-item-align: start; align-self: flex-start; }
.sd h4 { font-size: 14px; font-weight: 700; line-height: 1.3; -webkit-transition: color .15s; transition: color .15s; }
.sd:hover h4 { color: var(--red); }

/* ══════════════════════════════════════
   SMALL CARDS 4-COL
══════════════════════════════════════ */
.four-col { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); margin-bottom: var(--gap); }
.sm-card {
  background: #fff; border-radius: 8px; border: 1px solid var(--border); overflow: hidden;
  -webkit-transition: -webkit-box-shadow .2s var(--ease),-webkit-transform .2s var(--ease);
  transition: box-shadow .2s var(--ease),transform .2s var(--ease);
}
.sm-card:hover { -webkit-box-shadow: 0 4px 20px rgba(90,171,30,.13); box-shadow: 0 4px 20px rgba(90,171,30,.13); -webkit-transform: translateY(-2px); transform: translateY(-2px); }
.sm-img { height: 130px; overflow: hidden; }
.sm-img img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; -webkit-transition: -webkit-transform .5s var(--ease); transition: transform .5s var(--ease); }
.sm-card:hover .sm-img img { -webkit-transform: scale(1.07); transform: scale(1.07); }
.sm-body { padding: 12px 14px 14px; }
.sm-body .badge { margin-bottom: 7px; }
.sm-card h4 { font-size: 14px; font-weight: 700; line-height: 1.3; -webkit-transition: color .15s; transition: color .15s; }
.sm-card:hover h4 { color: var(--green2); }

/* ══════════════════════════════════════
   BOTTOM
══════════════════════════════════════ */
.bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); border-radius: 8px; overflow: hidden; -webkit-box-shadow: 0 2px 12px rgba(0,0,0,.06); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.nl-block { background: var(--red); padding: 32px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 16px; }
.nl-block h3 { font-size: 21px; font-weight: 700; color: #fff; line-height: 1.2; }
.nl-block p  { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.65; }
.nl-form { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 8px; }
.nl-in { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; padding: 10px 14px; border: none; border-radius: 5px; font-size: 13px; font-family: inherit; background: rgba(255,255,255,.18); color: #fff; outline: none; }
.nl-in::-webkit-input-placeholder { color: rgba(255,255,255,.4); }
.nl-in::-moz-placeholder { color: rgba(255,255,255,.4); }
.nl-in:-ms-input-placeholder { color: rgba(255,255,255,.4); }
.nl-in::placeholder { color: rgba(255,255,255,.4); }
.nl-in:focus { background: rgba(255,255,255,.25); }
.nl-btn { padding: 10px 18px; background: #fff; color: var(--red); border: none; border-radius: 5px; font-size: 13px; font-weight: 700; font-family: inherit; cursor: pointer; white-space: nowrap; -webkit-transition: opacity .2s; transition: opacity .2s; }
.nl-btn:hover { opacity: .88; }
.ads-block { background: var(--green); padding: 32px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.ads-stats { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 26px; margin-bottom: 18px; }
.stat-n { font-size: 34px; font-weight: 700; color: #fff; display: block; line-height: 1; }
.stat-l { font-size: 10.5px; color: rgba(255,255,255,.6); margin-top: 2px; }
.ads-block h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.ads-block p  { font-size: 12.5px; color: rgba(255,255,255,.62); line-height: 1.65; margin-bottom: 16px; }

/* ══════════════════════════════════════
   SINGLE ARTICLE
══════════════════════════════════════ */
.single-main { background: var(--white); }
.single-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px 64px; }
.article-header { border-bottom: 1px solid var(--border); padding: 30px 0 24px; }
.article-header-inner { max-width: 800px; }
.breadcrumb { font-size: 11.5px; color: var(--soft); margin-bottom: 16px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 6px; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.breadcrumb a { color: var(--mid); -webkit-transition: color .15s; transition: color .15s; }
.breadcrumb a:hover { color: var(--red); }
.bc-sep { color: var(--border); }
.article-badges { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 8px; margin-bottom: 16px; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.article-title { font-size: clamp(24px,3.5vw,40px); font-weight: 700; line-height: 1.18; margin-bottom: 16px; letter-spacing: -.4px; }
.article-lead { font-size: 17px; color: var(--mid); line-height: 1.75; margin-bottom: 18px; }
.article-meta { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 18px; font-size: 12px; color: var(--mid); margin-bottom: 16px; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.meta-author { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 8px; font-weight: 700; }
.meta-avatar { border-radius: 50%; }
.article-share { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 8px; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.share-btn { padding: 6px 14px; border-radius: 5px; font-size: 12px; font-weight: 700; -webkit-transition: opacity .2s; transition: opacity .2s; display: inline-block; }
.share-fb { background: #1877f2; color: #fff; }
.share-wa { background: #25d366; color: #fff; }
.share-tw { background: #14171a; color: #fff; }
.share-btn:hover { opacity: .82; }
.article-hero-img { margin: 26px 0; border-radius: 8px; overflow: hidden; }
.article-hero-img img { width: 100%; max-height: 540px; -o-object-fit: cover; object-fit: cover; }
.img-caption { font-size: 11.5px; color: var(--soft); padding: 8px 12px; background: var(--off); }
.article-content-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 40px; margin-top: 28px; }
.article-content { max-width: 700px; }
.article-content p { font-size: 16px; line-height: 1.88; margin-bottom: 22px; }
.article-content h2 { font-size: 24px; font-weight: 700; margin: 30px 0 12px; }
.article-content h3 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; }
.article-content img { border-radius: 6px; margin: 22px 0; max-width: 100%; }
.article-content blockquote { border-right: 4px solid var(--red); padding: 14px 20px; margin: 26px 0; background: var(--red-lt); border-radius: 0 6px 6px 0; font-size: 17px; color: var(--mid); font-style: italic; }
.article-content ul, .article-content ol { margin: 16px 0 16px 22px; }
.article-content li { margin-bottom: 8px; font-size: 15.5px; line-height: 1.72; }
.article-content a { color: var(--red); border-bottom: 1px solid rgba(192,37,26,.25); -webkit-transition: border-color .15s; transition: border-color .15s; }
.article-content a:hover { border-color: var(--red); }
.article-tags { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 12.5px; color: var(--mid); }
.article-tags a { display: inline-block; margin: 3px; padding: 4px 12px; background: var(--off); border-radius: 100px; color: var(--mid); -webkit-transition: all .15s; transition: all .15s; }
.article-tags a:hover { background: var(--red-lt); color: var(--red); }
.article-comments { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.article-sidebar { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 20px; }
.sidebar-block { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.sidebar-block-head { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 10px; padding: 12px 15px; border-bottom: 1px solid var(--border); }
.sidebar-block-head h3 { font-size: 14px; font-weight: 700; }
.sidebar-item { border-bottom: 1px solid var(--border); }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item a { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 10px; padding: 12px 14px; -webkit-transition: background .15s; transition: background .15s; }
.sidebar-item a:hover { background: var(--off); }
.sidebar-thumb { width: 70px; height: 52px; -ms-flex-negative: 0; flex-shrink: 0; border-radius: 4px; overflow: hidden; }
.sidebar-thumb img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.sidebar-item-body h4 { font-size: 13px; font-weight: 700; line-height: 1.3; -webkit-transition: color .15s; transition: color .15s; }
.sidebar-item a:hover h4 { color: var(--red); }
.sidebar-item-body .tm { font-size: 10.5px; color: var(--soft); margin-top: 4px; }
.sidebar-ad-block { background: var(--green-lt); border: 1px solid rgba(90,171,30,.22); border-radius: 8px; padding: 20px; text-align: center; }
.sidebar-ad-block h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--green2); }
.sidebar-ad-block p { font-size: 13px; color: var(--mid); margin-bottom: 14px; }

/* ══════════════════════════════════════
   ARCHIVE
══════════════════════════════════════ */
.archive-wrap { max-width: 1200px; margin: 0 auto; padding: 28px 20px 64px; display: grid; grid-template-columns: 1fr 270px; gap: 44px; }
.archive-header { grid-column: 1 / -1; padding-bottom: 18px; border-bottom: 3px solid var(--red); }
.archive-title { font-size: 28px; font-weight: 700; }
.archive-desc  { font-size: 14px; color: var(--mid); margin-top: 6px; }
.archive-grid  { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 20px; }
.pagination { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 8px; margin-top: 28px; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.pagination .page-numbers { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 5px; font-size: 13px; font-weight: 700; color: var(--mid); -webkit-transition: all .15s; transition: all .15s; }
.pagination .page-numbers:hover, .pagination .current { background: var(--red); color: #fff; border-color: var(--red); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--off); border-top: 3px solid var(--red); }
.footer-inner { max-width: 1360px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 48px; padding: 42px 0; border-bottom: 1px solid var(--border); }
.footer-logo { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-logo .logo-nhnet { font-size: 12px; }
.footer-logo-name { font-size: 18px; font-weight: 700; color: var(--red2); }
.footer-desc { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 16px; }
.footer-cities { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 6px; }
.footer-cities span { font-size: 11px; color: var(--soft); padding: 3px 8px; background: var(--border); border-radius: 100px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text); margin-bottom: 14px; }
.footer-links { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--mid); -webkit-transition: color .15s; transition: color .15s; }
.footer-links a:hover { color: var(--red); }
.footer-bottom { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 16px 0; font-size: 11.5px; color: var(--soft); }
.footer-legal { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 16px; }
.footer-legal a { color: var(--soft); -webkit-transition: color .15s; transition: color .15s; }
.footer-legal a:hover { color: var(--red); }
.widget { margin-bottom: 24px; }
.widget-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 2px solid var(--red); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .popular-wrap { grid-template-columns: 140px repeat(4,1fr); }
  .four-col { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .archive-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .site-nav { display: none; }
  .nav-toggle { display: -webkit-box; display: -ms-flexbox; display: flex; }
  .hdr-btns .btn-ghost { display: none; }
  .vogue-hero { height: 56vw; min-height: 320px; }
  .vogue-hero-overlay { padding: 28px 24px; }
  .vogue-secondary { grid-template-columns: 1fr; }
  .vsec-card { height: 200px; }
  .editorial-row { grid-template-columns: 1fr; }
  .ed-card { height: 280px; }
  .popular-wrap { grid-template-columns: 1fr 1fr 1fr; height: auto; }
  .pop-label { display: none; }
  .three-cards { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .bottom-row { grid-template-columns: 1fr; }
  .article-content-wrap { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .article-title { font-size: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 8px; text-align: center; }
  .mag-wrap { padding: 12px 12px 42px; }
}
@media (max-width: 560px) {
  .popular-wrap { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: 1fr; }
  .nl-form { -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .nl-in { width: 100%; }
  .header-inner { height: 58px; }
  .logo-he { font-size: 18px; }
  .logo-cities { display: none; }
}
.site-nav.open { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; position: absolute; top: 100%; right: 0; left: 0; background: #fff; border-bottom: 2px solid var(--border); padding: 12px; -webkit-box-shadow: 0 8px 28px rgba(0,0,0,.12); box-shadow: 0 8px 28px rgba(0,0,0,.12); z-index: 99; }
.site-nav.open .nav-list { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }

/* ── NO THUMBNAIL FALLBACKS ── */
.vogue-hero:not(:has(img)) .vogue-hero-overlay,
.vogue-hero .vogue-hero-overlay {
  background: linear-gradient(135deg, rgba(192,37,26,.92) 0%, rgba(26,16,10,.98) 60%, rgba(90,171,30,.15) 100%);
}
.vsec-card:not(:has(img)) {
  background: linear-gradient(135deg, var(--red) 0%, #2a1008 100%);
}
.ed-card:not(:has(img)) {
  background: linear-gradient(135deg, #1a2a10 0%, var(--green) 100%);
}
/* Fix: ticker must not overflow page */
.ticker { max-width: 100vw; }
.ticker-track { will-change: transform; }
/* Fix: nav-list PHP 7 short array syntax might break - ensure display */
.nav-list { display: -webkit-box; display: -ms-flexbox; display: flex; padding: 0; margin: 0; list-style: none; }
