/* Crypto News Today — section styles (prefixed .cnt-)
   Mirrors the site identity: emerald --default (#10b981) accent, Clashdisplay
   display type, uppercase thin headings, 5px radii, --border-color boxes,
   arrow-right link idiom and lets-talk-btn CTA. */

.cnt-page {
  padding: 140px 0 90px;
  color: var(--white);
  background: var(--black);
}

/* ── Interior hero (mirrors .inner-sitemap / .sitemap-heading) ── */
.cnt-hero {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 44px 50px;
  margin-bottom: 56px;
}
.cnt-eyebrow {
  border-left: 4px solid var(--default);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: Clashdisplay, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1;
  padding-left: 16px;
  margin-bottom: 24px;
  color: var(--white);
}
.cnt-heading {
  font-family: Clashdisplay, sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  font-size: clamp(44px, 8vw, 80px);
  line-height: 0.92;
  margin: 0;
}
.cnt-hook {
  font-family: Clashdisplay, sans-serif;
  font-weight: 300;
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.35;
  margin: 20px 0 0;
  max-width: 640px;
  opacity: 0.85;
}

/* ── Video (constrained + centered so it doesn't dominate the fold) ── */
.cnt-video {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 48px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
  background: var(--grey);
  aspect-ratio: 16 / 9;
}
.cnt-video video { width: 100%; height: 100%; display: block; object-fit: cover; }

/* ── Section label (mirrors .hero-under-text, scaled down) ── */
.cnt-section-label {
  border-left: 4px solid var(--default);
  text-transform: uppercase;
  font-family: Clashdisplay, sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  font-size: 18px;
  padding-left: 16px;
  margin: 0 0 28px;
}

/* ── Story list ── */
.cnt-stories { list-style: none; margin: 0; padding: 0; counter-reset: cnt; }
.cnt-story {
  counter-increment: cnt;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
}
.cnt-story:last-child { border-bottom: 1px solid var(--border-color); }
.cnt-num {
  font-family: Clashdisplay, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--default);
  min-width: 40px;
  padding-top: 6px;
}
.cnt-num::before { content: counter(cnt, decimal-leading-zero); }
.cnt-body { flex: 1; }
.cnt-cat {
  display: inline-block;
  font-family: Clashdisplay, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--default);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 14px;
}
.cnt-headline {
  font-family: Clashdisplay, sans-serif;
  font-weight: 600;
  font-size: clamp(21px, 3.2vw, 30px);
  line-height: 1.16;
  margin: 0 0 16px;
  color: var(--white);
}
.cnt-headline .em { color: var(--default); }
.cnt-summary {
  font-family: Clashdisplay, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--white);
  opacity: 0.72;
  margin: 0 0 16px;
  max-width: 720px;
}

/* Source link — mirrors .hero-projects-link + .hero-projects-link-text */
.cnt-source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}
.cnt-source span {
  border-bottom: 1px solid var(--white);
  font-family: Clashdisplay, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.2s, border-color 0.2s;
}
.cnt-source img { width: 16px; height: auto; transition: transform 0.2s; }
.cnt-source:hover span { color: var(--default); border-color: var(--default); }
.cnt-source:hover img { transform: translateX(4px); }

/* ── Footer CTA ── */
.cnt-cta {
  margin-top: 60px;
  border-top: 1px solid var(--border-color);
  padding-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.cnt-cta p {
  width: 100%;
  font-family: Clashdisplay, sans-serif;
  font-weight: 300;
  color: var(--white);
  opacity: 0.7;
  margin: 0 0 6px;
}
.cnt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Clashdisplay, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--default);
  text-decoration: none;
  border-radius: 5px;
  padding: 11px 22px;
  border: 1px solid var(--default);
}
.cnt-btn.cnt-ghost { background: transparent; border-color: var(--border-color); }
.cnt-btn.cnt-ghost:hover { border-color: var(--default); }

/* ── Hub grid ── */
.cnt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.cnt-day {
  display: block;
  text-decoration: none;
  color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.cnt-day:hover { border-color: var(--default); transform: translateY(-3px); }
.cnt-day-date {
  font-family: Clashdisplay, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--default);
}
.cnt-day-hook {
  font-family: Clashdisplay, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.18;
  margin: 12px 0 18px;
}
.cnt-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.cnt-chip {
  font-family: Clashdisplay, sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--default);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 4px 8px;
}
.cnt-empty {
  font-family: Clashdisplay, sans-serif;
  font-weight: 300;
  opacity: 0.7;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .cnt-page { padding-top: 110px; }
  .cnt-hero { padding: 32px 24px; }
  .cnt-story { gap: 14px; }
  .cnt-num { min-width: 28px; font-size: 16px; }
}
