/* ============================================================
 * PORTFOLIO CATEGORIES - Sosyal Medya / Video Reels / Kurumsal Kimlik
 * /neler-yaptik/, /sosyal-medya-referanslarimiz/,
 * /video-reels-reklamlari/, /kurumsal-kimlik-tasarim-referanslarimiz/
 * sayfalarında ortak kullanılır.
 * ============================================================ */

/* ===== STATS (ortak) ===== */
.ny-stats-section {
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.ny-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  margin: 0 auto;
  width: 100%;
  max-width: 760px;
}
.ny-stat {
  flex: 0 1 220px;
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.ny-stat:hover { transform: translateY(-3px); border-color: rgba(34,211,238,0.28); }
.ny-stat .v {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800; letter-spacing: -0.03em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1;
}
.ny-stat .l {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.005em;
}
@media (max-width: 760px) {
  .ny-stats-section { padding: 40px 0; min-height: 0; }
  .ny-stats { gap: 10px; max-width: 100%; }
  .ny-stat { flex: 1 1 0; min-width: 0; padding: 18px 10px; }
}

/* ===== WEB TASARIM GRID (banner kartları) ===== */
.ny-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 1024px) { .ny-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 640px)  {
  .ny-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ny-card { border-radius: 14px; }
  .ny-card-body { padding: 14px 14px 12px; }
  .ny-card h3 { display: none; }
  .ny-card .ny-url { font-size: 12.5px; }
  .ny-card .ny-badge { display: none; }
}

.ny-card {
  position: relative;
  display: block;
  aspect-ratio: 360 / 470;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background: #0a1020;
  border: 1px solid var(--border-strong);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform .45s ease, box-shadow .45s ease, border-color .25s;
}
.ny-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,211,238,0.45);
  box-shadow: 0 28px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(34,211,238,0.25);
}
.ny-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .8s ease, filter .35s;
  filter: saturate(0.95) brightness(0.92);
}
.ny-card:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(1.02); }
.ny-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,9,20,0) 35%, rgba(5,9,20,0.55) 65%, rgba(5,9,20,0.92) 100%);
  z-index: 1;
  transition: opacity .35s;
}
.ny-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 22px 22px 20px;
  transform: translateY(8px);
  transition: transform .35s;
}
.ny-card:hover .ny-card-body { transform: translateY(0); }
.ny-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px; font-weight: 800; letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.ny-card .ny-url {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: var(--neon);
  letter-spacing: 0.01em;
  font-weight: 600;
}
.ny-card .ny-url svg { transition: transform .35s; }
.ny-card:hover .ny-url svg { transform: translate(3px, -3px); }
.ny-card .ny-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(7, 12, 26, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(34,211,238,0.32);
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 700;
  color: #d6f6ff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== KATEGORİ TAB NAVIGATION (sadece /neler-yaptik/) ===== */
.ny-tabs-wrap {
  position: sticky;
  top: 64px;
  z-index: 30;
  background: rgba(5, 9, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.ny-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.ny-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}
.ny-tab:hover { border-color: rgba(34,211,238,0.4); color: #d6f6ff; }
.ny-tab .ny-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px; height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(34,211,238,0.12);
  color: var(--neon);
  font-size: 11px; font-weight: 700;
}
.ny-tab:focus { outline: none; }
.ny-tab:focus-visible { outline: 2px solid rgba(34,211,238,0.55); outline-offset: 2px; }
.ny-tab.is-active {
  background: var(--grad-brand);
  background-clip: padding-box;
  border: 1px solid transparent;
  color: #02101a;
  box-shadow: 0 6px 20px rgba(34,211,238,0.28);
}
.ny-tab.is-active:hover { color: #02101a; }
.ny-tab.is-active .ny-tab-count { background: rgba(2,16,26,0.18); color: #02101a; }
@media (max-width: 760px) {
  .ny-tabs-wrap { top: 56px; }
  .ny-tabs { padding: 10px 12px; gap: 6px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .ny-tab { padding: 8px 14px; font-size: 12.5px; white-space: nowrap; flex: 0 0 auto; }
}

.ny-pane { display: none; }
.ny-pane.is-active { display: block; }

/* ============================================================
 * SOSYAL MEDYA - Marka bazlı post galerisi
 * ============================================================ */
.sm-brand { margin-bottom: 56px; }
.sm-brand:last-child { margin-bottom: 0; }

.sm-brand-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.sm-brand-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.sm-brand-sector {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
}

.sm-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) { .sm-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px)  { .sm-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.sm-post {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: #0a1020;
  border: 1px solid var(--border);
  transition: transform .35s ease, border-color .25s, box-shadow .35s;
  text-decoration: none;
  color: inherit;
  cursor: zoom-in;
}
.sm-post:hover {
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.45);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(34,211,238,0.18);
}
.sm-post img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .35s;
}
.sm-post:hover img { transform: scale(1.06); }

/* Zoom ikon overlay - hover'da çıkar, tıklanabilir olduğunu belli eder */
.sm-post::after {
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background:
    rgba(7, 12, 26, 0.78)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.3-4.3M11 8v6M8 11h6'/></svg>")
    center / 16px 16px no-repeat;
  border: 1px solid rgba(34,211,238,0.35);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  z-index: 2;
}
.sm-post:hover::after,
.sm-post:focus-visible::after { opacity: 1; transform: translateY(0); }
.sm-post:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

/* ============================================================
 * KURUMSAL KİMLİK - Logo + açıklama kartları
 * ============================================================ */
.kk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 860px) { .kk-grid { grid-template-columns: 1fr; gap: 20px; } }

.kk-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s ease, border-color .25s, box-shadow .35s;
}
.kk-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.kk-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #0a1530 0%, #050b1a 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.kk-mockup img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.kk-mockup-fallback {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.kk-mockup-fallback img {
  position: static;
  width: auto; height: auto;
  max-width: 60%; max-height: 60%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

/* ============================================================
 * KK CAROUSEL - kart başına 2 görsellik kaydırmalı slider
 * ============================================================ */
.kk-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.kk-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.kk-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.kk-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.kk-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kk-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 11, 26, 0.72);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 50%;
  color: var(--neon, #22d3ee);
  cursor: pointer;
  opacity: 0;
  transition: opacity .25s, background .25s, border-color .25s, transform .2s;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.kk-carousel-btn:hover {
  background: rgba(34, 211, 238, 0.18);
  border-color: rgba(34, 211, 238, 0.7);
}
.kk-carousel-btn:active {
  transform: translateY(-50%) scale(0.94);
}
.kk-prev { left: 10px; }
.kk-next { right: 10px; }
.kk-card:hover .kk-carousel-btn,
.kk-carousel-btn:focus-visible {
  opacity: 1;
}
@media (hover: none) {
  .kk-carousel-btn { opacity: 0.85; }
}

.kk-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 6px;
  padding: 5px 8px;
  background: rgba(5, 11, 26, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 3;
}
.kk-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.kk-dot:hover { background: rgba(255, 255, 255, 0.6); }
.kk-dot.is-active {
  background: var(--neon, #22d3ee);
  transform: scale(1.25);
}

.kk-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.kk-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.kk-name {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.kk-sector {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
}
.kk-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.kk-rehber {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.28);
  border-radius: 10px;
  color: var(--neon);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  width: fit-content;
  transition: background .25s, border-color .25s;
}
.kk-rehber:hover {
  background: rgba(34,211,238,0.15);
  border-color: rgba(34,211,238,0.5);
}

/* ============================================================
 * DİĞER REFERANSLAR - Kategori şerit kartları
 * (orijinali /referanslarimiz/index.php inline'ından alındı)
 * ============================================================ */
.ref-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 900px) { .ref-cats { grid-template-columns: 1fr; } }
.ref-cat {
  position: relative;
  display: block;
  padding: 28px 26px;
  background: linear-gradient(160deg, rgba(13,20,40,0.88), rgba(10,16,32,0.88));
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  text-decoration: none;
  color: var(--text);
  transition: transform .35s, border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.ref-cat::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(34,211,238,0.10), transparent 55%);
  pointer-events: none; opacity: .65;
}
.ref-cat:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,0.32);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.ref-cat .num {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--neon);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ref-cat h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: -0.02em;
  margin: 10px 0 8px;
}
.ref-cat p {
  color: var(--text-muted);
  font-size: 14.5px; line-height: 1.6;
  margin: 0 0 18px;
}
.ref-cat .ar {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--neon);
}

/* ============================================================
 * IMAGE FALLBACK - dosya yokken kırık ikon yerine gradient + marka adı
 * Kullanım: <div class="img-fallback" data-label="Marka Adı"></div>
 * ============================================================ */
.img-fallback {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #0a1530 0%, #050b1a 100%);
  color: rgba(255,255,255,0.55);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.img-fallback::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(34,211,238,0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(139,92,246,0.12), transparent 60%);
  pointer-events: none;
}
.img-fallback > span { position: relative; z-index: 1; }

/* ============================================================
 * VIDEO & REELS - YouTube Shorts embed grid
 * ============================================================ */
.vr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 980px) { .vr-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 600px) { .vr-grid { grid-template-columns: 1fr; max-width: 380px; } }

.vr-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s ease, border-color .25s, box-shadow .35s;
  display: flex;
  flex-direction: column;
}
.vr-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.vr-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #050b1a;
  overflow: hidden;
}
.vr-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.vr-card-body {
  padding: 16px 18px 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.vr-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.vr-card-sector {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
}

/* ============================================================
 * VIDEO & REELS - Coming soon placeholder
 * ============================================================ */
.vr-empty {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px dashed var(--border-strong);
  border-radius: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.vr-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,211,238,0.1);
  color: var(--neon);
}
.vr-empty h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: #fff;
}
.vr-empty p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 auto 22px;
  max-width: 480px;
}

/* ============================================================
 * HUB - /neler-yaptik/ 4 kategori box
 * ============================================================ */
.ny-hub-section { padding-top: 56px; padding-bottom: 72px; }

.ny-hub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 880px) { .ny-hub { grid-template-columns: 1fr; gap: 16px; } }

.ny-hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 30px 28px;
  min-height: 360px;
  background: linear-gradient(160deg, rgba(13,20,40,0.92), rgba(10,16,32,0.92));
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1.2), border-color .25s, box-shadow .25s;
}
.ny-hub-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(34,211,238,0.14), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(124,58,237,0.10), transparent 50%);
  pointer-events: none;
  opacity: .8;
  transition: opacity .35s;
}
.ny-hub-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,211,238,0.45);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(34,211,238,0.18);
}
.ny-hub-card:hover::before { opacity: 1; }

.ny-hub-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ny-hub-num {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--neon);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ny-hub-count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(34,211,238,0.10);
  border: 1px solid rgba(34,211,238,0.28);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
}
.ny-hub-count strong {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--neon);
}
.ny-hub-count span { color: var(--text-muted); font-size: 12.5px; }

.ny-hub-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ny-hub-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
  line-height: 1.15;
}
.ny-hub-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: 96%;
}

.ny-hub-thumbs {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  padding-left: 6px;
  height: 88px;
}
.ny-hub-thumb {
  width: 96px;
  height: 84px;
  margin-left: -28px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(13,20,40,0.95);
  background: #0b1024;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transform: rotate(calc(-4deg + (var(--i) * 4deg)));
  transition: transform .35s, margin-left .35s;
}
.ny-hub-thumb:first-child { margin-left: 0; }
.ny-hub-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ny-hub-card:hover .ny-hub-thumb {
  margin-left: 4px;
  transform: rotate(0) translateY(-2px);
}
.ny-hub-card:hover .ny-hub-thumb:first-child { margin-left: 0; }

.ny-hub-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: -0.005em;
}
.ny-hub-cta svg { transition: transform .25s; }
.ny-hub-card:hover .ny-hub-cta svg { transform: translateX(6px); }

@media (max-width: 600px) {
  .ny-hub-card { padding: 26px 22px 22px; min-height: auto; }
  .ny-hub-body h3 { font-size: 22px; }
  .ny-hub-thumb { width: 78px; height: 70px; margin-left: -22px; }
}
