/* Shared styles for Phase 2 commercial landing pages. */

.commercial-intro {
  font-size: 17px;
  color: var(--t500);
  line-height: 1.8;
}

.commercial-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 12px;
}

.commercial-checklist li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid var(--gray200);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #fff, var(--gray50));
  color: var(--t500);
  line-height: 1.7;
}

.commercial-checklist li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 20px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--f200), var(--f500));
  box-shadow: 0 0 0 5px rgba(34, 197, 94, .12);
}

.commercial-shot-grid,
.commercial-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 2rem 0;
}

.commercial-shot-card,
.commercial-link-card {
  background: #fff;
  border: 1px solid var(--gray200);
  border-radius: calc(var(--r-xl) + 2px);
  box-shadow: var(--sh-sm);
}

.commercial-shot-card {
  padding: 16px;
}

.commercial-shot-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
}

.commercial-shot-card figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--t400);
}

.commercial-link-card {
  padding: 20px 22px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.commercial-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: rgba(22, 163, 74, .24);
}

.commercial-link-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--f800);
  font-size: 18px;
}

.commercial-link-card span {
  display: block;
  color: var(--t500);
  line-height: 1.7;
}

.commercial-link-card em {
  display: inline-block;
  margin-top: 14px;
  color: var(--f600);
  font-style: normal;
  font-weight: 700;
}

.commercial-cta-box {
  margin-top: 48px;
}

@media (max-width: 960px) {
  .commercial-shot-grid,
  .commercial-link-grid {
    grid-template-columns: 1fr;
  }
}
