/* Text Section Component Specific Styles */

/* WYSIWYG Content Formatting */
.text-section-component .wysiwyg-content p {
  margin-bottom: 1rem;
}

.text-section-component .wysiwyg-content p:last-child {
  margin-bottom: 0;
}

.text-section-component .wysiwyg-content ul,
.text-section-component .wysiwyg-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.text-section-component .wysiwyg-content ul {
  list-style-type: disc;
}

.text-section-component .wysiwyg-content ol {
  list-style-type: decimal;
}

/* Link styling within WYSIWYG content */
.text-section-component .wysiwyg-content a {
  color: #16a1c0;
  text-decoration: underline;
  font-weight: bold;
  transition: opacity 0.2s ease;
}

.text-section-component .wysiwyg-content a:hover {
  opacity: 0.8;
}

/* Emphasis and strong elements */
.text-section-component .wysiwyg-content em {
  font-style: italic;
}

.text-section-component .wysiwyg-content strong {
  font-weight: bold;
}

/* Blockquote styling */
.text-section-component .wysiwyg-content blockquote {
  border-left: 4px solid #e5e7eb;
  padding-left: 1rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  font-style: italic;
  color: #6b7280;
}

/* Underlined text */
.text-section-component .wysiwyg-content .underline,
.text-section-component .wysiwyg-content u {
  text-decoration: underline;
}

/* Spacing for headings within WYSIWYG */
.text-section-component .wysiwyg-content h1,
.text-section-component .wysiwyg-content h2,
.text-section-component .wysiwyg-content h3,
.text-section-component .wysiwyg-content h4,
.text-section-component .wysiwyg-content h5,
.text-section-component .wysiwyg-content h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: bold;
  color: #171717;
}

.text-section-component .wysiwyg-content h1 {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-section-component .wysiwyg-content h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-section-component .wysiwyg-content h3 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .text-section-component .wysiwyg-content h1 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .text-section-component .wysiwyg-content h2 {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .text-section-component .wysiwyg-content h3 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
