/* Blog article / listing hero — Club editorial rhythm (generic, not Club markup).
   Fonts from site layout: --font-display (Cormorant), --font-body (Outfit). */

.ba-page {
  --ba-ink: var(--m29-ink, #1f2229);
  --ba-ink-deep: #111111;
  --ba-muted: var(--m29-muted, #4f535a);
  --ba-soft: #777777;
  --ba-line: rgba(31, 34, 41, 0.12);
  --ba-stone: #f6f5f1;
  --ba-white: #ffffff;
  --ba-gold: #b1a078;
  --ba-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ba-page: 1280px;
  --ba-article: 1280px;
  color: var(--ba-ink);
  font-family: var(--font-body, "Outfit", sans-serif);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  background: var(--ba-white);
}

.ba-page .ba-shell {
  width: min(calc(100% - 48px), var(--ba-page));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .ba-page .ba-shell {
    width: min(calc(100% - 32px), var(--ba-page));
  }
}

.ba-page .ba-eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-body, "Outfit", sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ba-soft);
}

.ba-page .ba-display {
  margin: 0;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ba-ink);
  text-wrap: balance;
}

.ba-page .ba-lead {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--ba-muted);
  max-width: 46ch;
}

.ba-page .ba-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  font-family: var(--font-body, "Outfit", sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition:
    background-color 200ms var(--ba-ease),
    color 200ms var(--ba-ease),
    transform 200ms var(--ba-ease);
}

.ba-page .ba-btn:hover {
  transform: translateY(-1px);
}

.ba-page .ba-btn--dark {
  background: var(--ba-ink-deep);
  color: var(--ba-white);
}

.ba-page .ba-btn--dark:hover {
  background: #2a2a28;
}

/* Hero (article + listing via _BlogHero) */
.ba-hero {
  position: relative;
  /* Floating header (#main-header) clearance */
  padding-top: 7rem;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(177, 160, 120, 0.12), transparent 55%),
    linear-gradient(160deg, #f6f5f1 0%, #eceae6 55%, #e4e0d8 100%);
  overflow: hidden;
}

.ba-hero__crumb {
  padding: 0.35rem 0 0;
}

.ba-hero__crumb .breadcrumbs {
  max-width: none;
}

.ba-hero__crumb .breadcrumbs__list {
  color: #8a8a8a;
}

.ba-hero__crumb .breadcrumbs__item a {
  color: #6b6b6b;
}

.ba-hero__crumb .breadcrumbs__item a:hover {
  color: #1a1a1a;
}

.ba-hero__crumb .breadcrumbs__item--current {
  color: #1a1a1a;
  font-weight: 500;
}

.ba-hero__copy {
  width: 100%;
  max-width: none;
  padding: 2rem 0 2.75rem;
}

.ba-hero--list .ba-hero__copy {
  max-width: 42rem;
  padding-bottom: 2.25rem;
}

.ba-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0 0 1.1rem;
  font-family: var(--font-body, "Outfit", sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ba-soft);
}

.ba-hero__meta time {
  color: var(--ba-muted);
}

.ba-hero__title {
  margin: 0;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ba-ink-deep);
  max-width: none;
  text-wrap: balance;
}

.ba-hero--list .ba-hero__title {
  max-width: 20ch;
}

.ba-hero__lead {
  margin-top: 1.25rem;
  max-width: none;
}

.ba-hero--article .ba-hero__lead.ba-lead {
  max-width: none;
}

.ba-hero__cover {
  width: 100%;
  margin: 0 0 2.75rem;
  overflow: hidden;
  background: #e4e0d8;
}

.ba-hero__cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 520px);
  object-fit: cover;
}

/* Article body */
.ba-article {
  padding: 3.5rem 0 1rem;
}

.ba-body {
  /* Hero .ba-shell ile aynı yatay ölçü (1280 + yan boşluk) */
  width: min(calc(100% - 48px), var(--ba-article));
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ba-muted);
}

@media (max-width: 640px) {
  .ba-body {
    width: min(calc(100% - 32px), var(--ba-article));
    font-size: 16px;
  }
}

.ba-body > *:first-child {
  margin-top: 0;
}

.ba-body p {
  margin: 0 0 1.35rem;
}

/* WYSIWYG bazen gövdeye H1 + inline font-size basar; gerçek H1 hero'dadır.
   Paragraflar tek okunaklı boyutta kalsın. */
.ba-body h1 {
  margin: 0 0 1.35rem;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
}

.ba-body :where(p, li, h1, td, th) :where(span, font)[style*="font-size"] {
  font-size: inherit !important;
}

.ba-body strong {
  color: var(--ba-ink);
  font-weight: 500;
}

.ba-body em {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-style: italic;
}

.ba-body h2 {
  margin: 3rem 0 1rem;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ba-ink-deep);
  text-wrap: balance;
}

.ba-body h3,
.ba-body h4 {
  margin: 2.25rem 0 0.85rem;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ba-ink);
}

.ba-body h4 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

.ba-body ul,
.ba-body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.ba-body li {
  margin: 0.35rem 0;
  padding-left: 0.25rem;
}

.ba-body li::marker {
  color: var(--ba-gold);
}

.ba-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 2px solid var(--ba-gold);
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  line-height: 1.45;
  color: var(--ba-ink);
}

.ba-body blockquote p {
  margin: 0;
}

.ba-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}

.ba-body a {
  color: var(--ba-ink);
  text-decoration: underline;
  text-decoration-color: rgba(177, 160, 120, 0.55);
  text-underline-offset: 0.18em;
}

.ba-body a:hover {
  text-decoration-color: var(--ba-gold);
}

.ba-body table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-size: 0.95em;
}

.ba-body td,
.ba-body th {
  border: 1px solid var(--ba-line);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

/* FAQ */
.ba-faq {
  padding: 4.5rem 0 4rem;
  background: var(--ba-white);
}

.ba-faq__head {
  max-width: 520px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.ba-faq__head .ba-display {
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  margin-bottom: 0.85rem;
}

.ba-faq__head .ba-lead {
  margin-inline: auto;
  max-width: 40ch;
}

.ba-faq-list {
  max-width: none;
  margin: 0 auto;
}

.ba-faq-row {
  position: relative;
  padding: 0 0 2.5rem 2rem;
  border-bottom: 1px solid var(--ba-line);
}

.ba-faq-row + .ba-faq-row {
  padding-top: 2.5rem;
}

.ba-faq-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ba-faq-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 1px;
  background: var(--ba-gold);
}

.ba-faq-row:not(:first-child)::before {
  top: calc(2.5rem + 0.55em);
}

.ba-faq-question {
  margin: 0 0 0.75rem;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.3rem, 2.3vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ba-ink);
}

.ba-faq-answer {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ba-muted);
  max-width: 62ch;
}

.ba-faq-answer p {
  margin: 0 0 0.75rem;
}

.ba-faq-answer p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ba-page .ba-btn:hover {
    transform: none;
  }
}
