/**
 * Shared page / section hats — always centered.
 * Accent blue: #2075d2
 * Category hubs: omit .pk-page-hat-eyebrow (no blue dot).
 */
:root {
  --pk-hat-blue: #2075d2;
  --pk-hat-dark: #15223B;
  --pk-hat-muted: #475569;
}

.pk-page-hat,
.pk-page-hat--center,
.pk-section-hat {
  box-sizing: border-box;
  width: 100%;
  max-width: 760px;
  margin: 24px auto 8px;
  padding: 32px 24px 8px;
  background: transparent;
  text-align: center;
}

.pk-page-hat-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pk-page-hat-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pk-hat-blue);
  font-family: Montserrat, "Open Sans", sans-serif;
}

.pk-page-hat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pk-hat-blue);
  display: inline-block;
  flex-shrink: 0;
}

.pk-page-hat-title {
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--pk-hat-dark) !important;
  margin: 0 0 16px !important;
}

.pk-page-hat-title .pk-page-hat-accent,
.pk-page-hat-title .pk-blue-text {
  color: var(--pk-hat-blue);
}

.pk-page-hat-dek {
  margin: 0 auto 8px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--pk-hat-muted);
  font-family: "Open Sans", system-ui, sans-serif;
}

.pk-section-hat {
  margin: 0 auto 40px;
  padding: 0 20px;
  max-width: 720px;
}

.pk-section-hat .pk-page-hat-eyebrow {
  margin-bottom: 12px;
}

.pk-section-hat .pk-page-hat-title {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 12px !important;
}

.pk-section-hat .pk-page-hat-dek {
  font-size: 17px;
  max-width: 560px;
}

@media (max-width: 768px) {
  .pk-page-hat,
  .pk-page-hat--center,
  .pk-section-hat {
    padding: 24px 20px 4px;
    margin-top: 12px;
    text-align: center;
  }

  .pk-section-hat {
    margin-bottom: 28px;
  }
}
