/* ── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { cursor: pointer; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #C12527; }

/* ── LAYOUT ────────────────────────────────────────────────────── */
.crp-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.crp-layout--article { }

.crp-layout__main { min-width: 0; }

/* ── GRIDS ──────────────────────────────────────────────────────── */
.crp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.crp-grid-intl {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.crp-grid-intl__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── SECTION BLOCK SPACING ──────────────────────────────────────── */
.crp-section-block { margin-bottom: 48px; }

/* ── SHARED META DOTS ───────────────────────────────────────────── */
.crp-meta-dot {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #ddd;
  vertical-align: middle;
  margin: 0 3px;
}

.crp-meta-bullet {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  vertical-align: middle;
  margin: 0 5px;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.crp-btn {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 8px 16px;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.crp-btn:hover { opacity: 0.85; }

.crp-btn--outline {
  border: 1px solid #2D3F5C;
  color: #2D3F5C;
  background: none;
}

.crp-btn--solid {
  background: #C12527;
  color: #fff;
  border: none;
}

.crp-btn--full { width: 100%; text-align: center; }

.crp-btn--campaign {
  background: #fff;
  color: #C12527;
  border: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 14px;
}

/* ── TAGS ───────────────────────────────────────────────────────── */
.crp-tag {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #F5F5F5;
  color: #444;
  padding: 4px 9px;
  display: inline-block;
  transition: background 0.15s;
}

.crp-tag:hover { background: #EEEEEE; }

/* ── PAGINATION ─────────────────────────────────────────────────── */
.crp-pagination {
  margin-top: 40px;
  display: flex;
  gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
}

.crp-pagination .page-numbers {
  padding: 6px 12px;
  border: 1px solid #EEEEEE;
  color: #444;
}

.crp-pagination .current {
  background: #C12527;
  color: #fff;
  border-color: #C12527;
}

@media (max-width: 900px) {
  .crp-layout { grid-template-columns: 1fr; }
  .crp-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .crp-grid-intl { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .crp-grid-3 { grid-template-columns: 1fr; }
  .crp-layout { padding: 24px 16px 40px; }
}
