/* Unified Content Pages CSS - For donate, about, how-it-works, etc. */

/* Base Layout - Works for all content pages */
.content-page {
  min-height: 100vh;
  padding: 4rem 0;
}

.content-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-page .page-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

/* Page Header */
.content-page .page-header {
  margin-bottom: 3rem;
}

.content-page .page-header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-page .page-description {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* Intro Section */
.content-page .intro-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.content-page .intro-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Section Component - Universal */
.content-page .content-section {
  margin: 3rem 0;
}

.content-page .section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Icon Circle (Blue Arrow/Icon) */
.content-page .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #2563eb;
  border-radius: 50%;
  flex-shrink: 0;
}

.content-page .icon-circle svg,
.content-page .icon-circle i {
  color: white;
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
}

/* Emoji Icon */
.content-page .section-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Section Title */
.content-page .section-header h2,
.content-page .section-header h3,
.content-page .section-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

/* Section Content */
.content-page .section-content {
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 56px; /* Align with title (40px icon + 16px gap) */
}

.content-page .section-content > p {
  margin-bottom: 1rem;
}

.content-page .section-content > p:last-child {
  margin-bottom: 0;
}

.content-page .section-content strong,
.content-page .section-content b {
  font-weight: 600;
}

/* Lists in Section Content */
.content-page .section-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.content-page .section-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Info Cards/Boxes */
.content-page .info-card {
  background-color: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.content-page .info-card h5,
.content-page .info-card h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-page .info-card p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.content-page .info-card p:last-child {
  margin-bottom: 0;
}

.content-page .info-card ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.content-page .info-card ul li {
  margin-bottom: 0.5rem;
}

/* Info Card Variant: Plain */
.content-page .info-card.info-card--plain {
  background-color: rgba(71, 75, 77, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.content-page .info-card.info-card--plain .info-card-content ul {
  margin: 0;
  padding-left: 1.25rem;
}

.content-page .info-card.info-card--plain .info-card-content li {
  margin-bottom: 0.9rem;
  line-height: 1.6;
}

.content-page .info-card.info-card--plain .info-card-content li:last-child {
  margin-bottom: 0;
}

.content-page .info-card.info-card--plain .info-card-content strong {
  color: #e5e5e5;
  font-weight: 600;
}
/* Buttons */
.content-page .btn-primary,
.content-page .section-content .btn-primary,
.content-page a.btn-primary {
  display: inline-block;
  margin-top: 1rem;
  margin-right: 1rem;
  padding: 0.65rem 1.75rem;
  background-color: #2563eb;
  color: white !important;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.content-page .btn-primary:hover,
.content-page .section-content .btn-primary:hover,
.content-page a.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  text-decoration: none;
}

.content-page .btn-primary:active,
.content-page a.btn-primary:active {
  transform: translateY(0);
}

.content-page .btn-primary:focus,
.content-page a.btn-primary:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Links in Content */
.content-page .section-content a:not(.btn-primary),
.content-page a:not(.btn-primary),
.content-page .info-card a:not(.btn-primary) {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s;
}

.content-page .section-content a:not(.btn-primary):hover,
.content-page a:not(.btn-primary):hover,
.content-page .info-card a:not(.btn-primary):hover {
  color: #60a5fa;
  text-decoration: underline;
}

/* Selection Color */
.content-page ::selection {
  background-color: #2563eb;
  color: white;
}

.content-page ::-moz-selection {
  background-color: #2563eb;
  color: white;
}

.content-page hr {
  all: unset;
  display: block;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 2rem 0;
}

/* Quote/Closing Statement */
.content-page .closing-statement {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content-page .closing-statement p {
  color: #a0a0a0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-page {
    padding: 2rem 0;
  }
  
  .content-page .container {
    padding: 0 1.5rem;
    max-width: 900px;
  }
  
  .content-page .page-header h1 {
    font-size: 1.75rem;
  }
  
  .content-page .page-header {
    margin-bottom: 2rem;
  }
  
  .content-page .section-content,
  .content-page {
    padding-left: 0;
    margin-top: 1rem;
  }
  
  .content-page .section-header {
    flex-wrap: wrap;
  }
  
  .content-page .intro-section {
    margin-bottom: 2rem;
  }
  
  .content-page .intro-section p,
  .content-page .page-description {
    font-size: 0.9rem;
  }
  
  .content-page .info-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .content-page .page-header h1 {
    font-size: 1.5rem;
  }
  
  .content-page .section-header h2,
  .content-page .section-header h3,
  .content-page .section-header h4 {
    font-size: 1.1rem;
  }
  
  .content-page .icon-circle {
    width: 36px;
    height: 36px;
  }
  
  .content-page .icon-circle svg,
  .content-page .icon-circle i {
    width: 18px;
    height: 18px;
  }
  
  .content-page .btn-primary {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

/* Subscribe form (Download page) */
.subscribe-form {
  margin-top: 1.25rem;
}

.subscribe-form__inner {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.subscribe-form__field {
  flex: 1;
  position: relative;
}

.subscribe-form__input {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e5e5e5;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.subscribe-form__input::placeholder {
  color: rgba(160, 160, 160, 0.75);
}

.subscribe-form__input:focus {
  border-color: rgba(59, 130, 246, 0.75);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.subscribe-form__btn {
  height: 48px;
  padding: 0 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.55);
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.subscribe-form__btn:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

.subscribe-form__btn:active {
  transform: translateY(0);
}

.subscribe-form__hint {
  margin: 0.75rem 0 0;
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .subscribe-form__inner {
    flex-direction: column;
  }

  .subscribe-form__btn {
    width: 100%;
  }
}

.download-hero {
  width: 100%;
  margin: 0;
  padding: 0;
}

.download-hero_video {
  width: 100%;
  height: auto;
  max-height: 50vh;
  display: block;
  object-fit: contain;
  max-width: 1200px;
  margin: 0 auto;
  object-position: top;
}
