.pl-32 {
  margin-left: 32px;
}
/* Noah's Thoughts Section */
.noahs-thoughts {
  padding: 80px 0;
  background: var(--white);
}

.noahs-thoughts-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Main Content Area */
.noahs-thoughts-content {
  flex: 1;
  max-width: 900px;
}

.content-header {
  margin-bottom: 40px;
}

/* Doctor Profile Section */
.doctor-profile {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  padding-left: 32px;
}

.doctor-info {
  flex: 1;
}

.company-name {
  line-height: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.doctor-title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.profile-link:hover {
  opacity: 0 8;
}

.profile-link .arrow-icon {
  width: 14px;
  height: 14px;
}

.doctor-image {
  width: 400px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.doctor-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}
.noahs-thoughts-doctor-img {
  width: 100%;
  margin-bottom: 80px;
}
.noahs-thoughts-page-contents {
  width: calc(100% - 32px);
  margin-left: auto;
}
.noahs-thoughts-page-contents .doctor-profile {
  padding-left: 0;
  margin-bottom: 40px;
}
.noahs-thoughts-page-contents .doctor-profile h2 {
  text-decoration: underline;
}

/* Content Text */
.content-text {
  margin-bottom: 80px;
}

.content-text p {
  font-size: 16px;
  line-height: 28px;
  color: var(--text);
  margin-bottom: 24px;
}

.content-text p:last-child {
  margin-bottom: 0;
}

/* Related and Popular Pages Sections */
.related-pages,
.popular-pages {
  margin-bottom: 60px;
}

.popular-pages {
  margin-bottom: 0;
}

.related-pages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.popular-pages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.related-page-card,
.popular-page-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
  transition: all 0.3s ease;
}

.related-page-card:hover,
.popular-page-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 139, 148, 0.1);
}

.related-page-card .arrow-icon,
.popular-page-card .arrow-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--text);
  transition: fill 0.3s ease;
}

.related-page-card:hover .arrow-icon,
.popular-page-card:hover .arrow-icon {
  fill: var(--primary);
}

.noahs-policy-section {
  border: 5px solid var(--light-white);
  padding: 33px 48px;
  max-inline-size: calc(100% - 32px);
  margin-left: auto;
  border-radius: 8px;
  margin-bottom: 162px;
}

.noahs-policy-section li {
  display: flex;
  gap: 12px;
  font-size: 19px;
  line-height: 30px;
  color: var(--primary);
  font-weight: 700;
}

.nh-golden-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 9px;
  background: var(--golden);
  flex-shrink: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .doctor-profile {
    flex-direction: column;
    align-items: start;
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .doctor-profile {
    flex-direction: column;
    align-items: start;
    padding: 0;
  }

  .doctor-image {
    width: 100%;
    max-width: 400px;
  }

  .popular-pages-grid {
    grid-template-columns: 1fr;
  }
  .pl-32 {
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .noahs-thoughts {
    padding: 60px 0;
  }

  .doctor-profile {
    gap: 24px;
  }

  .company-name {
    font-size: 18px;
    line-height: 27px;
  }

  .doctor-title {
    font-size: 20px;
    line-height: 30px;
  }

  .content-text {
    margin-bottom: 60px;
  }

  .content-text p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .related-pages-grid {
    grid-template-columns: 1fr;
  }

  .related-pages,
  .popular-pages {
    margin-bottom: 40px;
  }

  .popular-pages {
    margin-bottom: 0;
  }
  .pl-32 {
    margin-left: 0px;
  }
}

@media (max-width: 600px) {
  .noahs-thoughts {
    padding: 40px 0;
  }

  .noahs-thoughts-wrapper {
    gap: 32px;
  }

  .sidebar-highlight {
    padding: 16px;
  }

  .highlight-icon {
    width: 40px;
    height: 40px;
  }

  .highlight-icon img {
    width: 24px;
    height: 24px;
  }

  .pl-32 {
    margin-left: 0px;
  }
}
