﻿.report-page { display: flex; flex-direction: column; gap: 1rem; }

.report-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid #b9ccff;
  background: linear-gradient(145deg, #ffffff 0%, #eef4ff 55%, #e7f0ff 100%);
}

.report-hero::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, #93c5fd 0%, transparent 70%);
  opacity: 0.45;
}

.report-kicker {
  margin: 0;
  color: #1e40af;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.report-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.55rem;
}

.report-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.report-card {
  border-left: 4px solid #2563eb;
}

.report-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.report-card__head h2 {
  margin: 0 0 0.2rem 0;
  font-size: 1.1rem;
}

.report-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1e3a8a;
  font-weight: 700;
}

.report-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.report-compare section {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 0.7rem;
}

.report-compare h3 {
  margin: 0 0 0.3rem 0;
  font-size: 0.95rem;
}

.report-compare p {
  margin: 0;
  color: #1e293b;
}

.report-files {
  margin: 0.6rem 0 0 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

@media (max-width: 768px) {
  .report-page {
    gap: 0.75rem;
  }

  .report-hero {
    padding: 0.9rem;
  }

  .report-card {
    padding: 0.85rem;
  }

  .report-card__head {
    flex-direction: column;
    gap: 0.45rem;
  }

  .report-num {
    min-width: auto;
    width: fit-content;
  }

  .report-compare {
    grid-template-columns: 1fr;
  }
}
