/* Portal section chrome — headers, back link, coming-soon (hub cards in hub_cards.css) */

.prod-page-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.prod-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.prod-back--spacer {
  min-height: 0;
  visibility: hidden;
  pointer-events: none;
}

.prod-back:active {
  opacity: 0.7;
}

@media (hover: hover) and (pointer: fine) {
  .prod-back:hover {
    opacity: 0.85;
  }
}

.prod-page-header__mark {
  flex: 0 0 auto;
  height: 28px;
  width: auto;
  display: block;
}

.prod-page-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.prod-page-header__eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

.prod-page-header .title {
  margin-top: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--panel-dark, #262626);
}

.prod-section-head .section-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.prod-section-head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 16px;
}

.prod-section-head-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.prod-section-head-text {
  flex: 1;
  min-width: 0;
}

.prod-section-link {
  align-self: stretch;
  text-align: center;
}

.prod-section-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

.prod-svg {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.prod-svg--22 {
  width: 22px;
  height: 22px;
}

.prod-soon {
  text-align: center;
}

.prod-soon-phase {
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.prod-soon-title {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 4vw, 1.35rem);
  font-weight: 800;
}

.prod-soon-meta {
  margin-top: 12px;
}

.prod-soon-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.prod-soon-actions .btn {
  width: 100%;
}

@media (min-width: 520px) {
  .prod-section-head {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .prod-section-head-main {
    flex: 1;
    min-width: 0;
  }

  .prod-section-link {
    flex-shrink: 0;
    align-self: center;
    margin-left: auto;
  }

  .prod-soon-actions {
    flex-direction: row;
    justify-content: center;
  }

  .prod-soon-actions .btn {
    width: auto;
    min-width: 160px;
  }
}
