/* ============================================
   SECTION STANDARDS
   Generic section structure classes
   ============================================ */

/* --- Section Container --- */
.section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--navbar-height));
  padding: 2rem 0;
  padding-bottom: 3rem;
  box-sizing: border-box;
}

/* --- Section Header (Title Container) --- */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header--left {
  text-align: left;
}

.section-header--right {
  text-align: right;
}

/* --- Section Title --- */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- Section Subtitle --- */
.section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* --- Section Description --- */
.section-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* --- Section Content --- */
.section-content {
  width: 100%;
  max-width: 100%;
}

/* --- Section Footer (Actions) --- */
.section-footer {
  margin-top: 2rem;
  text-align: center;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 992px) {
  .section {
    padding: 1.5rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 1.25rem 0;
    min-height: auto;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }

  .section-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 1rem 0;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }

  .section-description {
    font-size: 0.9rem;
  }
}
