.content-page {
  background: #07101c;
  color: #0d1726;
}

.content-page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(226, 0, 28, 0.22), transparent 30%),
    linear-gradient(180deg, #080c13 0%, #0b1422 42%, #eef2f7 42%, #eef2f7 100%);
}

.content-page-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.content-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-bottom: 1px solid rgba(226, 0, 28, 0.65);
}

.content-page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 12, 0.96), rgba(9, 15, 25, 0.78)),
    url("../images/uploads/sliders/1763709027603-271614278.png") center / cover no-repeat;
  opacity: 0.9;
  filter: saturate(0.95);
}

.content-page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 0 72px;
  color: #fff;
}

.content-page-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.content-page-breadcrumbs strong {
  color: #e6001c;
}

.content-page-hero h1 {
  margin: 28px 0 0;
  max-width: 820px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.content-page-hero p {
  margin: 20px 0 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}

.content-page-card {
  position: relative;
  z-index: 2;
  margin-top: -38px;
  margin-bottom: 72px;
  padding: 42px min(5vw, 64px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(8, 16, 28, 0.16);
}

.content-page-article {
  color: #172033;
  font-size: 18px;
  line-height: 2;
  font-weight: 700;
}

.content-page-article :where(h2, h3) {
  margin: 32px 0 12px;
  color: #07101c;
  line-height: 1.25;
  font-weight: 900;
}

.content-page-article p {
  margin: 0 0 18px;
}

.content-page-article a {
  color: #e6001c;
  font-weight: 900;
  text-decoration: underline;
}

.content-page-loading,
.content-page-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 180px;
  color: #64748b;
  font-weight: 900;
}

.content-page-loading[hidden],
.content-page-empty[hidden],
.content-page-article[hidden] {
  display: none !important;
}

.content-page-article ul {
  margin: 0 0 22px;
  padding-inline-start: 24px;
}

.content-page-article li {
  margin: 7px 0;
  padding-inline-start: 4px;
}

.about-lead {
  padding: 8px 0 28px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.about-lead span,
.history-intro h2,
.about-highlight strong {
  color: #e6001c;
}

.about-lead h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 48px);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.about-values-grid section,
.about-highlight {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #f8fafc;
  padding: 22px;
}

.about-values-grid h3 {
  margin-top: 0;
}

.about-highlight {
  background:
    linear-gradient(90deg, rgba(226, 0, 28, 0.08), rgba(226, 0, 28, 0)),
    #fff;
}

.about-highlight a {
  display: inline-flex;
  margin-top: 8px;
}

.history-intro {
  margin-bottom: 26px;
}

.history-timeline {
  display: grid;
  gap: 10px;
}

.history-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 62px;
  padding: 14px 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #f8fafc;
}

.history-row time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  background: #0d1726;
  color: #fff;
  font-weight: 900;
}

.history-row p {
  margin: 0;
}

.history-row.is-major {
  border-color: rgba(226, 0, 28, 0.26);
  background: rgba(226, 0, 28, 0.06);
}

.history-row.is-major time {
  background: #e6001c;
}

.content-page-loading span {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(226, 0, 28, 0.15);
  border-top-color: #e6001c;
  border-radius: 50%;
  animation: page-spin 0.8s linear infinite;
}

@keyframes page-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  .content-page-container {
    width: min(100% - 24px, 1180px);
  }

  .content-page-card {
    padding: 28px 18px;
  }

  .content-page-article {
    font-size: 16px;
  }

  .about-values-grid,
  .history-row {
    grid-template-columns: 1fr;
  }

  .history-row time {
    justify-content: flex-start;
    padding: 0 16px;
  }
}
