/* market.css: Washington and California retailer availability answer hubs. */

.market-page {
  padding-bottom: var(--sp-64);
}

.market-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: var(--sp-32);
  margin-top: var(--sp-24);
  padding: clamp(48px, 6vw, 72px);
  border-radius: var(--radius-map);
  background: var(--pink-wash);
}

.market-hero__copy {
  align-self: center;
}

.market-hero .caption {
  margin: 0 0 var(--sp-24);
}

.market-hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 6.5vw, 84px);
  line-height: 0.92;
}

.market-hero__answer {
  max-width: 720px;
  margin: var(--sp-32) 0 0;
  color: var(--text-mid);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.market-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  margin-top: var(--sp-32);
}

.market-hero__card {
  align-self: end;
  padding: var(--sp-32);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
}

.market-hero__card-label {
  margin: 0 0 var(--sp-16);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.market-hero__card p:last-child {
  margin: 0;
  color: var(--text-mid);
  line-height: 1.65;
}

.market-content {
  max-width: 840px;
  margin: 0 auto;
}

.market-section {
  padding: var(--sp-64) 0;
  border-top: 1px solid var(--line);
}

.market-section:first-child {
  border-top: 0;
}

.market-section .caption {
  margin: 0 0 var(--sp-24);
}

.market-section h2 {
  max-width: 720px;
  margin-bottom: var(--sp-32);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
}

.market-section p,
.market-faq dd {
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.65;
}

.market-section p {
  margin: 0 0 var(--sp-24);
}

.market-section a:not(.op-btn),
.market-faq a {
  text-decoration-color: var(--hot-pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.market-metros {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  margin: var(--sp-32) 0 0;
  padding: 0;
  list-style: none;
}

.market-metros a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.market-guides {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-16);
}

.market-guide {
  padding: var(--sp-24);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  text-decoration: none;
}

.market-guide h3 {
  margin-bottom: var(--sp-12);
  font-size: 22px;
  line-height: 1.15;
}

.market-guide p {
  margin: 0;
  font-size: 15px;
}

.market-faq {
  margin: 0;
}

.market-faq__item {
  padding: var(--sp-24) 0;
  border-top: 1px solid var(--line);
}

.market-faq dt {
  font-size: 20px;
  font-weight: 700;
}

.market-faq dd {
  margin: var(--sp-12) 0 0;
}

.market-reviewed {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

@media (hover: hover) {
  .market-metros a:hover,
  .market-guide:hover {
    border-color: var(--hot-pink);
  }
}

@media (max-width: 768px) {
  .market-page {
    padding-bottom: var(--sp-48);
  }

  .market-hero {
    grid-template-columns: 1fr;
    gap: var(--sp-32);
    margin-top: var(--sp-16);
    padding: var(--sp-48) var(--sp-24);
    border-radius: var(--radius-card);
  }

  .market-hero h1 {
    font-size: 48px;
    line-height: 0.94;
  }

  .market-hero__answer {
    font-size: 20px;
  }

  .market-hero__actions {
    display: grid;
  }

  .market-hero__actions .op-btn {
    width: 100%;
  }

  .market-hero__card {
    padding: var(--sp-24);
  }

  .market-section {
    padding: var(--sp-48) 0;
  }

  .market-section h2 {
    margin-bottom: var(--sp-24);
    font-size: 38px;
  }

  .market-section p,
  .market-faq dd {
    font-size: 16px;
  }

  .market-guides {
    grid-template-columns: 1fr;
  }
}
