/* ============================================================
   COMPONENTS — Hero / Feature story
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  padding: var(--s-6) 0 var(--s-7);
}
@media (min-width: 1080px) {
  .feature-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: var(--s-7);
    padding: var(--s-7) 0;
  }
}
.feature-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.feature-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 14px;
}
.feature-headline a { color: inherit; }
.feature-headline a:hover { color: var(--accent); }
.feature-lede {
  font-family: var(--font-head);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 640px;
  margin-bottom: 16px;
}
.feature-byline {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.feature-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--paper-2);
}

/* Masthead shown while no story is published — deliberately quieter than
   .feature-headline so it does not dominate an otherwise empty homepage. */
.home-intro { max-width: 60ch; padding: var(--s-4) 0 var(--s-6); }
.home-intro-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 10px 0 14px;
}
.home-intro-lede {
  font-family: var(--font-head);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 22px;
}

/* ============================================================
   COMPONENTS — AI Briefing + Live Feed
   ============================================================ */

.briefing {
  background: var(--paper-2);
  border: 1px solid var(--ink);
  padding: 20px;
}
.briefing-head, .feed-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
}
.briefing-title, .feed-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.briefing-list { display: flex; flex-direction: column; gap: 12px; }
.briefing-item {
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--paper-4);
}
.briefing-item:last-child { border-bottom: 0; padding-bottom: 0; }
.briefing-item-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 4px; }
.briefing-item-text { font-size: 13.5px; line-height: 1.45; color: var(--ink); }
.briefing-item-text:hover { color: var(--accent); }
.briefing-foot { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--ink-3); text-align: center; }
.briefing-foot a { color: var(--accent); font-family: var(--font-mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.feed {
  padding: 20px;
  border: 1px solid var(--ink-3);
}
.feed-list { display: flex; flex-direction: column; }
.feed-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  padding: 9px 0;
  align-items: center;
  border-bottom: 1px dashed var(--paper-4);
  font-size: 13px;
  line-height: 1.4;
}
.feed-item:last-child { border-bottom: 0; }
.feed-item:hover { color: var(--accent); cursor: pointer; }
.feed-icon { color: var(--accent); font-size: 10px; }
.feed-time { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }

/* ============================================================
   COMPONENTS — Review cards
   ============================================================ */

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-7);
  }
}

.review-featured {
  border: 1px solid var(--ink);
  background: var(--paper);
  overflow: hidden;
  transition: box-shadow var(--t-fast);
}
.review-featured:hover { box-shadow: var(--shadow-lg); }
.review-featured-body { padding: 22px; }

.review-small {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--paper-3);
}
.review-small:first-child { border-top: 0; padding-top: 0; }
.review-small-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.review-small-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

/* Stars */
.stars { display: inline-flex; align-items: center; gap: 5px; }
.stars-inner { position: relative; font-size: 13px; letter-spacing: 1px; color: var(--paper-3); font-family: serif; }
.stars-fill { position: absolute; top: 0; left: 0; color: var(--accent); overflow: hidden; white-space: nowrap; }
.stars-num { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); font-weight: 500; }
.price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

/* ============================================================
   COMPONENTS — Guides
   ============================================================ */

.guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 1080px) {
  .guides-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-7);
  }
}

.pillar-card {
  border: 1px solid var(--ink);
  padding: 22px;
  background: var(--paper);
  transition: box-shadow var(--t-fast);
}
.pillar-card:hover { box-shadow: var(--shadow-lg); }
.pillar-card-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-top: 12px;
  margin-bottom: 10px;
}
.pillar-card-list {
  padding-left: 20px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  list-style: disc;
  margin: 0;
}
.pillar-card-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--paper-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.short-guides { display: flex; flex-direction: column; }
.short-guide-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--paper-3);
  transition: padding-left var(--t-fast);
}
.short-guide-item:hover { padding-left: 6px; }
.short-guide-item:hover .short-guide-title { color: var(--accent); }
.short-guide-num {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
}
.short-guide-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  transition: color var(--t-fast);
}

/* ============================================================
   COMPONENTS — Opinions
   ============================================================ */

.opinions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 768px) {
  .opinions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .opinions-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
}

.opinion-card {
  border-top: 3px solid var(--ink);
  padding-top: 18px;
}
.opinion-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-top: 12px;
  margin-bottom: 10px;
}
.opinion-card a:hover .opinion-card-title { color: var(--accent); }
.opinion-card-excerpt {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 14px;
}
.opinion-card-byline {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   COMPONENTS — AI Tools Explorer
   ============================================================ */

.tools-section {
  background: var(--paper-2);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: var(--s-7) 0;
}
.tools-section-head {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
@media (min-width: 1080px) {
  .tools-section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--s-7);
  }
}
.tools-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 4px 0 6px;
}

/* ============================================================
   COMPONENTS — Video & Podcast
   ============================================================ */

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 768px) { .video-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); } }

.video-tile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .video-tile { grid-template-columns: 200px 1fr; align-items: flex-start; } }

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #15171b;
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.video-tile:hover .video-thumb img { opacity: 1; }
.video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video-play-btn {
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform var(--t-fast);
}
.video-tile:hover .video-play-btn { transform: scale(1.1); }
.video-duration {
  position: absolute;
  bottom: 6px; right: 6px;
  padding: 2px 7px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
}
