/* Type4 static page layout (matches deployed one-product policy pages) */
.type4-static-page,
.type4-static-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.type4-static-page {
  --type4-primary: #0ea5e9;
  min-height: 100vh;
  background: #ffffff;
  color: #374151;
  line-height: 1.7;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.type4-static-page__header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 20px;
  background: var(--type4-primary);
  color: #ffffff;
}

.type4-static-page__brand-link,
.type4-static-page__back-link {
  color: #ffffff;
  text-decoration: none;
}

.type4-static-page__brand-link {
  font-size: 1rem;
  font-weight: 600;
}

.type4-static-page__back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 400;
}

.type4-static-page__back-link:hover {
  opacity: 1;
}

.type4-static-page__back-link-icon {
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.type4-static-page__main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.type4-static-page__title {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.type4-static-page__prose h2 {
  color: #1a1a2e;
  font-size: 1.2rem;
  margin: 28px 0 12px;
  font-weight: 600;
}

.type4-static-page__prose p {
  margin-bottom: 12px;
  color: #4b5563;
}

.type4-static-page__prose ul,
.type4-static-page__prose ol {
  margin: 0 0 16px 24px;
  color: #4b5563;
}

.type4-static-page__prose li {
  margin-bottom: 6px;
}

.type4-static-page__prose a {
  color: var(--type4-primary);
  text-decoration: none;
}

.type4-static-page__prose a:hover,
.type4-static-page__prose a:focus-visible {
  text-decoration: underline;
}

.type4-static-page__prose table {
  width: 100%;
  margin: 16px 0;
  border-collapse: collapse;
}

.type4-static-page__prose th,
.type4-static-page__prose td {
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.type4-static-page__prose th {
  background: #f9fafb;
  color: #1a1a2e;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.type4-static-page__prose td {
  color: #4b5563;
  font-size: 0.95rem;
}

.type4-static-page__prose em {
  color: #6b7280;
  font-style: italic;
}

.type4-static-page__prose strong {
  color: #1a1a2e;
}

.type4-static-page__footer {
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 24px 20px;
  text-align: center;
}

.type4-static-page__footer-links {
  text-align: center;
}

.type4-static-page__footer-links a {
  margin: 0 12px;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.type4-static-page__footer-links a:hover,
.type4-static-page__footer-links a:focus-visible {
  color: var(--type4-primary);
  text-decoration: underline;
}

.type4-static-page__footer p {
  margin-top: 12px;
  color: #9ca3af;
  font-size: 0.75rem;
}

@media (max-width: 600px) {
  .type4-static-page__main {
    padding: 24px 16px 60px;
  }

  .type4-static-page__title {
    font-size: 1.4rem;
  }
}
