/* Content Pages Styling - Reusable Components */
/* Uses design system tokens for consistency with fallbacks */

/* ===== CONTENT CONTAINER ===== */
.sr-content-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.sr-content-container-wide {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
.sr-content-heading {
  color: var(--ink, #0f172a);
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.sr-content-subheading {
  color: var(--ink, #0f172a);
  margin: 32px 0 16px 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.sr-content-subheading-small {
  color: var(--ink, #0f172a);
  margin: 0 0 16px 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.sr-content-text {
  color: var(--muted, #475569);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1rem;
}

.sr-content-text-large {
  color: var(--muted, #475569);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.sr-content-text-spacious {
  color: var(--muted, #475569);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 1rem;
}

.sr-content-text-small {
  color: var(--muted, #475569);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.sr-content-muted {
  color: #64748b;
}

/* ===== UTILITIES ===== */
.sr-content-mt-16 { margin-top: 16px; }
.sr-content-mt-24 { margin-top: 24px; }

/* ===== CONTENT CARDS ===== */
.sr-content-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}

.sr-content-card h2,
.sr-content-card .sr-content-subheading {
  color: var(--ink, #0f172a);
  margin-bottom: 16px;
  margin-top: 0;
}

.sr-content-card p,
.sr-content-card .sr-content-text {
  margin-bottom: 0;
}

/* ===== CONTENT SECTIONS ===== */
.sr-content-section {
  margin-bottom: 40px;
}

.sr-content-section h2,
.sr-content-section .sr-content-subheading {
  margin: 24px 0 12px 0;
}

/* ===== CALL TO ACTION ===== */
.sr-content-cta {
  text-align: center;
  margin-top: 40px;
}

.sr-content-cta .btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary, #1E40AF);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.sr-content-cta .btn:hover {
  background: var(--primary-hover, #1E3A8A);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
  color: white;
  text-decoration: none;
}

.sr-content-cta .btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(30, 64, 175, 0.2);
}

/* ===== LINKS ===== */
.sr-content-link {
  color: var(--primary, #1E40AF);
  text-decoration: none;
  transition: color 0.15s ease;
}

.sr-content-link:hover {
  color: var(--primary-hover, #1E3A8A);
  text-decoration: underline;
}

/* ===== ALERT BOXES ===== */
.sr-content-info-box {
  background: #f0f9ff;
  border-left: 4px solid #0ea5e9;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.sr-content-info-box h3 {
  color: #0c4a6e;
  margin: 0 0 12px 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.sr-content-info-box p {
  color: var(--muted, #475569);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.sr-content-warning-box {
  background: #fef3c7;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.sr-content-warning-box p {
  color: #92400e;
  margin: 0;
  line-height: 1.8;
}

.sr-content-success-box {
  background: #d1fae5;
  border-left: 4px solid #10b981;
  padding: 24px;
  border-radius: 8px;
  margin: 32px 0;
}

.sr-content-success-box h3 {
  color: #065f46;
  margin: 0 0 12px 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.sr-content-success-box p {
  color: #047857;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

/* ===== LISTS ===== */
.sr-content-list {
  color: var(--muted, #475569);
  line-height: 2;
  margin-bottom: 32px;
  padding-left: 1.5rem;
}

.sr-content-list-small {
  color: #64748b;
  line-height: 2;
  font-size: 0.875rem;
  margin-bottom: 32px;
  padding-left: 1.5rem;
}

.sr-content-list-ordered {
  color: var(--muted, #475569);
  line-height: 2;
  margin-bottom: 32px;
  padding-left: 1.5rem;
  list-style-type: decimal;
}

.sr-content-list-ordered li {
  margin-bottom: 12px;
}

/* ===== HEADINGS ===== */
.sr-content-h3 {
  color: var(--ink, #0f172a);
  margin: 32px 0 16px 0;
  font-size: 1.25rem;
  font-weight: 600;
}

/* ===== FOOTER TEXT ===== */
.sr-content-footer-text {
  color: #94a3b8;
  font-size: 0.8125rem;
  margin-top: 40px;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sr-content-container,
  .sr-content-container-wide {
    padding: 0 16px;
    margin: 32px auto;
  }

  .sr-content-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .sr-content-subheading {
    font-size: 1.125rem;
    margin: 24px 0 12px 0;
  }

  .sr-content-card {
    padding: 24px;
    margin-bottom: 24px;
  }

  .sr-content-cta {
    margin-top: 32px;
  }

  .sr-content-cta .btn {
    padding: 12px 24px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
}

/* ===== VENDOR PREFIXES FOR BROWSER COMPATIBILITY ===== */
.sr-content-cta .btn {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.sr-content-cta .btn:hover {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.sr-content-cta .btn:active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

