/* common-sections.css
 * Basic styling for CommonSections component
 * - Vertical stacked sections
 * - Consistent spacing and scroll offset
 */

.common-sections {
  display: block;
  width: 100%;
}

.common-sections .cs-section {
  margin: 3rem 0;
  padding: 0;
  scroll-margin-top: var(--header-offset, 84px); /* adjust for sticky header */
}

.common-sections .cs-section-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 1rem;
  line-height: 1.4;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .common-sections .cs-section-title {
    font-size: 1.3rem;
  }
  .common-sections .cs-section {
    margin: 2rem 0;
  }
}
