/* Coptas Home — additional styles */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-ui); background: #fff; color: #000; }

/* ── HEADER ── */
.ch-header {
  background: #000; color: #fff;
  display: flex; align-items: center; gap: 28px;
  padding: 0 56px; height: 64px;
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid #1a1a1a;
}
.ch-logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.02em;
  color: #fff; text-decoration: none; white-space: nowrap;
  display: flex; align-items: center;
}
.ch-logo img { height: 28px; }
.ch-nav { display: flex; gap: 4px; margin-left: 16px; }
.ch-nav-item {
  color: #fff; text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  opacity: 0.65; padding: 22px 12px; position: relative;
  transition: opacity 180ms; white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.ch-nav-item:hover { opacity: 1; }
.ch-nav-item.active { opacity: 1; border-bottom-color: var(--amber); }
.ch-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.ch-search {
  background: transparent; border: none; color: #fff;
  cursor: pointer; padding: 8px; display: inline-flex; border-radius: 4px;
  transition: background 180ms;
}
.ch-search:hover { background: #1a1a1a; }

/* Hamburger — oculto no desktop, visível no mobile via media query */
.ch-hamburger { display: none; }

/* Card body wrapper */
.ch-card-body { display: flex; flex-direction: column; gap: 6px; flex: 1; }

.ch-subscribe {
  background: var(--amber); color: #000; border: none;
  border-radius: var(--radius-2); cursor: pointer;
  font-family: var(--font-ui); font-weight: 700;
  font-size: 12px; padding: 8px 16px; letter-spacing: 0.01em;
  transition: background 180ms;
}
.ch-subscribe:hover { background: var(--amber-dim); }

/* ── TICKER ── */
.ch-ticker {
  background: var(--amber); color: #000;
  display: flex; align-items: center; gap: 0;
  overflow: hidden; height: 34px;
  border-bottom: 1px solid #000;
}
.ch-ticker-label {
  background: #000; color: var(--amber);
  font-weight: 800; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0 14px; height: 100%;
  display: flex; align-items: center; white-space: nowrap;
  flex-shrink: 0;
}
.ch-ticker-track {
  overflow: hidden; flex: 1; height: 100%;
  display: flex; align-items: center;
  padding: 0 16px;
}
.ch-ticker-inner {
  display: flex; gap: 48px; white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
}
.ch-ticker-item {
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer;
}
.ch-ticker-dot { color: #0008; margin: 0 16px; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ── */
.ch-hero {
  background: #000; color: #fff;
  position: relative; overflow: hidden; min-height: 480px;
}
.ch-hero-wire {
  position: absolute; top: 0; left: 0; width: 320px; height: 100%;
  pointer-events: none; opacity: 0.5;
}
.ch-hero-wire-right {
  position: absolute; top: 0; right: 0; width: 220px; height: 100%;
  pointer-events: none; opacity: 0.18;
}
.ch-hero-inner {
  display: grid; grid-template-columns: 1fr 480px;
  min-height: 480px; position: relative; z-index: 1;
  max-width: 1360px; margin: 0 auto; padding: 0 56px;
}
.ch-hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 48px 60px 0; gap: 16px;
}
.ch-hero-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber);
}
.ch-hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 3.8vw, 58px); line-height: 1.01;
  letter-spacing: -0.025em; text-wrap: pretty;
}
.ch-hero-sub {
  font-family: var(--font-serif); font-size: 20px;
  line-height: 1.45; color: var(--ink-200);
  max-width: 540px;
}
.ch-hero-meta {
  display: flex; gap: 16px; align-items: center; margin-top: 4px;
}
.ch-hero-tag {
  background: var(--amber); color: #000;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 8px; border-radius: 2px;
}
.ch-hero-time { font-size: 12px; color: var(--ink-300); letter-spacing: 0.06em; text-transform: uppercase; }
.ch-hero-read {
  margin-top: 8px; color: var(--amber);
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--amber); padding-bottom: 2px;
  align-self: flex-start;
}
.ch-hero-img {
  position: relative; overflow: hidden;
}
.ch-hero-img img, .ch-hero-img .img-ph {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.03) sepia(.08) hue-rotate(-6deg) brightness(1.02);
}

/* ── TOP STORIES ── */
.ch-top {
  background: #fff; border-bottom: 1px solid var(--ink-100);
  padding: 0;
}
.ch-top-inner {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
}
.ch-top-item {
  padding: 28px 32px; cursor: pointer;
  border-right: 1px solid var(--ink-100);
  transition: background 160ms;
}
.ch-top-item:last-child { border-right: none; }
.ch-top-item:hover { background: var(--ink-050); }
.ch-top-item:hover .ch-top-title { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.ch-top-thumb {
  width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 14px;
}
.ch-top-thumb img, .ch-top-thumb .img-ph {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.03) sepia(.08) hue-rotate(-6deg) brightness(1.02);
  transition: filter 200ms;
}
.ch-top-item:hover .ch-top-thumb img { filter: saturate(1.05) contrast(1.03) sepia(.08) hue-rotate(-6deg) brightness(.94); }
.ch-top-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 6px; }
.ch-top-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; line-height: 1.18; letter-spacing: -0.01em;
  text-wrap: pretty;
}
.ch-top-title--lg { font-size: 24px; line-height: 1.12; }
.ch-top-meta { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-400); margin-top: 8px; }

/* ── SECTION HEADING ── */
.ch-sec-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.ch-sec-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
}
.ch-sec-rule { flex: 1; height: 1px; background: var(--ink-100); }
.ch-sec-more {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-900);
  text-decoration: none; opacity: 0.5;
  transition: opacity 160ms;
}
.ch-sec-more:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

/* ── NEWS SECTION ── */
.ch-news {
  padding: 56px 56px 64px;
  max-width: 1360px; margin: 0 auto;
}
.ch-news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ── ARTICLE CARD ── */
.ch-card { display: flex; flex-direction: column; gap: 10px; cursor: pointer; }
.ch-card-thumb {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; position: relative;
  background: var(--ink-800);
}
.ch-card-thumb img, .ch-card-thumb .img-ph {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.03) sepia(.08) hue-rotate(-6deg) brightness(1.02);
  transition: filter 220ms;
}
.ch-card:hover .ch-card-thumb img { filter: saturate(1.05) contrast(1.03) sepia(.08) hue-rotate(-6deg) brightness(.94); }
.ch-card-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-400); }
.ch-card-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 16px; line-height: 1.2; letter-spacing: -0.01em;
  text-wrap: pretty;
}
.ch-card:hover .ch-card-title { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.ch-card-meta { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-400); }
.ch-card-lead { font-family: var(--font-serif); font-size: 14px; line-height: 1.5; color: var(--ink-500); }

/* ── DIVIDER ── */
.ch-divider { height: 1px; background: var(--ink-100); }
.ch-divider-dark { height: 1px; background: #1f1f1f; }

/* ── FEATURE STRIP ── */
.ch-feature {
  background: var(--ink-800); color: #fff;
  display: grid; grid-template-columns: 1fr 1.2fr;
}
.ch-feature-copy {
  padding: 56px 56px 56px 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.ch-feature-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); }
.ch-feature-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 34px; line-height: 1.05; letter-spacing: -0.02em;
  text-wrap: pretty;
}
.ch-feature-sub {
  font-family: var(--font-serif); font-size: 17px;
  line-height: 1.5; color: var(--ink-200);
}
.ch-feature-link {
  align-self: flex-start; color: var(--amber);
  font-weight: 700; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--amber); padding-bottom: 2px;
}
.ch-feature-img { overflow: hidden; }
.ch-feature-img img, .ch-feature-img .img-ph {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.03) sepia(.08) hue-rotate(-6deg) brightness(1.02);
}

/* ── COLUNISTAS ── */
.ch-col-section {
  background: #000; color: #fff;
  padding: 64px 0 0;
}
.ch-col-head {
  max-width: 1360px; margin: 0 auto;
  padding: 0 56px 40px;
  display: flex; align-items: center; gap: 20px;
}
.ch-col-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber);
}
.ch-col-rule { flex: 1; height: 1px; background: #222; }
.ch-col-arrows { display: flex; gap: 8px; }
.ch-col-arrow {
  background: transparent; border: 1px solid #333;
  color: #fff; cursor: pointer; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px; transition: border-color 180ms, background 180ms;
}
.ch-col-arrow:hover { border-color: var(--amber); background: #111; }
.ch-col-arrow:disabled { opacity: 0.25; cursor: not-allowed; }

.ch-col-carousel {
  position: relative; overflow: hidden;
  padding: 0 56px;
}
.ch-col-track {
  display: flex; gap: 24px;
  transition: transform 400ms var(--ease-standard);
}
.ch-col-card {
  flex: 0 0 260px; cursor: pointer;
  position: relative; overflow: hidden;
  border: 1px solid #1a1a1a;
  transition: border-color 220ms;
}
.ch-col-card:hover, .ch-col-card.active { border-color: var(--amber); }
.ch-col-photo-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--amber);
}
.ch-col-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.15);
  mix-blend-mode: multiply;
  display: block;
}
.ch-col-photo-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.ch-col-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  height: 60%; pointer-events: none;
}
.ch-col-info { padding: 16px; }
.ch-col-col-name {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 4px;
}
.ch-col-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 16px; letter-spacing: -0.01em; margin-bottom: 8px;
}
.ch-col-latest {
  font-family: var(--font-serif); font-size: 13px;
  line-height: 1.45; color: var(--ink-300);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.ch-col-expanded {
  max-width: 1360px; margin: 0 auto;
  padding: 48px 56px 56px;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 48px; border-top: 1px solid #1a1a1a;
  margin-top: 32px;
}
.ch-col-exp-photo {
  position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--amber);
}
.ch-col-exp-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.15); mix-blend-mode: multiply; display: block;
}
.ch-col-exp-bio { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.ch-col-exp-col { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); }
.ch-col-exp-name { font-family: var(--font-display); font-weight: 900; font-size: 32px; letter-spacing: -0.02em; }
.ch-col-exp-desc { font-family: var(--font-serif); font-size: 16px; line-height: 1.6; color: var(--ink-300); }
.ch-col-exp-rule { height: 1px; background: #222; }
.ch-col-exp-article-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-400); }
.ch-col-exp-article-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 28px; line-height: 1.1; letter-spacing: -0.02em;
  text-wrap: pretty;
}
.ch-col-exp-article-lead {
  font-family: var(--font-serif); font-size: 16px; line-height: 1.6;
  color: var(--ink-300); max-width: 540px;
}
.ch-col-exp-link {
  align-self: flex-start; color: var(--amber);
  font-weight: 700; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--amber); padding-bottom: 2px;
}

/* ── NEWSLETTER ── */
.ch-newsletter {
  background: var(--ink-050); padding: 72px 56px;
  border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100);
}
.ch-nl-inner {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.ch-nl-copy { display: flex; flex-direction: column; gap: 16px; }
.ch-nl-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-400); }
.ch-nl-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 36px; line-height: 1.05; letter-spacing: -0.02em;
  text-wrap: pretty;
}
.ch-nl-sub {
  font-family: var(--font-serif); font-size: 18px;
  line-height: 1.55; color: var(--ink-500);
}
.ch-nl-perks { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.ch-nl-perk { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-600); }
.ch-nl-perk-dot { width: 6px; height: 6px; background: var(--amber); flex-shrink: 0; }
.ch-nl-form { display: flex; flex-direction: column; gap: 20px; }
.ch-nl-form-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; letter-spacing: -0.01em;
}
.ch-nl-input-row { display: flex; gap: 10px; }
.ch-nl-input {
  flex: 1; height: 48px; padding: 0 16px;
  border: 1px solid var(--ink-200); border-radius: var(--radius-2);
  font-family: var(--font-ui); font-size: 15px;
  background: #fff; outline: none;
  transition: border-color 180ms;
}
.ch-nl-input:focus { border-color: #000; }
.ch-nl-btn {
  background: #000; color: #fff; border: none;
  border-radius: var(--radius-2); cursor: pointer;
  font-family: var(--font-ui); font-weight: 700;
  font-size: 13px; padding: 0 24px; white-space: nowrap;
  transition: background 180ms;
}
.ch-nl-btn:hover { background: var(--ink-700); }
.ch-nl-note { font-size: 12px; color: var(--ink-400); }

/* ── VIDEO ── */
.ch-video-section { padding: 64px 56px; max-width: 1360px; margin: 0 auto; }
.ch-video-inner {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start;
}
.ch-video-player {
  position: relative; aspect-ratio: 16/9;
  background: #000; overflow: hidden; cursor: pointer;
}
.ch-video-player img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7);
  transition: filter 220ms;
}
.ch-video-player:hover img { filter: brightness(0.85); }
.ch-video-ph { width: 100%; height: 100%; }
.ch-video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms, transform 200ms;
}
.ch-video-player:hover .ch-video-play { background: rgba(235,182,15,0.85); border-color: var(--amber); transform: translate(-50%, -50%) scale(1.08); }
.ch-video-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: #fff;
}
.ch-video-label-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
.ch-video-label-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; line-height: 1.15; letter-spacing: -0.01em; }
.ch-video-sidebar { display: flex; flex-direction: column; gap: 0; }
.ch-video-sidebar-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ch-video-sidebar-title { font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.ch-video-sidebar-rule { flex: 1; height: 1px; background: var(--ink-100); }
.ch-video-side-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--ink-100);
  cursor: pointer;
}
.ch-video-side-item:hover .ch-video-side-title { text-decoration: underline; text-underline-offset: 3px; }
.ch-video-side-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--ink-800); flex-shrink: 0; }
.ch-video-side-thumb img, .ch-video-side-thumb .img-ph { width: 100%; height: 100%; object-fit: cover; }
.ch-video-side-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 4px; }
.ch-video-side-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; line-height: 1.2; letter-spacing: -0.005em; }

/* ── MAIS LIDAS ── */
.ch-ml-outer { background: var(--ink-050); padding: 64px 56px; border-top: 1px solid var(--ink-100); }
.ch-ml-inner { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.ch-ml-col { display: flex; flex-direction: column; gap: 0; }
.ch-ml-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.ch-ml-title { font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.ch-ml-rule { flex: 1; height: 1px; background: var(--ink-200); }
.ch-ml-tabs { display: flex; gap: 0; margin-bottom: 24px; }
.ch-ml-tab {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; cursor: pointer; border-bottom: 2px solid transparent;
  transition: border-color 180ms; color: var(--ink-400);
}
.ch-ml-tab.active { border-bottom-color: #000; color: #000; }
.ch-ml-item {
  display: grid; grid-template-columns: 36px 1fr 72px;
  gap: 12px 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--ink-100);
  cursor: pointer;
}
.ch-ml-item:hover .ch-ml-item-title { text-decoration: underline; text-underline-offset: 3px; }
.ch-ml-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 28px; line-height: 1; color: var(--ink-100);
  text-align: center;
}
.ch-ml-num.top { color: var(--amber); }
.ch-ml-item-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 4px; }
.ch-ml-item-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; line-height: 1.2; letter-spacing: -0.005em; text-wrap: pretty; }
.ch-ml-item-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--ink-200); }
.ch-ml-item-thumb img, .ch-ml-item-thumb .img-ph { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.03) sepia(.08) hue-rotate(-6deg) brightness(1.02); }
.ch-ml-latest-item {
  padding: 14px 0; border-bottom: 1px solid var(--ink-100);
  cursor: pointer; display: flex; gap: 14px; align-items: flex-start;
}
.ch-ml-latest-item:hover .ch-ml-latest-title { text-decoration: underline; text-underline-offset: 3px; }
.ch-ml-latest-thumb { width: 80px; flex-shrink: 0; aspect-ratio: 4/3; overflow: hidden; background: var(--ink-200); }
.ch-ml-latest-thumb img, .ch-ml-latest-thumb .img-ph { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.03) sepia(.08) hue-rotate(-6deg) brightness(1.02); }
.ch-ml-latest-body { flex: 1; }
.ch-ml-latest-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 4px; }
.ch-ml-latest-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; line-height: 1.2; text-wrap: pretty; }
.ch-ml-latest-time { font-size: 11px; color: var(--ink-400); margin-top: 4px; }

/* ── FOOTER ── */
.ch-footer { background: #000; color: #fff; padding: 64px 56px 28px; }
.ch-footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px; border-bottom: 1px solid #1a1a1a;
  max-width: 1360px; margin: 0 auto;
}
.ch-footer-brand {}
.ch-footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 48px; letter-spacing: -0.025em; line-height: 1; color: #fff; }
.ch-footer-tag { font-family: var(--font-serif); font-style: italic; color: var(--ink-300); margin-top: 10px; font-size: 16px; }
.ch-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.ch-footer-soc {
  width: 34px; height: 34px; border: 1px solid #2a2a2a; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-300); cursor: pointer; text-decoration: none;
  transition: border-color 180ms, color 180ms;
}
.ch-footer-soc:hover { border-color: #fff; color: #fff; }
.ch-footer-col {}
.ch-footer-col-head { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.ch-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ch-footer-col a { color: var(--ink-300); text-decoration: none; font-size: 14px; transition: color 160ms; }
.ch-footer-col a:hover { color: #fff; }
.ch-footer-bottom {
  max-width: 1360px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  font-size: 11px; color: var(--ink-500); letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── IMG PLACEHOLDER ── */
.img-ph {
  width: 100%; height: 100%; background: #111;
  display: flex; align-items: center; justify-content: center;
}
.img-ph svg { width: 80%; height: 80%; }


/* ══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — breakpoints: 1024px / 768px / 480px
   ══════════════════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .ch-header { padding: 0 24px; gap: 16px; }
  .ch-nav-item { padding: 22px 8px; font-size: 12px; }
  .ch-hero-inner { padding: 0 24px; grid-template-columns: 1fr 360px; }
  .ch-hero-copy { padding: 48px 32px 48px 0; }
  .ch-top-inner { grid-template-columns: 1.2fr 1fr 1fr; }
  .ch-top-item { padding: 20px 20px; }
  .ch-news { padding: 40px 24px 48px; }
  .ch-news-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ch-feature-copy { padding: 40px 40px; }
  .ch-feature-title { font-size: 26px; }
  .ch-col-carousel { padding: 0 24px; }
  .ch-col-head { padding: 0 24px 40px; }
  .ch-col-expanded { padding: 40px 24px 48px; }
  .ch-newsletter { padding: 56px 24px; }
  .ch-nl-inner { gap: 48px; }
  .ch-video-section { padding: 48px 24px; }
  .ch-ml-outer { padding: 48px 24px; }
  .ch-footer { padding: 48px 24px 24px; }
  .ch-footer-top { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 28px; }
  .ch-footer-top > div:last-child { display: none; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Header */
  .ch-header { padding: 0 16px; height: 56px; gap: 8px; }
  .ch-nav { display: none; }
  .ch-hamburger {
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: none; color: #fff;
    cursor: pointer; padding: 8px;
  }
  .ch-subscribe { font-size: 11px; padding: 7px 12px; }

  /* Mobile drawer */
  .ch-mobile-drawer {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #000; z-index: 500;
    display: flex; flex-direction: column;
    transform: translateX(-100%);
    transition: transform 320ms var(--ease-entry);
    overflow-y: auto;
  }
  .ch-mobile-drawer.open { transform: translateX(0); }
  .ch-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 16px; height: 56px;
    border-bottom: 1px solid #1a1a1a; flex-shrink: 0;
  }
  .ch-drawer-close {
    background: transparent; border: none; color: #fff;
    cursor: pointer; padding: 8px;
  }
  .ch-drawer-nav { display: flex; flex-direction: column; padding: 8px 0; }
  .ch-drawer-nav-item {
    color: #fff; text-decoration: none;
    font-family: var(--font-display); font-weight: 800;
    font-size: 28px; letter-spacing: -0.02em;
    padding: 16px 24px; border-bottom: 1px solid #111;
    transition: color 160ms;
    display: flex; align-items: center; justify-content: space-between;
  }
  .ch-drawer-nav-item:hover { color: var(--amber); }
  .ch-drawer-footer {
    margin-top: auto; padding: 24px;
    border-top: 1px solid #1a1a1a;
    display: flex; flex-direction: column; gap: 12px;
  }
  .ch-drawer-subscribe {
    background: var(--amber); color: #000; border: none;
    border-radius: var(--radius-2); cursor: pointer;
    font-family: var(--font-ui); font-weight: 700;
    font-size: 14px; padding: 14px 24px; text-align: center;
    text-decoration: none; display: block;
  }
  .ch-drawer-search {
    color: var(--ink-400); text-decoration: none;
    font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; text-align: center; padding: 8px;
  }

  /* Ticker */
  .ch-ticker { height: 30px; }
  .ch-ticker-label { font-size: 9px; padding: 0 10px; }
  .ch-ticker-item { font-size: 11px; }

  /* Hero */
  .ch-hero { min-height: unset; }
  .ch-hero-wire, .ch-hero-wire-right { display: none; }
  .ch-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
    padding: 0;
    min-height: unset;
    max-width: 100%;
  }
  .ch-hero-img { order: 1; height: 220px; }
  .ch-hero-copy { order: 2; padding: 24px 16px 28px; gap: 12px; }
  .ch-hero-title { font-size: clamp(26px, 6vw, 36px); }
  .ch-hero-sub { font-size: 16px; }

  /* Top Stories — scroll horizontal */
  .ch-top-inner {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 0;
    scrollbar-width: none; max-width: 100%;
  }
  .ch-top-inner::-webkit-scrollbar { display: none; }
  .ch-top-item {
    flex: 0 0 72vw; scroll-snap-align: start;
    border-right: 1px solid var(--ink-100);
    padding: 16px;
  }
  .ch-top-item:last-child { border-right: none; }

  /* News sections */
  .ch-news { padding: 28px 16px 36px; }
  .ch-news-grid { grid-template-columns: 1fr; gap: 0; }
  .ch-sec-head { margin-bottom: 20px; }

  /* Cards — layout horizontal */
  .ch-card {
    flex-direction: row; gap: 14px; align-items: flex-start;
    padding: 16px 0; border-bottom: 1px solid var(--ink-100);
  }
  .ch-card-thumb {
    width: 96px; min-width: 96px; aspect-ratio: 4/3; flex-shrink: 0;
  }
  .ch-card-body { flex: 1; display: flex; flex-direction: column; gap: 5px; }
  .ch-card-title { font-size: 15px; }

  /* Feature strip */
  .ch-feature { grid-template-columns: 1fr; }
  .ch-feature-img { height: 220px; order: -1; }
  .ch-feature-copy { padding: 24px 16px 28px; gap: 12px; }
  .ch-feature-title { font-size: 24px; }
  .ch-feature-sub { font-size: 15px; }

  /* Colunistas */
  .ch-col-section { padding: 40px 0 0; }
  .ch-col-head { padding: 0 16px 24px; }
  .ch-col-arrows { display: none; }
  .ch-col-carousel { padding: 0 16px; overflow-x: auto; }
  .ch-col-track { gap: 16px; }
  .ch-col-card { flex: 0 0 180px; }
  .ch-col-expanded { grid-template-columns: 1fr; padding: 24px 16px 32px; gap: 20px; margin-top: 20px; }
  .ch-col-exp-photo { aspect-ratio: 1/1; max-width: 140px; }
  .ch-col-exp-name { font-size: 22px; }
  .ch-col-exp-article-title { font-size: 20px; }

  /* Newsletter */
  .ch-newsletter { padding: 40px 16px; }
  .ch-nl-inner { grid-template-columns: 1fr; gap: 28px; }
  .ch-nl-title { font-size: 26px; }
  .ch-nl-sub { font-size: 16px; }
  .ch-nl-input-row { flex-direction: column; }
  .ch-nl-btn { height: 48px; }

  /* Vídeo */
  .ch-video-section { padding: 32px 16px; }
  .ch-video-inner { grid-template-columns: 1fr; gap: 24px; }

  /* Mais lidas */
  .ch-ml-outer { padding: 36px 16px; }
  .ch-ml-inner { grid-template-columns: 1fr; gap: 36px; }
  .ch-ml-item { grid-template-columns: 28px 1fr 64px; }
  .ch-ml-num { font-size: 22px; }

  /* Footer */
  .ch-footer { padding: 36px 16px 20px; }
  .ch-footer-top { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .ch-footer-brand { grid-column: 1 / -1; }
  .ch-footer-logo { font-size: 36px; }
  .ch-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .ch-top-item { flex: 0 0 86vw; }
  .ch-hero-img { height: 200px; }
  .ch-hero-inner { grid-template-rows: 200px auto; }
  .ch-footer-top { grid-template-columns: 1fr; }
  .ch-ml-item { grid-template-columns: 24px 1fr; }
  .ch-ml-item-thumb { display: none; }
  .ch-col-card { flex: 0 0 160px; }
}
