.container {
  width: min(1220px, calc(100% - 32px));
  margin-inline: auto;
  padding: 28px 0 58px;
}

.page-container,
.app-main {
  width: min(1220px, calc(100% - 32px));
  margin-inline: auto;
  padding: 28px 0 58px;
}

/* Ortak hafif vurgu efekti */
.red-glow {
  position: relative;
  isolation: isolate;
}

.red-glow::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -30px;
  height: 64px;
  background: rgba(220, 38, 38, .14);
  filter: blur(42px);
  pointer-events: none;
  z-index: -1;
}

/* Ortak sayfa başlığı */
.page-head {
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff1f2;
  color: #991b1b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-head h1 {
  margin: 10px 0 8px;
  color: #111827;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.05em;
}

.page-head p {
  max-width: 760px;
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .container,
  .page-container,
  .app-main {
    width: min(100% - 24px, 1220px);
    padding: 20px 0 42px;
  }

  .red-glow::after {
    left: 18%;
    right: 18%;
    bottom: -22px;
    height: 46px;
    filter: blur(34px);
  }
}