/* ── CONTENT ── */
.content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px;
  width: 100%;
}

.page-heading {
  text-align: center;
  color: #0057be;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ── CARD GRID ── */
.card-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

/* ── CARD ── */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 320px;
  min-height: 280px;
  padding: 36px 28px 32px;
  text-decoration: none;
  color: #0057be;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 2px 10px rgb(26 59 110 / 76%);
  cursor: pointer;
}

.card:hover,
.card:focus-visible {
  background: #cfe0f0;
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(26, 59, 110, 0.20);
  outline: 3px solid #2d5faa;
  outline-offset: 2px;
}

/* ── ICON WRAP ── */
.card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ── LABEL ── */
.card-label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  color: #0057be;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .card-grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .card-grid {
    padding: 36px 16px;
    gap: 24px;
  }

  .card {
    width: 100%;
    max-width: 360px;
  }
}
