.news-detail-wrapper {
  padding: 11.375rem 0 10rem 0;
}

.news-detail-wrapper .content-area .dynamic-modules .article-text h4{
  padding: 3.75rem 0 1.25rem;
  font-weight: 500;
}

.news-detail-wrapper .content-area .dynamic-modules .article-text ul{
  padding-left: 1.563rem;
}

.news-detail-wrapper .content-area .dynamic-modules .article-text ul li{
  color: var(--color-text-grey) !important;
}

.news-detail-wrapper .content-area .dynamic-modules .article-text ul li::marker{
  font-size: 0.625rem; /* 10px */
}

.news-detail-wrapper .content-area .dynamic-modules .article-text p{
  color: var(--color-text-grey) !important;
}

/* Layout */
.main-layout {
  display: grid;
  grid-template-columns: 18.75rem 1fr;
  column-gap: 10rem;
  row-gap: 3.75rem;
  position: relative;
  align-items: start;
}

.back-navigation {
  margin-top: 0;
  align-self: center;
}

.article-title {
  margin: 0;
  align-self: center;
}

/* Sidebar */
.sidebar-wrapper {
  position: -webkit-sticky;
  position: sticky;
  bottom: 2rem;
  align-self: end;
  height: max-content;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-label {
  color: var(--color-grey-2);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.sidebar-value {
  color: var(--color-blue-3);
  font-size: 1.125rem;
  font-weight: 500;
}

.share-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
}

.icon-button {
  width: 3.125rem;
  height: 3.125rem;
  border: 1px solid var(--color-light-blue);
  border-radius: 0.3125rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.icon-button:hover {
  background-color: var(--color-light-blue);
}

.icon-button svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--color-text);
}

/* Copy Link Button */
.copy-link-btn {
  position: relative;
  border: 1px solid var(--color-light-blue);
  background: transparent;
  padding: 0;
}

.copy-tooltip {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-light-blue);
  color: var(--color-text);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.copy-link-btn.copied .copy-tooltip {
  opacity: 1;
}

/* Content Area */
.content-area {
  display: flex;
  flex-direction: column;
}

.content-area > .article-title,
.content-area > .line-animation {
  margin-bottom: 3.75rem;
}

body.single-post .content-area > .hero-image-wrapper {
  margin-bottom: 3.75rem;
}

.hero-image-wrapper {
  width: 100%;
  display: block;
  height: 25rem;
}

.article-title {
  font-family: var(--font-family-heading);
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1.13;
  text-transform: capitalize;
}

.post-detail-divider,
.content-area > .line-animation,
.mobile-title-separator {
  width: 100%;
  height: 1px;
  background-color: var(--color-dark-blue);
  position: relative;
  display: block;
}

.mobile-title-separator {
  display: none;
}

.dynamic-module-separator {
  position: relative;
  width: 100%;
  display: block;
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.article-subtitle {
  font-family: var(--font-family-heading);
  font-size: 2.1875rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.news-detail-wrapper .subtitle-desktop {
  display: block;
}

.news-detail-wrapper .subtitle-mobile {
  display: none !important;
}

.article-text {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.5;
}

.article-text p + p {
  margin-top: 1rem;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.33;
  margin-bottom: 0.75rem;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-group {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-person {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.person-name {
  color: var(--color-blue-3);
  font-size: 1rem;
  text-decoration: none;
}

.person-info {
  color: var(--color-grey-2);
  font-size: 1rem;
}

a.person-info {
  text-decoration: none;
  transition: none;
}

a.person-info:hover,
a.person-info:focus {
  color: var(--color-grey-2);
}


.person-email {
  color: var(--color-grey-2);
  text-decoration: none;
  transition: color 0.2s;
}

.person-email:hover {
  color: var(--color-grey-2);
}

/* Responsive Styles */
@media (max-width: 64rem) {
  .news-detail-wrapper {
    padding: 7.813rem 0 4rem;
  }

  .main-layout {
    grid-template-columns: 1fr;
    gap: 2.188rem;
  }
  
  .mobile-title-separator {
    display: block;
  }

  .sidebar-wrapper {
    position: static;
    height: auto;
    order: 1;
  }
  
  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.875rem;
  }

  .sidebar-label {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
  }

  .sidebar-value {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  }
  
  .content-area {
    order: 2;
  }

  .content-area > .article-title {
    margin-bottom: 1.875rem;
  }

  .content-area > .line-animation {
    display: none;
  }
  
  .hero-image-wrapper {
    height: 9.188rem;
    margin-top: 2.188rem;
  }

  .article-title {
    font-size: 2.188rem;
  }
  
  .article-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
  }

  .news-detail-wrapper .subtitle-desktop {
    display: none !important;
  }
  
  .news-detail-wrapper .subtitle-mobile {
    display: block !important;
  }

  .about-title {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 48rem) {
  .hero-image-wrapper{
    height: 25rem;
  }
}

@media (max-width: 47.938rem) {
  .sidebar {
    flex-direction: column;
  }
}

/* Career Info & Sources Sections */
.mb-2\.5 {
  margin-bottom: 2.5rem;
}

.career-info-section, .career-sources-section {
  display: flex;
  flex-direction: column;
}

.career-sources-section {
  margin-top: 2rem;
}

.career-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.career-detail-item {
  display: grid;
  grid-template-columns: 274px 1fr;
  gap: 2.5rem; /* 40px */
}

.detail-label {
  color: var(--color-grey-2);
  font-size: 1rem;
  line-height: 1.5;
}

.detail-value {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.5;
}

.sources-list {
  display: flex;
  gap: 1.875rem;
  flex-wrap: wrap;
}

@media (max-width: 47.938rem) {
  .sources-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .sources-list .btn {
    width: 100%;
    justify-content: center;
  }

  .sources-list {
    gap: 1.25rem;
  
}
}

@media (max-width: 64rem) {
  .career-detail-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .mb-2\.5 {
    margin-bottom: 1.875rem;
  } 
}

@media (min-width: 100rem) {
  .main-layout {
    column-gap: 21rem;
  }
}

