/*
 * blocks/statement/style.css
 * Editorial interlude / quote band.
 */

.statement {
  position: relative;
  overflow: hidden;
  padding: clamp(3.75rem, 6vw, 5.5rem) 0;
}

.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(180, 154, 108, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.statement__inner {
  position: relative;
  z-index: 1;
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
}

.statement__eyebrow {
  margin: 0 0 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(252, 248, 242, 0.74);
}

.statement.block--default,
.statement.block--soft {
  color: var(--wp--preset--color--text-primary, #2C1A12);
}

.statement.block--default {
  background-color: var(--wp--preset--color--bg-light, #F5F1EB);
}

.statement.block--soft {
  background-color: var(--wp--preset--color--bg-soft, #EAE3D9);
}

.statement.block--dark {
  background:
    linear-gradient(180deg, #2b100d 0%, #1a0a00 100%);
}

.statement.block--accent {
  background:
    linear-gradient(180deg, #7b2229 0%, #65171d 100%);
}

.statement .statement__title {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--wp--preset--color--bg-light, #F5F1EB);
}

.statement__text {
  max-width: 41rem;
  margin: 0 auto;
}

.statement__text p {
  margin-bottom: 0.9rem;
  color: rgba(245, 241, 235, 0.82);
  line-height: 1.85;
}

.statement__text p:last-child {
  margin-bottom: 0;
}

.statement__note {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.4rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(252, 248, 242, 0.66);
}

.statement__note::before,
.statement__note::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: rgba(252, 248, 242, 0.24);
}

.statement.block--default .statement__eyebrow,
.statement.block--soft .statement__eyebrow {
  color: rgba(139, 38, 53, 0.78);
}

.statement.block--default .statement__title,
.statement.block--soft .statement__title {
  color: var(--wp--preset--color--text-primary, #2C1A12);
}

.statement.block--default .statement__text p,
.statement.block--soft .statement__text p {
  color: var(--wp--preset--color--text-muted, #8A6D5A);
}

.statement.block--default .statement__note,
.statement.block--soft .statement__note {
  color: rgba(44, 26, 18, 0.58);
}

.statement.block--default .statement__note::before,
.statement.block--default .statement__note::after,
.statement.block--soft .statement__note::before,
.statement.block--soft .statement__note::after {
  background: rgba(44, 26, 18, 0.16);
}

@media (max-width: 768px) {
  .statement {
    padding: 3.25rem 0;
  }

  .statement__inner,
  .statement__text {
    max-width: 100%;
  }
}
