.content {
  display: grid;
  gap: 12px;
}

.content .section {
  padding: 22px;
  border: 1px solid rgba(24, 24, 27, 0.10);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.88));
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.content .section:first-child,
.content .section:last-child {
  padding: 22px;
}

.content .section h2 {
  font-size: clamp(19px, 2.4vw, 25px);
  letter-spacing: -0.04em;
}

.content a {
  color: #4f46e5;
  font-weight: 800;
}

@media (max-width: 720px) {
  .content .section,
  .content .section:first-child,
  .content .section:last-child {
    padding: 18px;
  }
}
