/* CONSENT TO TELEHEALTH PAGE STYLES */

.section-telehealth-hero {
  margin-top: 9.5rem;
  background: var(--color-white);
}

.section-telehealth-hero .central-container {
  display: flex;
  max-width: 103.8rem;
  flex-direction: column;
  gap: 1.2rem;
}

.section-telehealth-hero .heading-1 {
  text-align: center;
  font: var(--font-heading-1);
  color: var(--color-blue-900);
  margin: 0 0 1.2rem;
}

.section-telehealth-hero .last-updated {
  text-align: center;
  font: var(--font-sm);
  color: var(--color-gray-700);
  text-transform: uppercase;
  margin: 0;
}

.section-telehealth-content {
  background: var(--color-white);
}

.section-telehealth-content .central-container {
  max-width: 103.8rem;
}

.section-telehealth-content .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.6rem;
}

.section-telehealth-content .central-container {
  padding: 8.2rem 4rem;
}

.section-telehealth-content .content-section {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.section-telehealth-content .content-section.intro-section p {
  font: var(--font-md);
  font-weight: 500;
  color: var(--color-gray-800);
  line-height: 1.8;
  margin: 0;
}

.section-telehealth-content .content-section.intro-section .consent-statement {
  font: var(--font-md);
  color: var(--color-blue-900);
  line-height: 1.8;
  margin-top: 1.6rem;
  padding: 1.6rem;
  background: var(--color-gray-50);
  border-radius: var(--radius-secondary);
}

.section-telehealth-content .content-section p {
  font: var(--font-md);
  font-weight: 500;
  color: var(--color-gray-800);
  margin: 0;
}

.section-telehealth-content .content-section p strong,
.section-telehealth-content .content-section strong {
  font-weight: 600;
  color: var(--color-blue-900);
}

.section-telehealth-content .telehealth-consent-section.content-section p {
  font: 600 2rem / 140% "Manrope", sans-serif;
  color: var(--color-blue-900);
}

.section-telehealth-content .content-section a {
  color: var(--color-blue-900);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.section-telehealth-content .content-section ul {
  padding-left: 3rem;
}

.section-telehealth-content .content-section ul li {
  font: var(--font-md);
  font-weight: 500;
  color: var(--color-gray-800);
  margin: 0 0 2.4rem;
}

.section-telehealth-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.section-telehealth-content .content-section a:hover {
  color: var(--color-blue-700);
}

.section-telehealth-content .content-section h4.heading-4,
.section-telehealth-content .content-section h5.heading-5 {
  font: var(--font-heading-5);
  color: var(--color-blue-900);
  margin: 0;
}

.section-telehealth-content .content-section h5.heading-5 {
  margin-left: 0.5rem;
}

.section-telehealth-content .table-of-contents-section {
  margin: 0;
}

.section-telehealth-content .table-of-contents-section h5.heading-5 {
  margin-bottom: 2rem;
}

.section-telehealth-content .toc-list {
  list-style: none;
  padding-left: 0.5rem;
  counter-reset: toc-item;
}

.section-telehealth-content .toc-list li {
  font: var(--font-md);
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 2.4rem;
  counter-increment: toc-item;
  position: relative;
  padding-left: 3rem;
}

.section-telehealth-content .toc-list li:last-child {
  margin-bottom: 0;
}

.section-telehealth-content .toc-list li a {
  font: var(--font-md);
  font-weight: 600;
  color: var(--color-gray-800);
}

.section-telehealth-content .toc-list li::before {
  content: counters(toc-item, ".") ". ";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: var(--color-gray-800);
}

.section-telehealth-content .toc-list ol {
  list-style: none;
  padding-left: 0;
  margin-top: 2.4rem;
  counter-reset: toc-item;
}

.section-telehealth-content .toc-list ol li {
  padding-left: 4rem;
}

.section-telehealth-content .content-section .subsection {
  margin-left: 3.2rem;
}

.section-telehealth-content
  .content-section
  .subsection:not(:has(> ul:first-child))
  > h5.heading-5 {
  margin-bottom: 2.4rem;
}

.section-telehealth-content .content-section .subsection ul {
  margin-top: 2.4rem;
}

footer {
  top: 1.2rem;
}

/* Responsive Styles */
@media all and (max-width: 1038px) {
  .section-telehealth-hero .central-container,
  .section-telehealth-content .central-container {
    max-width: 100%;
  }
}

@media all and (max-width: 991px) {
  .section-telehealth-hero {
    padding-top: 4rem;
    padding-bottom: 2.4rem;
  }

  .section-telehealth-hero .central-container {
    padding: 0 2rem;
  }

  .section-telehealth-hero .heading-1 {
    font: var(--font-mobile-heading-1);
  }

  .section-telehealth-content {
    padding-top: 2.4rem;
    padding-bottom: 4rem;
  }

  .section-telehealth-content .central-container {
    padding: 4rem 2rem;
  }

  .section-telehealth-content .content-wrapper {
    gap: 2.4rem;
  }

  .section-telehealth-content .content-section h4.heading-4,
  .section-telehealth-content .content-section h5.heading-5 {
    font: var(--font-mobile-heading-5);
    color: var(--color-blue-900);
  }

  .section-telehealth-content .content-section h5.heading-5 {
    margin-left: 0;
  }

  .section-telehealth-content .content-section.intro-section p {
    font: var(--font-sm);
  }

  .section-telehealth-content .content-section p {
    font: var(--font-sm);
  }

  .section-telehealth-content .telehealth-consent-section.content-section p {
    font: 600 1.6rem / 140% "Manrope", sans-serif;
  }

  .section-telehealth-content .content-section ul {
    padding-left: 2rem;
  }

  .section-telehealth-content .content-section ul li {
    font: var(--font-sm);
    margin-bottom: 1.6rem;
  }

  .section-telehealth-content .table-of-contents-section {
    padding: 2rem;
  }

  .section-telehealth-content .toc-list {
    padding-left: 0.5rem;
  }

  .section-telehealth-content .toc-list li {
    font: var(--font-sm);
    padding-left: 3rem;
    margin-bottom: 1.6rem;
  }

  .section-telehealth-content .toc-list li a {
    font: var(--font-sm);
  }

  .section-telehealth-content .toc-list ol {
    padding-left: 0;
    margin-top: 1.6rem;
  }

  .section-telehealth-content .toc-list ol li {
    padding-left: 3rem;
  }

  .section-telehealth-content .content-section .subsection {
    margin-top: 1.6rem;
    padding-left: 1.2rem;
    margin-left: 0;
  }
}

@media all and (max-width: 600px) {
  .section-telehealth-hero .central-container {
    padding: 0 1.6rem;
  }

  .section-telehealth-content .central-container {
    padding: 2.4rem 1.6rem;
  }

  .section-telehealth-content .content-wrapper {
    gap: 2rem;
  }

  .section-telehealth-content .content-section {
    gap: 1.6rem;
  }

  .section-telehealth-content .table-of-contents-section {
    padding: 1.6rem;
  }

  .section-telehealth-content .toc-list li {
    padding-left: 1.6rem;
    margin-bottom: 1.2rem;
  }

  .section-telehealth-content .toc-list ol li {
    padding-left: 2.4rem;
  }

  .section-telehealth-content .content-section .subsection {
    padding-left: 1rem;
  }
}
