/* ============================================================
   FRONT PAGE STYLES — shared
   ============================================================ */
.k-fp { padding: 0; }
.k-fp + .k-fp { margin-top: 0; }

/* ============================================================
   STYLE 1 — Dalaho
   Hierarchical grid hero, topic bar, curation grids, most-read
   Colors: white bg, #222 text, warm accent
   ============================================================ */

/* Hero: 1 large left + 4 small stacked right */
.k-dal-hero {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--k-border);
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
}
.k-dal-hero-main {
  grid-row: 1 / -1;
  position: relative;
  display: block;
  color: white;
  text-decoration: none;
  min-height: 400px;
}
.k-dal-hero-img { position: absolute; inset: 0; }
.k-dal-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.k-dal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.08 0.01 60 / 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  gap: 8px;
}
.k-dal-topic {
  font-family: var(--k-font-ui);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: oklch(0.85 0.08 25);
}
.k-dal-hero-title { font-size: 28px; font-weight: 800; line-height: 1.35; margin: 0; }
.k-dal-hero-excerpt { font-size: 14px; line-height: 1.6; color: oklch(0.8 0.005 60); margin: 0; }

.k-dal-hero-side {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: white;
  text-decoration: none;
  color: var(--k-text);
  align-items: flex-start;
  min-height: 100px;
}
.k-dal-hero-side:hover { background: oklch(0.97 0.005 60); }
.k-dal-side-img { width: 110px; flex-shrink: 0; border-radius: 6px; overflow: hidden; }
.k-dal-side-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.k-dal-side-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.k-dal-side-title { font-size: 14px; font-weight: 700; margin: 0; line-height: 1.45; }

/* Topic bar */
.k-dal-topics-bar { background: oklch(0.15 0.01 60); padding: 0; }
.k-dal-topics {
  display: flex;
  gap: 0;
  overflow-x: auto;
  max-width: var(--k-max-width);
  margin: 0 auto;
}
.k-dal-topic-link {
  padding: 12px 18px;
  font-family: var(--k-font-ui);
  font-size: 13px;
  font-weight: 700;
  color: white !important;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s;
}
.k-dal-topic-link:hover { background: oklch(0.25 0.01 60); text-decoration: none; }

/* Curation grids */
.k-dal-curation { padding: 36px 0; }
.k-dal-curation--alt { background: oklch(0.97 0.004 60); }
.k-dal-curation-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.k-dal-section-title {
  font-family: var(--k-font-ui);
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  padding-right: 14px;
  border-right: 4px solid var(--k-accent);
}
.k-dal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.k-dal-card { display: flex; flex-direction: column; gap: 8px; text-decoration: none; color: var(--k-text); }
.k-dal-card:hover { text-decoration: none; }
.k-dal-card:hover .k-dal-card-title { color: var(--k-accent); }
.k-dal-card-img { border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; background: var(--k-placeholder-bg); }
.k-dal-card-img img { width: 100%; height: 100%; object-fit: cover; }
.k-dal-card-title { font-family: var(--k-font-ui); font-size: 15px; font-weight: 700; margin: 0; line-height: 1.4; transition: color 0.15s; }
.k-dal-card-meta { font-family: var(--k-font-ui); font-size: 12px; color: var(--k-text-muted); }
.k-dal-hero-meta { font-family: var(--k-font-ui); font-size: 13px; color: oklch(0.8 0 0); margin-top: 8px; }
.k-dal-hero-meta .k-author-name { color: #fff; }

/* Most read */
.k-dal-most-read { padding: 36px 0; background: oklch(0.97 0.004 60); }
.k-dal-most-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--k-border);
  border-radius: 10px;
  overflow: hidden;
  background: white;
}
.k-dal-most-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--k-border-faint);
  text-decoration: none;
  color: var(--k-text);
}
.k-dal-most-item:nth-child(odd) { border-left: 1px solid var(--k-border-faint); }
.k-dal-most-item:hover { background: oklch(0.97 0.005 60); text-decoration: none; }
.k-dal-most-rank {
  font-family: var(--k-font-ui);
  font-size: 28px;
  font-weight: 800;
  color: var(--k-rank-color);
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.k-dal-most-title { font-family: var(--k-font-ui); font-size: 14px; font-weight: 600; line-height: 1.5; }

/* ============================================================
   STYLE 2 — Awyer
   Carousel + editor picks sidebar, 3-col grid, category rows
   Colors: white bg, soft blue accents
   ============================================================ */
.k-awy-top { padding: 24px 0; }
.k-awy-top-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
}

/* Carousel */
.k-awy-carousel { position: relative; border-radius: 12px; overflow: hidden; }
.k-awy-carousel-track { position: relative; aspect-ratio: 16/9; }
.k-awy-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}
.k-awy-slide.active { opacity: 1; pointer-events: auto; }
.k-awy-slide-img { position: absolute; inset: 0; background: oklch(0.2 0.01 60); }
.k-awy-slide-img img { width: 100%; height: 100%; object-fit: cover; }
.k-awy-slide-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, oklch(0.05 0.01 60 / 0.85), transparent);
  padding: 40px 20px 18px;
  color: white;
}
.k-awy-slide-caption h2 { font-family: var(--k-font-ui); font-size: 20px; font-weight: 800; margin: 0 0 6px; }
.k-awy-slide-caption span { font-size: 12px; color: oklch(0.75 0.005 60); }
.k-awy-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.k-awy-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid oklch(1 0 0 / 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.k-awy-dot.active { background: white; border-color: white; }

/* Editor picks */
.k-awy-picks { display: flex; flex-direction: column; gap: 0; }
.k-awy-picks-title {
  font-family: var(--k-font-ui);
  font-size: 15px;
  font-weight: 800;
  border-bottom: 3px solid oklch(0.45 0.15 240);
  padding-bottom: 10px;
  margin: 0 0 0;
  color: oklch(0.45 0.15 240);
}
.k-awy-picks-list { display: flex; flex-direction: column; }
.k-awy-pick {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--k-border-faint);
  text-decoration: none;
  color: var(--k-text);
  align-items: center;
}
.k-awy-pick:hover { text-decoration: none; }
.k-awy-pick:hover h4 { color: oklch(0.45 0.15 240); }
.k-awy-pick-img { width: 72px; height: 54px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--k-placeholder-bg); }
.k-awy-pick-img img { width: 100%; height: 100%; object-fit: cover; }
.k-awy-pick-body h4 { font-family: var(--k-font-ui); font-size: 13px; font-weight: 700; margin: 0; line-height: 1.4; transition: color 0.15s; }
.k-awy-pick-body span { font-size: 11px; color: var(--k-text-muted); }

/* 3-col grid */
.k-awy-latest { padding: 32px 0; }
.k-awy-section-title {
  font-family: var(--k-font-ui);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 18px;
  padding-right: 12px;
  border-right: 4px solid oklch(0.45 0.15 240);
}
.k-awy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.k-awy-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--k-border);
  border-radius: 10px;
  overflow: hidden;
  background: white;
  text-decoration: none;
  color: var(--k-text);
  transition: box-shadow 0.2s;
}
.k-awy-card:hover { box-shadow: 0 4px 16px oklch(0.2 0.01 60 / 0.1); text-decoration: none; }
.k-awy-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--k-placeholder-bg); }
.k-awy-card-img img { width: 100%; height: 100%; object-fit: cover; }
.k-awy-card-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.k-awy-card-body h3 { font-family: var(--k-font-ui); font-size: 15px; font-weight: 700; margin: 0; line-height: 1.4; }
.k-awy-card-body p { margin: 0; font-size: 13px; color: oklch(0.4 0.01 60); line-height: 1.5; }
.k-awy-card-meta { font-size: 11px; color: var(--k-text-muted); font-family: var(--k-font-ui); }

/* Category rows */
.k-awy-cat-section { padding: 32px 0; }
.k-awy-cat-section--alt { background: oklch(0.97 0.004 60); }
.k-awy-cat-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.k-awy-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.k-awy-row-card { text-decoration: none; color: var(--k-text); display: flex; flex-direction: column; gap: 8px; }
.k-awy-row-card:hover { text-decoration: none; }
.k-awy-row-card:hover h3 { color: oklch(0.45 0.15 240); }
.k-awy-row-img { border-radius: 8px; overflow: hidden; aspect-ratio: 16/10; background: var(--k-placeholder-bg); }
.k-awy-row-img img { width: 100%; height: 100%; object-fit: cover; }
.k-awy-row-card h3 { font-family: var(--k-font-ui); font-size: 14px; font-weight: 700; margin: 0; line-height: 1.4; transition: color 0.15s; }

/* Trending */
.k-awy-trending { padding: 32px 0; background: oklch(0.97 0.004 60); }
.k-awy-trending-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.k-awy-trending-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--k-border);
  text-decoration: none;
  color: var(--k-text);
}
.k-awy-trending-item:hover { text-decoration: none; box-shadow: 0 2px 8px oklch(0.2 0.01 60 / 0.08); }
.k-awy-trending-item:hover h3 { color: oklch(0.45 0.15 240); }
.k-awy-trending-rank {
  font-family: var(--k-font-ui);
  font-size: 24px;
  font-weight: 800;
  color: oklch(0.45 0.15 240);
  flex-shrink: 0;
}
.k-awy-trending-item h3 { font-family: var(--k-font-ui); font-size: 14px; font-weight: 700; margin: 0; transition: color 0.15s; }
.k-awy-trending-item span { font-size: 11px; color: var(--k-text-muted); }

/* ============================================================
   STYLE 3 — Taraga
   2×2 featured, category sections with lead+stack, clean white/teal
   ============================================================ */
.k-trg-featured { padding: 24px 0; }
.k-trg-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.k-trg-featured-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border: 1px solid var(--k-border);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  text-decoration: none;
  color: var(--k-text);
  transition: box-shadow 0.2s;
}
.k-trg-featured-card:hover { box-shadow: 0 6px 20px oklch(0.2 0.01 60 / 0.1); text-decoration: none; }
.k-trg-featured-img { aspect-ratio: 4/3; overflow: hidden; background: var(--k-placeholder-bg); }
.k-trg-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.k-trg-featured-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.k-trg-cat {
  font-family: var(--k-font-ui);
  font-size: 11px;
  font-weight: 800;
  color: oklch(0.45 0.12 175);
  text-transform: uppercase;
}
.k-trg-featured-body h2 { font-family: var(--k-font-ui); font-size: 18px; font-weight: 800; margin: 0; line-height: 1.4; }
.k-trg-featured-body p { margin: 0; font-size: 13px; color: oklch(0.4 0.01 60); line-height: 1.5; }

/* Category sections */
.k-trg-cat-section { padding: 32px 0; }
.k-trg-cat-section--alt { background: oklch(0.975 0.003 60); }
.k-trg-cat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.k-trg-cat-icon {
  width: 6px;
  height: 24px;
  border-radius: 3px;
  background: oklch(0.45 0.12 175);
  flex-shrink: 0;
}
.k-trg-cat-title {
  font-family: var(--k-font-ui);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  flex: 1;
}
.k-trg-cat-more {
  font-family: var(--k-font-ui);
  font-size: 13px;
  font-weight: 600;
  color: oklch(0.45 0.12 175);
}
.k-trg-cards-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.k-trg-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--k-text);
}
.k-trg-card:hover { text-decoration: none; }
.k-trg-card:hover h3 { color: oklch(0.45 0.12 175); }
.k-trg-card-img { border-radius: 8px; overflow: hidden; aspect-ratio: 16/10; background: var(--k-placeholder-bg); }
.k-trg-card--large .k-trg-card-img { aspect-ratio: 4/3; }
.k-trg-card-img img { width: 100%; height: 100%; object-fit: cover; }
.k-trg-card h3 { font-family: var(--k-font-ui); font-size: 14px; font-weight: 700; margin: 0; line-height: 1.4; transition: color 0.15s; }
.k-trg-card--large h3 { font-size: 17px; }
.k-trg-card p { margin: 0; font-size: 13px; color: oklch(0.4 0.01 60); line-height: 1.5; }
.k-trg-card-meta { font-size: 11px; color: var(--k-text-muted); font-family: var(--k-font-ui); }

/* Popular */
.k-trg-popular { padding: 32px 0; background: oklch(0.975 0.003 60); }
.k-trg-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.k-trg-popular-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--k-border);
  text-decoration: none;
  color: var(--k-text);
  align-items: center;
}
.k-trg-popular-card:hover { text-decoration: none; box-shadow: 0 4px 12px oklch(0.2 0.01 60 / 0.08); }
.k-trg-popular-card:hover h3 { color: oklch(0.45 0.12 175); }
.k-trg-popular-img { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--k-placeholder-bg); }
.k-trg-popular-img img { width: 100%; height: 100%; object-fit: cover; }
.k-trg-popular-card h3 { font-family: var(--k-font-ui); font-size: 14px; font-weight: 700; margin: 0; line-height: 1.4; transition: color 0.15s; }

/* ============================================================
   STYLE 4 — Aychi
   Breaking ticker, headline stack + sidebar, 3-col beyond, cat lists
   Colors: white, blue accents, text-forward compact
   ============================================================ */

/* Ticker */
.k-ayc-ticker-wrap { background: oklch(0.18 0.06 240); padding: 0; }
.k-ayc-ticker {
  max-width: var(--k-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.k-ayc-ticker-label {
  flex-shrink: 0;
  padding: 10px 18px;
  background: oklch(0.28 0.08 240);
  color: white;
  font-family: var(--k-font-ui);
  font-size: 12px;
  font-weight: 800;
}
.k-ayc-ticker-track {
  display: flex;
  gap: 32px;
  animation: k-ticker-scroll 30s linear infinite;
  white-space: nowrap;
  padding: 0 20px;
}
.k-ayc-ticker-item {
  color: white !important;
  font-family: var(--k-font-ui);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
}
.k-ayc-ticker-item:hover { text-decoration: underline; }
@keyframes k-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Main layout */
.k-ayc-main { padding: 28px 0; }
.k-ayc-main-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 32px;
}
.k-ayc-section-title {
  font-family: var(--k-font-ui);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 16px;
  padding-right: 12px;
  border-right: 4px solid oklch(0.45 0.15 240);
}

/* Headlines */
.k-ayc-headlines { display: flex; flex-direction: column; }
.k-ayc-headline {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--k-border-faint);
  text-decoration: none;
  color: var(--k-text);
}
.k-ayc-headline:hover { text-decoration: none; }
.k-ayc-headline:hover h3 { color: oklch(0.38 0.15 240); }
.k-ayc-headline--lead { padding-bottom: 20px; }
.k-ayc-headline-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 14px;
  background: var(--k-placeholder-bg);
}
.k-ayc-headline-img img { width: 100%; height: 100%; object-fit: cover; }
.k-ayc-headline-body h3 { font-family: var(--k-font-ui); font-size: 16px; font-weight: 700; margin: 0; line-height: 1.5; transition: color 0.15s; }
.k-ayc-headline--lead .k-ayc-headline-body h3 { font-size: 22px; font-weight: 800; }
.k-ayc-headline-body p { margin: 6px 0 0; font-size: 14px; color: oklch(0.4 0.01 60); line-height: 1.6; }
.k-ayc-headline-time { font-family: var(--k-font-ui); font-size: 11px; color: var(--k-text-muted); }

/* Sidebar */
.k-ayc-sidebar { display: flex; flex-direction: column; gap: 28px; }
.k-ayc-most-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: frd;
  display: flex;
  flex-direction: column;
}
.k-ayc-most-list li {
  counter-increment: frd;
  padding: 12px 0;
  border-bottom: 1px solid var(--k-border-faint);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.k-ayc-most-list li::before {
  content: counter(frd);
  font-family: var(--k-font-ui);
  font-size: 22px;
  font-weight: 800;
  color: oklch(0.45 0.15 240);
  flex-shrink: 0;
  width: 28px;
}
.k-ayc-most-list a { font-size: 14px; font-weight: 600; line-height: 1.5; }

/* Beyond news */
.k-ayc-beyond { padding: 32px 0; background: oklch(0.97 0.004 60); }
.k-ayc-beyond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.k-ayc-beyond-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--k-text);
}
.k-ayc-beyond-card:hover { text-decoration: none; }
.k-ayc-beyond-card:hover h3 { color: oklch(0.38 0.15 240); }
.k-ayc-beyond-img { border-radius: 10px; overflow: hidden; aspect-ratio: 16/9; background: var(--k-placeholder-bg); }
.k-ayc-beyond-img img { width: 100%; height: 100%; object-fit: cover; }
.k-ayc-beyond-cat {
  font-family: var(--k-font-ui);
  font-size: 11px;
  font-weight: 800;
  color: oklch(0.45 0.15 240);
  text-transform: uppercase;
}
.k-ayc-beyond-card h3 { font-family: var(--k-font-ui); font-size: 16px; font-weight: 700; margin: 0; line-height: 1.4; transition: color 0.15s; }
.k-ayc-beyond-card p { margin: 0; font-size: 13px; color: oklch(0.4 0.01 60); line-height: 1.5; }
.k-ayc-beyond-meta { font-family: var(--k-font-ui); font-size: 12px; color: var(--k-text-muted); margin-top: 6px; }

/* Category list sections */
.k-ayc-cat { padding: 28px 0; }
.k-ayc-cat--alt { background: oklch(0.97 0.004 60); }
.k-ayc-cat-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.k-ayc-cat-list { display: flex; flex-direction: column; }
.k-ayc-cat-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--k-border-faint);
  text-decoration: none;
  color: var(--k-text);
}
.k-ayc-cat-item:hover { text-decoration: none; }
.k-ayc-cat-item:hover h3 { color: oklch(0.38 0.15 240); }
.k-ayc-cat-item h3 { font-family: var(--k-font-ui); font-size: 15px; font-weight: 600; margin: 0; line-height: 1.5; transition: color 0.15s; }
.k-ayc-cat-item span { font-size: 11px; color: var(--k-text-muted); flex-shrink: 0; margin-right: 12px; }

/* ============================================================
   STYLE 5 — Heval
   Ticker, full-width hero, 2-col main+sidebar, photo gallery
   Colors: white, red/warm accents, photo-heavy
   ============================================================ */

/* Ticker */
.k-hval-ticker-wrap { background: oklch(0.35 0.15 25); padding: 0; }
.k-hval-ticker {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: var(--k-max-width);
  margin: 0 auto;
}
.k-hval-ticker-badge {
  flex-shrink: 0;
  padding: 10px 16px;
  background: oklch(0.28 0.15 25);
  color: white;
  font-family: var(--k-font-ui);
  font-size: 13px;
  font-weight: 800;
}
.k-hval-ticker-scroll {
  display: flex;
  gap: 28px;
  padding: 0 16px;
  overflow: hidden;
  white-space: nowrap;
  animation: k-ticker-scroll 25s linear infinite;
}
.k-hval-ticker-scroll a {
  color: white !important;
  font-family: var(--k-font-ui);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
}
.k-hval-ticker-scroll a:hover { text-decoration: underline; }

/* Hero */
.k-hval-hero { padding: 0; }
.k-hval-hero-link {
  display: block;
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: oklch(0.15 0.01 60);
  text-decoration: none;
}
.k-hval-hero-link:hover { text-decoration: none; }
.k-hval-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.05 0.01 60 / 0.85) 0%, oklch(0.05 0.01 60 / 0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}
.k-hval-hero-cat {
  font-family: var(--k-font-ui);
  font-size: 12px;
  font-weight: 800;
  color: oklch(0.85 0.1 25);
  text-transform: uppercase;
}
.k-hval-hero-title {
  font-family: var(--k-font-ui);
  font-size: 34px;
  font-weight: 800;
  color: white;
  margin: 8px 0 10px;
  line-height: 1.35;
}
.k-hval-hero-excerpt { font-size: 15px; color: oklch(0.82 0.005 60); margin: 0; line-height: 1.7; }
.k-hval-hero-date, .k-hval-hero-meta { font-family: var(--k-font-ui); font-size: 12px; color: oklch(0.65 0.005 60); display: block; margin-top: 8px; }
.k-hval-hero-meta .k-author-name { color: #fff; }
.k-hval-lead-meta { font-family: var(--k-font-ui); font-size: 12px; color: var(--k-text-muted); margin-top: 6px; }

/* Body 2-col */
.k-hval-body { padding: 32px 0; }
.k-hval-body-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 32px;
}

/* Category blocks */
.k-hval-cat-block { margin-bottom: 32px; }
.k-hval-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 3px solid oklch(0.35 0.15 25);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.k-hval-cat-head h2 { font-family: var(--k-font-ui); font-size: 17px; font-weight: 800; margin: 0; }
.k-hval-cat-head a { font-family: var(--k-font-ui); font-size: 13px; font-weight: 600; }
.k-hval-cat-content { display: flex; flex-direction: column; }
.k-hval-lead {
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--k-text);
}
.k-hval-lead:hover { text-decoration: none; }
.k-hval-lead:hover h3 { color: oklch(0.35 0.15 25); }
.k-hval-lead-img { border-radius: 10px; overflow: hidden; aspect-ratio: 16/9; margin-bottom: 12px; background: var(--k-placeholder-bg); }
.k-hval-lead-img img { width: 100%; height: 100%; object-fit: cover; }
.k-hval-lead h3 { font-family: var(--k-font-ui); font-size: 19px; font-weight: 800; margin: 0 0 6px; line-height: 1.4; transition: color 0.15s; }
.k-hval-lead p { margin: 0; font-size: 14px; color: oklch(0.4 0.01 60); line-height: 1.6; }
.k-hval-list-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--k-border-faint);
  text-decoration: none;
  color: var(--k-text);
}
.k-hval-list-item:hover { text-decoration: none; }
.k-hval-list-item:hover h4 { color: oklch(0.35 0.15 25); }
.k-hval-list-item h4 { font-family: var(--k-font-ui); font-size: 14px; font-weight: 600; margin: 0; line-height: 1.5; transition: color 0.15s; }
.k-hval-list-item span { font-size: 11px; color: var(--k-text-muted); flex-shrink: 0; margin-right: 12px; }

/* Sidebar */
.k-hval-side-col { display: flex; flex-direction: column; gap: 28px; }
.k-hval-side-block {
  border: 1px solid var(--k-border);
  border-radius: 10px;
  padding: 18px;
  background: white;
}
.k-hval-side-title {
  font-family: var(--k-font-ui);
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 3px solid oklch(0.35 0.15 25);
}
.k-hval-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: irna;
}
.k-hval-side-list li {
  counter-increment: irna;
  padding: 10px 0;
  border-bottom: 1px solid var(--k-border-faint);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.k-hval-side-list li::before {
  content: counter(irna);
  font-family: var(--k-font-ui);
  font-size: 20px;
  font-weight: 800;
  color: oklch(0.35 0.15 25);
  flex-shrink: 0;
  width: 24px;
}
.k-hval-side-list a { font-size: 13px; font-weight: 600; line-height: 1.5; }

/* Photo gallery strip */
.k-hval-gallery { padding: 32px 0; background: oklch(0.12 0.01 60); }
.k-hval-gallery-title {
  font-family: var(--k-font-ui);
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin: 0 0 18px;
}
.k-hval-gallery-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.k-hval-gallery-item {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
}
.k-hval-gallery-item:hover { text-decoration: none; }
.k-hval-gallery-item img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 8px; }
.k-hval-gallery-item span {
  font-family: var(--k-font-ui);
  font-size: 12px;
  font-weight: 600;
  color: oklch(0.8 0.005 60);
  line-height: 1.4;
}

/* ============================================================
   RESPONSIVE — all front page styles
   ============================================================ */
@media (max-width: 768px) {
  /* BBC */
  .k-dal-hero { grid-template-columns: 1fr; }
  .k-dal-hero-main { min-height: 280px; }
  .k-dal-grid { grid-template-columns: repeat(2, 1fr); }
  .k-dal-most-grid { grid-template-columns: 1fr; }

  /* Sina */
  .k-awy-top-layout { grid-template-columns: 1fr; }
  .k-awy-grid { grid-template-columns: repeat(2, 1fr); }
  .k-awy-row { grid-template-columns: repeat(2, 1fr); }
  .k-awy-trending-list { grid-template-columns: 1fr; }

  /* Seemorgh */
  .k-trg-grid-2x2 { grid-template-columns: 1fr; }
  .k-trg-featured-card { grid-template-columns: 1fr; }
  .k-trg-cards-row { grid-template-columns: repeat(2, 1fr); }
  .k-trg-popular-grid { grid-template-columns: 1fr; }

  /* Farda */
  .k-ayc-main-layout { grid-template-columns: 1fr; }
  .k-ayc-beyond-grid { grid-template-columns: 1fr; }

  /* IRNA */
  .k-hval-hero-link { min-height: 320px; }
  .k-hval-hero-title { font-size: 24px; }
  .k-hval-body-layout { grid-template-columns: 1fr; }

  /* NwYorker */
  .k-nyt-grid { grid-template-columns: 1fr; }
  .k-nyt-opinion-grid { grid-template-columns: 1fr; }
  .k-nyt-more-grid { grid-template-columns: 1fr; }
  .k-nyt-lead-title { font-size: 28px; }
}
@media (max-width: 480px) {
  .k-dal-grid { grid-template-columns: 1fr; }
  .k-awy-grid { grid-template-columns: 1fr; }
  .k-trg-cards-row { grid-template-columns: 1fr; }
}

/* ============================================================
   STYLE 6 — NwYorker
   Classic newspaper: dateline, 3+1 col grid, lead story spanning 2 cols,
   opinion strip with avatars, category sections with lead+list.
   Colors: pure white, black text, minimal accent, serif-heavy.
   ============================================================ */

/* Dateline */
.k-nyt-dateline {
  padding: 10px 0;
  border-bottom: 1px solid var(--k-border);
  font-family: var(--k-font-ui);
}
.k-nyt-dateline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--k-text-muted);
}
.k-nyt-edition {
  font-weight: 700;
  color: var(--k-text);
}
.k-nyt-rule {
  border: none;
  border-top: 1px solid var(--k-border);
  margin: 0;
}

/* Main 3+1 grid */
.k-nyt-main { padding: 24px 0; }
.k-nyt-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
}

/* Lead story */
.k-nyt-lead {
  padding-left: 20px;
  border-left: 1px solid var(--k-border);
}
.k-nyt-lead-link {
  display: block;
  text-decoration: none;
  color: var(--k-text);
}
.k-nyt-lead-link:hover { text-decoration: none; }
.k-nyt-lead-link:hover .k-nyt-lead-title { color: oklch(0.3 0.01 60); }
.k-nyt-lead-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 16px;
  background: var(--k-placeholder-bg);
}
.k-nyt-lead-img img { width: 100%; height: 100%; object-fit: cover; }
.k-nyt-kicker {
  font-family: var(--k-font-ui);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--k-text-muted);
  display: block;
  margin-bottom: 6px;
}
.k-nyt-lead-title {
  font-family: var(--k-font-body);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  transition: color 0.15s;
}
.k-nyt-lead-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: oklch(0.35 0.01 60);
  margin: 0 0 10px;
}
.k-nyt-lead-meta {
  font-family: var(--k-font-ui);
  font-size: 12px;
  color: var(--k-text-muted);
  font-weight: 600;
}

/* Secondary column */
.k-nyt-secondary {
  padding: 0 20px;
  border-left: 1px solid var(--k-border);
  display: flex;
  flex-direction: column;
}
.k-nyt-sec-item {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--k-border-faint);
  text-decoration: none;
  color: var(--k-text);
}
.k-nyt-sec-item:last-child { border-bottom: none; }
.k-nyt-sec-item:hover { text-decoration: none; }
.k-nyt-sec-item:hover h3 { color: oklch(0.3 0.01 60); }
.k-nyt-sec-item h3 {
  font-family: var(--k-font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 6px;
  transition: color 0.15s;
}
.k-nyt-sec-item p {
  font-size: 13px;
  color: oklch(0.4 0.01 60);
  line-height: 1.5;
  margin: 0;
}

/* Aside (col 4) */
.k-nyt-aside {
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.k-nyt-aside-block { }
.k-nyt-aside-title {
  font-family: var(--k-font-ui);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--k-text-muted);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--k-text);
}
.k-nyt-trending {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: nyt;
}
.k-nyt-trending li {
  counter-increment: nyt;
  padding: 8px 0;
  border-bottom: 1px solid var(--k-border-faint);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.k-nyt-trending li::before {
  content: counter(nyt);
  font-family: var(--k-font-ui);
  font-size: 18px;
  font-weight: 800;
  color: oklch(0.82 0.01 60);
  flex-shrink: 0;
  width: 22px;
}
.k-nyt-trending a {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
.k-nyt-aside-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.k-nyt-aside-subjects a {
  padding: 5px 12px;
  border: 1px solid var(--k-border);
  border-radius: 4px;
  font-family: var(--k-font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--k-text);
  text-decoration: none;
}
.k-nyt-aside-subjects a:hover {
  background: oklch(0.96 0.005 60);
  text-decoration: none;
}

/* Opinion strip */
.k-nyt-opinion { padding: 28px 0; }
.k-nyt-strip-title {
  font-family: var(--k-font-ui);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--k-text-muted);
  margin: 16px 0;
}
.k-nyt-opinion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.k-nyt-opinion-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--k-text);
  padding: 16px;
  border: 1px solid var(--k-border);
  border-radius: 6px;
  background: white;
}
.k-nyt-opinion-card:hover { text-decoration: none; box-shadow: 0 2px 8px oklch(0.2 0.01 60 / 0.06); }
.k-nyt-opinion-card:hover h3 { color: oklch(0.3 0.01 60); }
.k-nyt-opinion-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; }
.k-nyt-opinion-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.k-nyt-opinion-card h3 {
  font-family: var(--k-font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  transition: color 0.15s;
}
.k-nyt-opinion-author {
  font-family: var(--k-font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--k-text-muted);
}

/* More-news category sections */
.k-nyt-more-section { padding: 0 0 28px; }
.k-nyt-more-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.k-nyt-more-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}
.k-nyt-more-lead {
  display: block;
  text-decoration: none;
  color: var(--k-text);
}
.k-nyt-more-lead:hover { text-decoration: none; }
.k-nyt-more-lead:hover h3 { color: oklch(0.3 0.01 60); }
.k-nyt-more-lead-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 10px;
  background: var(--k-placeholder-bg);
}
.k-nyt-more-lead-img img { width: 100%; height: 100%; object-fit: cover; }
.k-nyt-more-lead h3 {
  font-family: var(--k-font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 6px;
  transition: color 0.15s;
}
.k-nyt-more-lead p { font-size: 14px; color: oklch(0.4 0.01 60); line-height: 1.6; margin: 0 0 6px; }
.k-nyt-more-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--k-border-faint);
  text-decoration: none;
  color: var(--k-text);
}
.k-nyt-more-item:hover { text-decoration: none; }
.k-nyt-more-item:hover h4 { color: oklch(0.3 0.01 60); }
.k-nyt-more-item h4 {
  font-family: var(--k-font-body);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
  transition: color 0.15s;
}
.k-nyt-more-item span { font-family: var(--k-font-ui); font-size: 11px; color: var(--k-text-muted); flex-shrink: 0; margin-right: 12px; }

/* ========================================
   HEWLER — Literary magazine masthead style
   ======================================== */

/* Masthead */
.k-hwl-masthead {
  text-align: center;
  padding: 32px 20px 0;
  background: white;
  border-bottom: 1px solid oklch(0.88 0.005 60);
}
.k-hwl-logo {
  font-family: var(--k-font-body);
  font-size: 48px;
  font-weight: 800;
  margin: 0;
  color: var(--k-text);
  letter-spacing: -0.5px;
}
.k-hwl-tagline {
  font-family: var(--k-font-ui);
  font-size: 13px;
  color: var(--k-text-muted);
  margin: 4px 0 20px;
  letter-spacing: 2px;
}
.k-hwl-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 12px 0;
  border-top: 1px solid oklch(0.9 0.005 60);
}
.k-hwl-nav-link {
  font-family: var(--k-font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--k-text);
  transition: color 0.15s;
}
.k-hwl-nav-link:hover { color: var(--k-accent); text-decoration: none; }
.k-hwl-subjects {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 14px 0;
  background: oklch(0.97 0.003 60);
  border-top: 1px solid oklch(0.9 0.005 60);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.k-hwl-subject-link {
  font-family: var(--k-font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--k-text-muted);
  transition: color 0.15s;
}
.k-hwl-subject-link:hover { color: var(--k-text); text-decoration: none; }

/* Full-width Hero */
.k-hwl-hero {
  position: relative;
  height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.k-hwl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.1 0.01 60 / 0.85) 0%, transparent 60%);
}
.k-hwl-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 40px 20px 48px;
  color: white;
  text-decoration: none;
}
.k-hwl-hero-inner:hover { text-decoration: none; color: white; }
.k-hwl-hero-cat {
  font-family: var(--k-font-ui);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.k-hwl-hero-title {
  font-family: var(--k-font-body);
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.3;
  max-width: 800px;
}
.k-hwl-hero-meta {
  font-family: var(--k-font-ui);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.75;
}
.k-hwl-hero-meta .k-author-name { color: white; }

/* Sections */
.k-hwl-section { padding: 36px 0; }
.k-hwl-section-title {
  font-family: var(--k-font-ui);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--k-text);
  display: inline-block;
}

/* Editor's Picks — 3 col */
.k-hwl-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.k-hwl-pick {
  display: block;
  color: inherit;
  text-decoration: none;
}
.k-hwl-pick:hover { text-decoration: none; }
.k-hwl-pick:hover h3 { color: var(--k-accent); }
.k-hwl-pick-img {
  aspect-ratio: 16/10;
  border-radius: 6px;
  overflow: hidden;
  background: var(--k-placeholder-bg);
  margin-bottom: 12px;
}
.k-hwl-pick-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.k-hwl-pick:hover .k-hwl-pick-img img { transform: scale(1.05); }
.k-hwl-pick-cat {
  font-family: var(--k-font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--k-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.k-hwl-pick h3 {
  font-family: var(--k-font-ui);
  font-size: 17px;
  font-weight: 800;
  margin: 6px 0;
  line-height: 1.45;
  transition: color 0.15s;
}
.k-hwl-pick p {
  font-size: 14px;
  color: oklch(0.4 0.01 60);
  margin: 0 0 8px;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.k-hwl-pick-meta {
  font-family: var(--k-font-ui);
  font-size: 12px;
  color: var(--k-text-muted);
}

/* Category sections — lead + list */
.k-hwl-cat-section { border-top: 1px solid var(--k-border-faint); }
.k-hwl-cat-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.k-hwl-cat-header .k-hwl-section-title { margin-bottom: 0; }
.k-hwl-more {
  font-family: var(--k-font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--k-accent);
}
.k-hwl-more:hover { text-decoration: underline; }
.k-hwl-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.k-hwl-cat-lead {
  grid-row: 1 / -1;
  display: block;
  color: inherit;
  text-decoration: none;
}
.k-hwl-cat-lead:hover { text-decoration: none; }
.k-hwl-cat-lead:hover h3 { color: var(--k-accent); }
.k-hwl-cat-lead-img {
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  background: var(--k-placeholder-bg);
  margin-bottom: 12px;
}
.k-hwl-cat-lead-img img { width: 100%; height: 100%; object-fit: cover; }
.k-hwl-cat-lead h3 {
  font-family: var(--k-font-ui);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.4;
  transition: color 0.15s;
}
.k-hwl-cat-lead p {
  font-size: 14px;
  color: oklch(0.4 0.01 60);
  margin: 0 0 8px;
  line-height: 1.6;
}
.k-hwl-cat-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--k-border-faint);
  color: inherit;
  text-decoration: none;
}
.k-hwl-cat-item:first-of-type { border-top: 1px solid var(--k-border-faint); }
.k-hwl-cat-item:hover { text-decoration: none; }
.k-hwl-cat-item:hover h4 { color: var(--k-accent); }
.k-hwl-cat-item h4 {
  font-family: var(--k-font-ui);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
  transition: color 0.15s;
}
.k-hwl-cat-item-date {
  font-family: var(--k-font-ui);
  font-size: 11px;
  color: var(--k-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Trending */
.k-hwl-trending { background: oklch(0.97 0.003 60); }
.k-hwl-trend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.k-hwl-trend-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.15s;
}
.k-hwl-trend-item:hover { text-decoration: none; box-shadow: 0 4px 16px oklch(0.2 0 0 / 0.08); }
.k-hwl-trend-item:hover h4 { color: var(--k-accent); }
.k-hwl-trend-rank {
  font-family: var(--k-font-ui);
  font-size: 28px;
  font-weight: 800;
  color: oklch(0.85 0.01 60);
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
}
.k-hwl-trend-item h4 {
  font-family: var(--k-font-ui);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.45;
  transition: color 0.15s;
}

/* Hewler responsive */
@media (max-width: 768px) {
  .k-hwl-logo { font-size: 36px; }
  .k-hwl-nav { gap: 16px; flex-wrap: wrap; }
  .k-hwl-hero { height: 400px; }
  .k-hwl-hero-title { font-size: 28px; }
  .k-hwl-picks { grid-template-columns: 1fr; }
  .k-hwl-cat-grid { grid-template-columns: 1fr; }
  .k-hwl-cat-lead { grid-row: auto; }
  .k-hwl-trend-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .k-hwl-logo { font-size: 30px; }
  .k-hwl-nav { gap: 12px; font-size: 13px; }
  .k-hwl-hero { height: 320px; }
  .k-hwl-hero-title { font-size: 22px; }
  .k-hwl-subjects { gap: 4px 14px; }
}

/* ============================================================
   STYLE 8 — Cawan (YJC)
   News portal: featured lead + sidebar picks, 4-col news row,
   category sections with lead image + stacked list items.
   Colors: white bg, dark text, orange-red accent badges.
   ============================================================ */

/* Featured: lead + sidebar */
.k-cwn-featured { padding: 24px 0; }
.k-cwn-featured-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: start;
}
.k-cwn-lead {
  display: block;
  text-decoration: none;
  color: var(--k-text);
  border-radius: 10px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--k-border);
}
.k-cwn-lead:hover { text-decoration: none; box-shadow: 0 4px 16px oklch(0.2 0.01 60 / 0.1); }
.k-cwn-lead:hover .k-cwn-lead-title { color: oklch(0.4 0.14 30); }
.k-cwn-lead-img { aspect-ratio: 16/9; overflow: hidden; background: var(--k-placeholder-bg); }
.k-cwn-lead-img img { width: 100%; height: 100%; object-fit: cover; }
.k-cwn-lead-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.k-cwn-lead-title {
  font-family: var(--k-font-ui);
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  line-height: 1.4;
  transition: color 0.15s;
}
.k-cwn-lead-excerpt { font-size: 14px; color: oklch(0.4 0.01 60); line-height: 1.7; margin: 0; }
.k-cwn-lead-meta { font-family: var(--k-font-ui); font-size: 12px; color: var(--k-text-muted); }

/* Category badge */
.k-cwn-cat-badge {
  display: inline-block;
  font-family: var(--k-font-ui);
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: oklch(0.5 0.15 30);
  padding: 2px 10px;
  border-radius: 4px;
  line-height: 1.6;
}
.k-cwn-cat-badge--sm { font-size: 10px; padding: 1px 8px; }

/* Sidebar picks */
.k-cwn-sidebar-picks {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--k-border);
  border-radius: 10px;
  background: white;
  overflow: hidden;
}
.k-cwn-sidebar-title {
  font-family: var(--k-font-ui);
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  padding: 14px 16px;
  background: oklch(0.5 0.15 30);
  color: white;
}
.k-cwn-side-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--k-border-faint);
  text-decoration: none;
  color: var(--k-text);
  align-items: flex-start;
}
.k-cwn-side-item:last-child { border-bottom: none; }
.k-cwn-side-item:hover { background: oklch(0.97 0.005 60); text-decoration: none; }
.k-cwn-side-item:hover h4 { color: oklch(0.4 0.14 30); }
.k-cwn-side-img {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--k-placeholder-bg);
}
.k-cwn-side-img img { width: 100%; height: 100%; object-fit: cover; }
.k-cwn-side-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.k-cwn-side-body h4 {
  font-family: var(--k-font-ui);
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
  transition: color 0.15s;
}
.k-cwn-time {
  font-family: var(--k-font-ui);
  font-size: 11px;
  color: var(--k-text-muted);
}

/* News row — 4 cards */
.k-cwn-row-section { padding: 0 0 28px; }
.k-cwn-row-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.k-cwn-row-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--k-text);
}
.k-cwn-row-card:hover { text-decoration: none; }
.k-cwn-row-card:hover h3 { color: oklch(0.4 0.14 30); }
.k-cwn-row-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--k-placeholder-bg);
}
.k-cwn-row-img img { width: 100%; height: 100%; object-fit: cover; }
.k-cwn-row-card h3 {
  font-family: var(--k-font-ui);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
  transition: color 0.15s;
}

/* Category sections */
.k-cwn-cat-section { padding: 32px 0; }
.k-cwn-cat-section--alt { background: oklch(0.975 0.003 60); }
.k-cwn-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.k-cwn-section-title {
  font-family: var(--k-font-ui);
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  padding-right: 14px;
  border-right: 4px solid oklch(0.5 0.15 30);
}
.k-cwn-more {
  font-family: var(--k-font-ui);
  font-size: 13px;
  font-weight: 600;
  color: oklch(0.5 0.15 30);
}
.k-cwn-more:hover { text-decoration: underline; }

/* Category layout: lead + stacked items */
.k-cwn-cat-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0 24px;
}
.k-cwn-cat-lead {
  grid-row: 1 / -1;
  display: block;
  text-decoration: none;
  color: var(--k-text);
}
.k-cwn-cat-lead:hover { text-decoration: none; }
.k-cwn-cat-lead:hover h3 { color: oklch(0.4 0.14 30); }
.k-cwn-cat-lead-img {
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  background: var(--k-placeholder-bg);
  margin-bottom: 12px;
}
.k-cwn-cat-lead-img img { width: 100%; height: 100%; object-fit: cover; }
.k-cwn-cat-lead h3 {
  font-family: var(--k-font-ui);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.4;
  transition: color 0.15s;
}
.k-cwn-cat-lead p {
  font-size: 13px;
  color: oklch(0.4 0.01 60);
  margin: 0 0 8px;
  line-height: 1.6;
}

/* Category stacked list items */
.k-cwn-cat-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--k-border-faint);
  text-decoration: none;
  color: var(--k-text);
  align-items: flex-start;
}
.k-cwn-cat-item:first-of-type { border-top: 1px solid var(--k-border-faint); }
.k-cwn-cat-item:hover { text-decoration: none; }
.k-cwn-cat-item:hover h4 { color: oklch(0.4 0.14 30); }
.k-cwn-cat-item-img {
  width: 72px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--k-placeholder-bg);
}
.k-cwn-cat-item-img img { width: 100%; height: 100%; object-fit: cover; }
.k-cwn-cat-item-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.k-cwn-cat-item-body h4 {
  font-family: var(--k-font-ui);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
  transition: color 0.15s;
}

/* Cawan responsive */
@media (max-width: 768px) {
  .k-cwn-featured-layout { grid-template-columns: 1fr; }
  .k-cwn-lead-title { font-size: 20px; }
  .k-cwn-row-grid { grid-template-columns: repeat(2, 1fr); }
  .k-cwn-cat-layout { grid-template-columns: 1fr; }
  .k-cwn-cat-lead { grid-row: auto; }
}
@media (max-width: 480px) {
  .k-cwn-row-grid { grid-template-columns: 1fr; }
  .k-cwn-lead-title { font-size: 18px; }
}
