/* --- 1. CONTENT PAGES GENERAL STYLING (Premium SaaS Light Theme) --- */
.content-page-section {
  padding: 160px 0 100px 0;
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-color);
}

.content-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-header {
  text-align: center;
  margin-bottom: 60px;
}

.content-header h1 {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.content-header p.last-updated {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.content-body-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-premium);
  color: var(--text-secondary);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .content-body-card {
    padding: 32px 24px;
  }
  .content-header h1 {
    font-size: 2.4rem;
  }
}

.content-body-card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.content-body-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 14px;
}

.content-body-card p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.content-body-card ul, .content-body-card ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.content-body-card li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.content-body-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

.content-body-card a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.content-body-card a:hover {
  color: var(--primary-hover);
}

/* Alert box for refund conditions */
.refund-alert-box {
  background: rgba(57, 217, 138, 0.06);
  border: 1px solid rgba(57, 217, 138, 0.25);
  border-radius: var(--border-radius-md);
  padding: 24px;
  margin: 36px 0;
  color: var(--text-secondary);
}

.refund-alert-box h4 {
  color: #20b06b;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.refund-alert-box ol {
  margin-bottom: 0;
}

/* Changelog timeline graphics */
.changelog-timeline {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 20px;
}

.changelog-item {
  border-left: 2px solid rgba(91, 95, 255, 0.2);
  padding-left: 28px;
  position: relative;
  transition: border-color var(--transition-fast);
}

.changelog-item:hover {
  border-left-color: var(--primary-color);
}

.changelog-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 0 4px #FFFFFF;
  transition: all var(--transition-fast);
}

.changelog-item:hover::before {
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-glow);
}

.changelog-date {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.changelog-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.changelog-badge.added { background: rgba(57, 217, 138, 0.12); color: #20b06b; }
.changelog-badge.improved { background: rgba(91, 95, 255, 0.1); color: var(--primary-color); }
.changelog-badge.fixed { background: rgba(242, 153, 74, 0.12); color: #D57D2C; }

/* Press kit grids & cards */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

@media (max-width: 600px) {
  .press-grid {
    grid-template-columns: 1fr;
  }
}

.press-asset-card {
  background: #FAFBFD;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 28px;
  text-align: center;
  transition: all var(--transition-normal);
}

.press-asset-card:hover {
  background: #FFFFFF;
  border-color: rgba(91, 95, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.press-asset-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.press-asset-preview {
  height: 130px;
  background: #FAFBFD;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
