/* ══════════════════════════════════
   REPORTS SECTION
══════════════════════════════════ */
.reports-section {
  --rs-bg:        #f5f4f0;
  --rs-card-bg:   #ffffff;
  --rs-border:    #e4e0d8;
  --rs-accent:    #d40000;
  --rs-accent2:   #1578be;
  --rs-text:      #1a1a1a;
  --rs-sub:       #5a5a5a;
  --rs-muted:     #9a9690;
  --rs-index:     rgba(0,0,0,0.04);
  --rs-radius:    8px;

  background: var(--rs-bg);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid texture */
.reports-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #c8c4bc 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

/* ── Header ── */
.reports-header {
  margin-bottom: 1.8rem;
}

.reports-kicker {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rs-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.reports-title-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.reports-title {
  font-family: var(--font-primary);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: var(--fw-bold);
  color: var(--rs-text);
  margin: 0;
  line-height: var(--lh-heading);
  white-space: nowrap;
}

.reports-rule {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--rs-border), transparent);
  border-radius: 2px;
}

/* ── Grid ── */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) { .reports-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .reports-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }
@media (max-width: 380px) { .reports-grid { grid-template-columns: 1fr; } }

/* ── Card ── */
.report-card {
  position: relative;
  background: var(--rs-card-bg);
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s;
}

.report-card:hover {
  transform: translateY(-7px) rotate(-0.35deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.13), 0 0 0 1.5px var(--rs-accent);
  border-color: var(--rs-accent);
}

/* ── Ghost index number ── */
.report-index {
  position: absolute;
  top: -14px;
  right: 6px;
  font-family: var(--font-primary);
  font-size: 5.5rem;
  font-weight: var(--fw-xbold);
  color: var(--rs-index);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color 0.35s;
}

.report-card:hover .report-index {
  color: rgba(212,0,0,0.06);
}

/* ── Cover ── */
.report-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edeae3;
  z-index: 1;
}

.report-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.report-card:hover .report-cover img {
  transform: scale(1.06);
}

/* Placeholder for missing cover */
.report-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(145deg, #e8f1fb 0%, #dce8f5 100%);
  color: var(--rs-accent2);
}

.report-cover-placeholder i    { font-size: 2.5rem; opacity: 0.5; }
.report-cover-placeholder span {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* Overlay on hover */
.report-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.55) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.report-card:hover .report-cover-overlay { opacity: 1; }

.report-dl-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rs-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  text-decoration: none;
  transform: translateY(8px);
  transition: transform 0.3s 0.05s, background 0.2s;
  box-shadow: 0 4px 14px rgba(212,0,0,0.4);
}

.report-card:hover .report-dl-icon { transform: translateY(0); }
.report-dl-icon:hover { background: #b30000; }

/* ── Meta ── */
.report-meta {
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  z-index: 1;
  position: relative;
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}

.report-card:hover .report-meta {
  border-top-color: var(--rs-accent);
}

.report-year {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rs-accent2);
}

.report-name {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--rs-text);
  line-height: var(--lh-heading);
  margin: 0;
  flex: 1;
}

.report-download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--rs-muted);
  text-decoration: none;
  margin-top: 0.55rem;
  transition: color 0.2s, gap 0.25s;
}

.report-download-link:hover { color: var(--rs-accent); gap: 0.65rem; }
.report-download-link i { transition: transform 0.2s; }
.report-download-link:hover i { transform: translateX(4px); }

/* ── Footer ── */
.reports-footer {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.reports-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rs-text);
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--rs-border);
  border-radius: 2px;
  background: var(--rs-card-bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: background 0.25s, border-color 0.25s, color 0.25s, gap 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.reports-view-all::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--rs-accent), var(--rs-accent2));
  opacity: 0;
  transition: opacity 0.3s;
}

.reports-view-all:hover::before { opacity: 1; }
.reports-view-all:hover {
  color: #fff;
  border-color: transparent;
  gap: 1.2rem;
  box-shadow: 0 8px 24px rgba(212,0,0,0.2);
}

.reports-view-all span,
.reports-view-all i {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════
   NEWS SECTION (rnews)
══════════════════════════════════ */
.rnews-section {
  padding: 64px 0 80px;
  background: #f5f6f8;
  margin-top: -50px;
}

/* Header + tabs row */
.rnews-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}
.rnews-kicker {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: red;
  margin-bottom: 5px;
}
.rnews-title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-xbold);
  color: rgba(11,18,32,.9);
  margin: 0;
  line-height: 1;
}

/* Tab pills */
.rnews-tabs {
  display: flex;
  background: #fff;
  border: 1px solid rgba(11,18,32,.08);
  border-radius: 14px;
  padding: 4px;
  gap: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.rnews-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: rgba(11,18,32,.5);
  cursor: pointer;
  transition: all .22s ease;
}
.rnews-tab i { font-size: var(--text-sm); }
.rnews-tab:hover {
  color: rgba(11,18,32,.8);
  background: rgba(21,120,190,.06);
}
.rnews-tab.active {
  background: linear-gradient(135deg, #1578be, #d40000);
  color: #fff;
  box-shadow: 0 4px 14px rgba(21,120,190,.3);
}

/* News grid — equal height columns */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* Featured card */
.news-card--featured {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid rgba(11,18,32,.06);
  transition: box-shadow .25s ease, transform .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card--featured:hover {
  box-shadow: 0 12px 40px rgba(21,120,190,.14);
  transform: translateY(-3px);
}
.news-card__img-wrap {
  display: block;
  position: relative;
  height: 220px;
  flex: 0 0 220px;
  overflow: hidden;
  text-decoration: none;
}
.news-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news-card--featured:hover .news-card__img-wrap img {
  transform: scale(1.05);
}
.news-card__img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(21,120,190,.1), rgba(212,0,0,.07));
  display: flex; align-items: center; justify-content: center;
  color: rgba(21,120,190,.3);
  font-size: 48px;
}
.news-card__img-fallback.sm { font-size: 22px; height: 100%; width: 100%; }
.news-card__img-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(5,12,24,.15) 0%, transparent 60%);
}
.news-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: #d40000;
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(212,0,0,.35);
}
.news-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
.news-card__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1578be;
  flex: 0 0 6px;
}
.news-card__meta time,
.news-card__sep,
.news-card__cat {
  font-size: var(--text-xs);
  color: rgba(11,18,32,.45);
  font-weight: var(--fw-semibold);
}
.news-card__cat { color: #1578be; font-weight: var(--fw-bold); }
.news-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.news-card__title a:hover { color: #1578be; }
.news-card__title--lg {
  font-size: var(--text-lg);
  font-weight: var(--fw-xbold);
  line-height: var(--lh-heading);
  color: rgba(11,18,32,.9);
  margin-bottom: 10px;
}
.news-card__title--sm {
  font-size: var(--text-sm);
  font-weight: var(--fw-xbold);
  line-height: var(--lh-heading);
  color: rgba(11,18,32,.85);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__excerpt {
  font-size: var(--text-sm);
  color: rgba(11,18,32,.55);
  line-height: var(--lh-body);
  margin-bottom: 18px;
  flex: 1;
}
.news-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  font-weight: var(--fw-xbold);
  color: rgba(11,18,32,.8);
  text-decoration: none;
  transition: gap .2s, color .2s;
  margin-top: auto;
}
.news-card__cta:hover { gap: 14px; color: #1578be; }
.news-card__cta-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(21,120,190,.1);
  border: 1px solid rgba(21,120,190,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  color: #1578be;
  transition: background .2s, transform .2s;
}
.news-card__cta:hover .news-card__cta-arrow {
  background: #1578be;
  color: #fff;
  transform: translateX(3px);
}

/* Secondary stack — 2 cards filling same height */
.news-secondary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.news-card--sm {
  display: flex;
  gap: 14px;
  align-items: stretch;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(11,18,32,.06);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: box-shadow .22s, transform .22s;
  flex: 1;
  min-height: 0;
  text-decoration: none;
}
.news-card--sm:hover {
  box-shadow: 0 8px 28px rgba(21,120,190,.12);
  transform: translateY(-2px);
}
.news-card--sm__img {
  position: relative;
  width: 100px;
  flex: 0 0 100px;
  align-self: stretch;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.news-card--sm__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.news-card--sm:hover .news-card--sm__img img {
  transform: scale(1.08);
}
.news-card--sm__num {
  position: absolute;
  bottom: 6px; right: 8px;
  font-size: 22px;
  font-weight: var(--fw-xbold);
  color: rgba(255,255,255,.22);
  line-height: 1;
  pointer-events: none;
}
.news-card--sm__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.news-card--sm__excerpt {
  font-size: var(--text-xs);
  color: rgba(11,18,32,.48);
  line-height: var(--lh-body);
  margin-bottom: 6px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card--sm__link {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: #1578be;
  text-decoration: none;
  margin-top: auto;
  transition: color .2s;
}
.news-card--sm__link:hover { color: #d40000; }

/* Empty state */
.rnews-empty {
  text-align: center;
  padding: 60px 0;
  color: rgba(11,18,32,.3);
}
.rnews-empty i {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.rnews-empty p {
  font-size: var(--text-sm);
  margin: 0;
}

/* ── View All button (duplicate) – unified with above ── */
.reports-view-all {
  /* This is the same as above; styles are already defined. 
     No need to duplicate, but keep if used elsewhere. */
}