.fsrap-hero {
  padding: 4.5rem 0;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(0, 25, 60, .96), rgba(0, 45, 98, .88)),
    url("../img/hero-default.svg") center / cover;
}

.fsrap-hero__inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.fsrap-hero .eyebrow {
  margin-bottom: .85rem;
  color: #ff6b00;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fsrap-hero h1 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.04;
}

.fsrap-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.fsrap-section {
  background: #f3f4f6;
}

.fsrap-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.fsrap-sidebar {
  position: sticky;
  top: 92px;
}

.fsrap-sidebar-card {
  padding: 22px;
  border: 1px solid #d6dbe3;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 45, 98, 0.08);
}

.fsrap-sidebar-card h2 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.fsrap-sidebar-card p {
  margin-bottom: 16px;
  font-size: .92rem;
}

.fsrap-route-nav {
  display: grid;
  gap: 7px;
  max-height: calc(100vh - 230px);
  overflow: auto;
  padding-right: 4px;
}

.fsrap-route-nav a {
  display: block;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #00193c;
  background: #f8fafc;
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.25;
}

.fsrap-route-nav a:hover {
  border-color: #ff6b00;
  color: #ff6b00;
  background: #ffffff;
}

.fsrap-main-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.fsrap-main-head h2 {
  margin-bottom: 5px;
}

.fsrap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.fsrap-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d6dbe3;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 45, 98, 0.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fsrap-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 0, .45);
  box-shadow: 0 12px 28px rgba(0, 45, 98, 0.13);
}

.fsrap-thumb {
  aspect-ratio: 16 / 9;
  background: #e7e8ea;
}

.fsrap-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fsrap-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
  min-height: 150px;
}

.fsrap-type {
  display: inline-flex;
  margin-bottom: 9px;
  color: #ff6b00;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.fsrap-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.fsrap-more {
  margin-top: auto;
  color: #00193c;
  font-weight: 800;
}

.fsrap-pagination {
  margin-top: 34px;
}

.fsrap-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.fsrap-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #d6dbe3;
  border-radius: 10px;
  background: #ffffff;
  color: #00193c;
  font-weight: 800;
}

.fsrap-pagination .page-numbers.current,
.fsrap-pagination .page-numbers:hover {
  border-color: #00193c;
  background: #00193c;
  color: #ffffff;
}

.fsrap-empty {
  padding: 28px;
  border: 1px solid #d6dbe3;
  border-radius: 18px;
  background: #ffffff;
}

@media (max-width: 1100px) {
  .fsrap-layout {
    grid-template-columns: 1fr;
  }

  .fsrap-sidebar {
    position: static;
  }

  .fsrap-route-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }

  .fsrap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .fsrap-layout {
    gap: 22px;
  }

  .fsrap-route-nav,
  .fsrap-grid {
    grid-template-columns: 1fr;
  }

  .fsrap-main-head {
    display: block;
  }
}

@media (max-width: 680px) {
  .fsrap-hero {
    padding: 3rem 0;
  }
}
