body.page-briefing .ind-hero h1 {
  font-size: clamp(2rem, 7.2vw, 5.2rem);
  letter-spacing: 0.1em;
  max-width: 18ch;
}

.eb-overview {
  margin: 22px auto 0;
  max-width: 78ch;
  color: #6b7394;
  font-size: 0.94rem;
  line-height: 1.85;
}

.eb-grid {
  display: grid;
  gap: 22px;
  margin: 36px auto 0;
  width: min(1140px, 100%);
  text-align: left;
}

.eb-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.eb-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.eb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
  padding: 32px 22px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f4f6fb 0%, #e7ecf6 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 28px rgba(80, 90, 150, 0.06);
}

.eb-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: #21288f;
}

.eb-icon svg,
.eb-icon img {
  width: 40px;
  height: 40px;
  display: block;
}

.eb-icon img {
  width: auto;
  max-width: 52px;
  object-fit: contain;
}

.eb-card h3 {
  margin: 0 0 12px;
  color: #1b2a6b;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eb-card p {
  margin: 0;
  color: #5b6484;
  font-size: 0.8rem;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .eb-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .eb-grid-3,
  .eb-grid-4 {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}
