
body {
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
   max-width: 100vw;
  overflow-x: hidden;
  
}
* {
    box-sizing: border-box;
  }

 

  .jid-header {
    background-color: #f7f7f7;
    border-bottom: 1px solid #eee;
  }

  .jid-container {
    max-width: 1240px;
    margin: auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .jid-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .jid-logo img {
    height: 56px;
  }

  .jid-logo-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
  }

  .jid-nav-wrapper.jid-nav-element {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .jid-nav {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .jid-nav a,
  .jid-submenu-toggle {
    font-size: 15px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    font-family: "Rethink Sans", sans-serif;
  }

  .jid-nav a::after,
  .jid-submenu-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #3e4b39;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .jid-nav a:hover::after,
  .jid-submenu-toggle:hover::after {
    transform: scaleX(1);
  }

  .jid-submenu-wrapper {
    position: relative;
  }

  .jid-submenu-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-direction: column;
    min-width: 160px;
  }

  .jid-submenu-menu a {
    padding: 10px 16px;
    color: #000;
    text-decoration: none;
  }

  .jid-submenu-menu a:hover {
    background-color: #f5f5f5;
  }

  .jid-submenu-menu.show {
    display: flex;
  }

  .jid-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .jid-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
  }

  .jid-search-toggle svg {
    width: 18px;
    height: 18px;
    fill: #000;
  }

  .jid-search-input {
    width: 0;
    opacity: 0;
    padding: 0px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 10px;
    transition: all 0.3s ease;
  }

  .jid-search-wrapper.active .jid-search-input {
    width: 160px;
    opacity: 1;
  }

  .jid-alert-button {
    background-color: #3e4b39;
    color: white;
    border: none;
    border-radius: 48px;
    padding: 11px 26px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
  }

  .jid-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  /* MOBILE BREAKPOINT: hide desktop elements */
  @media (max-width: 992px) {
    .jid-nav-wrapper,
    .jid-search-wrapper,
    .jid-alert-button {
      display: none !important;
    }

    .jid-hamburger {
      display: block !important;
    }
  }
 .jid-alert-button-mobile {
    background-color: #3e4b39;
    color: white;
    border: none;
    border-radius: 48px;
    padding: 11px 26px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
  }
  /* MOBILE MENU */
  .jid-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .jid-mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #282828;
    color: white;
    padding: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: left 0.3s ease;
  }

  .jid-mobile-menu.active {
    left: 0;
  }

  .jid-mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .jid-mobile-logo-text {
    font-size: 15px;
    font-weight: 500;
    color: white;
  }

  .jid-mobile-nav a {
    color: white;
    text-decoration: none;
    padding: 10px 0;
    display: flex;
  flex-direction: column;
  gap: 12px;
  }

  .jid-mobile-submenu {
    display: none;
    flex-direction: column;
    padding-left: 10px;
  }

  .jid-mobile-submenu.show {
    display: flex;
  }

.article-release-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
}

.article-main {
  display: flex;
  flex-direction: row; /* Image on left */
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  flex-wrap: nowrap;
}

.article-main:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-main img {
  width: 100%;
  max-width: 50%;
  object-fit: cover;
  flex: 1 1 300px;
}

.article-main-content {
  flex: 1 1 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-main-content h4,
.article-card-content h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 4%;
  text-transform: uppercase;
  margin: 0;
}

.article-main-content small,
.article-card-content small {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  margin: 10px 0;
  display: block;
}

.article-main-content h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 123%;
  margin: 10px 0;
}

.article-main-content p {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
}

.article-main-content strong,
.article-card-content strong {
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  margin-top: 10px;
  display: block;
}

.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.article-card {
  display: flex;
  flex-direction: row; /* Image left, text right */
  flex: 1 1 48%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.article-card:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-card img {
  width: 100%;
  max-width: 35%;
  object-fit: cover;
  flex: 1 1 120px;
}

.article-card-content {
  flex: 1 1 65%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-card-content h3 {
  font-weight: 500;
  font-size: 18px;
  margin: 10px 0;
}

.article-card-content p {
  font-size: 13px;
  color: #666;
}

@media (max-width: 768px) {
  .article-release-section {
    padding: 0 20px;
  }

  .article-main {
    flex-direction: column;
  }

  .article-main img {
    max-width: 100%;
  }

  .article-grid {
    flex-direction: column;
  }

  .article-card {
    flex-direction: column;
  }

  .article-card img {
    max-width: 100%;
  }
}

.recent-article-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}

.recent-issue-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.recent-issue-left {
  flex: 1 1 347px;
  text-align: center;
}

.recent-issue-left img {
  width: 347px;
  height: 449px;
  object-fit: cover;
}

.recent-date {
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
}

.recent-volume {
  font-weight: 400;
  font-size: 16px;
  margin-top: 4px;
}

.recent-issue-right {
  flex: 1 1 600px;
  background-color: #3E4B39;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
}

.recent-issue-right h2 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 20px;
}

.recent-issue-right p {
  font-weight: 400;
  font-size: 18px;
  line-height: 163%;
}

.recent-issue-right a {
  color: #FFD700;
  display: inline-block;
  margin-top: 16px;
  text-decoration: none;
  font-weight: 600;
}

.recent-articles h2 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 40px;
}

.recent-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.recent-article-card {
  display: flex;
  flex-direction: column;
}

.recent-article-card img {
  width: 100%;
  height: auto;
  max-height: 398px;
  object-fit: cover;
  border-radius: 8px;
}

.recent-meta {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

.recent-article-card h3 {
  font-weight: 500;
  font-size: 18px;
  margin: 10px 0 6px;
}

.recent-author {
  font-weight: 500;
  font-size: 12px;
}

.recent-summary {
  font-weight: 400;
  font-size: 14px;
  color: #444;
  margin-top: 6px;
}

.recent-view-all {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.recent-view-all button {
  width: 201px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 75px;
  padding: 16px 36px;
  background: none;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .recent-issue-left img {
    width: 100%;
    height: auto;
  }

  .recent-issue-section {
    flex-direction: column;
  }

  .recent-issue-right {
    padding: 20px;
  }

  .recent-view-all button {
    width: auto;
  }
}

.recent-issue-link,
.recent-article-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease;
}

/* .recent-article-card-link:hover,
.recent-issue-link:hover {
  transform: scale(1.01);
} */

.recent-article-card:hover,
.recent-issue-section:hover {
  cursor: pointer;
}

.current-issue{

 
  background-color: #fff;

}
.heading-2-news {
        color: #161616;
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 40px;
        line-height: 44px;
        font-weight: 600;
        padding: 50px 0 20px 0px;
        display: flex;
        align-items: center;
        justify-content: left;
    }
  .jid-button-container {
      display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    min-width: 100%;
    padding: 50px 0px;
}
    

    .jid-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 36px;
      border: 1px solid #3E4B39;
      border-radius: 75px;
      background-color: transparent;
      color: #3E4B39;
      font-family: Arial, sans-serif;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap; 
      transition: background-color 0.3s, color 0.3s;
    }

    .jid-button:hover {
      background-color: #3E4B39;
      color: #fff;
    }

    .jid-button svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }
	.recent-article-title{
		    font-weight: 500;
    font-size: 18px;
    margin: 10px 0;
	}
  .jid-text-underline {
  text-decoration: underline;
  text-decoration-color: #3E4B39;
  text-underline-offset: 3px; /* optional: adjust spacing */
}
.recent-content-author strong {
font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    margin-top: 10px;
    display: block;
}

 .jid-separator {
          border-bottom: 1px solid #f7f7f7;
              padding: 10px 0px;
}


    .jid-current-wrapper {
      padding: 40px 0px;
    max-width: 90%;
    margin:0 auto;
    width: 100%;
    }

    .jid-current-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      margin-bottom: 60px;
      margin-top: 20px;
    }

    .jid-left {
      flex: 0 0 347px;
    }

    .jid-current-label {
    color: #161616;
    text-align: left;
    font-family: "Rethink Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 40px;
    margin: 0 0 50px 0;
    font-weight: 600;
    }

    .jid-cover-wrapper img {
      width: 347px;
      height: 449px;
      object-fit: cover;
      display: block;
    }

    .jid-cover-meta {
      display: flex;
      justify-content: space-between;
      margin-top: 10px;
      font-size: 18px;
      font-weight: 700;
      line-height: 17.75px;
      letter-spacing: 0.04em;
    }

    .jid-about {
      flex: 1 1 600px;
      background: #3E4B39;
      color: #fff;
      height: 449px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px 72px;
      margin-top: 103px;

    }

    .jid-about h2 {
      font-weight: 600;
      font-size: 28px;
      line-height: 44px;
      margin: 0 0 20px 0;
    }

    .jid-about p {
      font-weight: 400;
      font-size: 18px;
      line-height: 163%;
      margin: 0 0 20px 0;
    }

    .jid-scope-link {
      color: #F6C83B;
      font-weight: 600;
      text-decoration: none;
    }

   .jid-press-wrapper {
  max-width: 90%;
  margin: 0 auto;
      padding: 0 0px 60px;
      width: 100%;
}

    .jid-press-grid {
     display: grid;
  grid-template-columns: repeat(4, 1fr); /* Exactly 4 columns */
  gap: 30px;
  
    }

 .jid-press-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}


.jid-press-card img {
  width: 100%;
  /* max-width: 295px; */
  height: 180px;
  object-fit: cover;
  display: block;
  opacity: 1;
}



    .jid-press-card h4 {
      font-size: 18px;
      font-weight: 500;
      line-height: 115%;
      margin: 0;
              padding: 10px 0px 0;
    }

    .jid-press-card p:first-of-type {
      font-size: 12px;
      font-weight: 500;
      line-height: 20px;
      margin: 0;
    }

    .jid-press-card p:last-of-type {
      font-size: 14px;
      font-weight: 400;
      line-height: 22px;
      margin: 0;
    }
   .jid-current-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.jid-current-link:hover {
  opacity: 0.98; /* optional hover effect */
}
.jid-press-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.jid-press-link:hover {
  opacity: 0.9;
}
.search-label:hover{
      color: #1e4014 !important;
    text-decoration: underline;
    text-decoration-color: #374b2f;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px; 
    cursor: pointer;
}
.search-_1 >.group-122 >.all a:hover{
text-decoration: none !important;
}
  
    @media (max-width: 768px) {
      .jid-current-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
      }

      .jid-left,
      .jid-about {
        max-width: 100%;
        width: 100%;
      }

      .jid-about {
        height: auto;
        align-items: flex-start;
        padding: 20px;
      }

      .jid-cover-wrapper img {
        width: 100%;
        height: auto;
      }

      .jid-cover-meta {
        justify-content: space-between;
        width: 100%;
      }

      .jid-press-grid {
        grid-template-columns: 1fr;
      }
      .jid-press-card img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.search-label:hover{
      color: #4a713b;
    font-weight: 700;
    cursor: pointer;
}.frame-875 > div {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}


    }

.frame-79 a {
  position: relative;
  display: inline-block;
}

.frame-79 a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3E4B39;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.frame-79 a:hover::after {
  opacity: 0.5;
}
h2:hover,h3:hover,h4:hover,p:hover, .jid-separator div:hover{
 
    /* color: #3E4B39;
    text-decoration: underline; */
}
.jid-about p:hover {
  color:#ffffff;
}
 .frame-59 {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 16px;
  box-sizing: border-box;
  justify-content: center;
}

.frame-131,
.frame-1310 {
  flex: 1 1 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 0;
  border-bottom: 1px solid #ddd; /* ✅ light bottom border */
  background: none; /* ✅ remove background */
  overflow-wrap: break-word; /* ✅ prevent text overflow */
  word-break: break-word;
}
.frame-131,
.frame-1310 a h4{
  color: #161616;
        text-align: left;
        font-size: 18px;
        line-height: 161%;
        font-weight: 500;
}
.link {
  display: block;
  
  text-decoration: none;
   color: #000 !important;
   max-width: 100%;
    overflow: hidden;
        height: -webkit-fill-available;
}
.link-toc {
  display: block;
  
  text-decoration: none;
   color: #000 !important;
   max-width: 100%;
    overflow: hidden;
}
.published-on-30-jan-20252 {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.nina-a-ran-md-ms-emily-e-granger-md-g-brodland-md-et-al3,
.nina-a-ran-md-ms-emily-e-granger-md-g-brodland-md-et-al31 {
  font-size: 14px;
  color: #444;
  margin-top: 6px;
}

.sed-purus-massa-rutrum-egestas-duis-nunc-quis-eu-elit-massa-et-curabitur-etiam-laoreet-sed-id-pulvinar,
.scelerisque-non-sit-justo-sapien-mollis-auctor-lectus-habitant-faucibus-elit-ullamcorper-sed-et-eu-eget-dignissim,
.pellentesque-aliquet-mattis-ut-amet-morbi-dolor-leo-eu-in-sed-quam-sit-nisi-quam-faucibus-feugiat-dui-massa {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  line-height: 1.4;
}
.frame-875 > div {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.article-superscript{
  color:rgb(255, 28, 12);
  font-size: 14px;
}
.article-superscript:hover{
  color:rgb(255, 28, 12);
  cursor:pointer;
  background-color: rgba(255, 0, 0, 0.315);
}
.article-frame-191 {
        flex: 0 1 30%;
        display: flex;
        flex-direction: column;
        gap: 2px;
        align-items: center;
        min-width: 0; /* important: prevents overflow from sidebar too */
        box-sizing: border-box;
        /* background: #f7f7f7; */
    padding: 52px 0px;
    }
.frame-1752 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
    width:100%;
}
.article-frame-184 {
      display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: space-around;
    flex-shrink: 0;
    position: relative;
    width: 100%;
}
/* Base Modal Styles */
.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  max-width: 90%;
  margin: auto;
  box-sizing: border-box;
  position: relative;
}

/* Close Button */
.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

/* Flex Container */
#flex {
  display: flex;
  justify-content: left;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Social Share Button Images */
.social-share img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-share img:hover {
  transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .article-frame-204 {
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: absolute;
    margin-top: 25px;
}
    .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer__copyright {
    display: block;
    font-size: 14px;
  }
  .footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer__nav a,
  .footer__nav a:visited {
    color: inherit;
    text-decoration: none;
  }
  .footer__nav a {
    font-size: 14px;
  }
  .modal-content {
    width: 90%;
    max-width: 100%;
    padding: 15px;
  }

  #flex {
    gap: 10px;
    justify-content: center;
  }

  .social-share img {
    width: 36px;
    height: 36px;
  }
}

/* Make <table-wrap> scrollable */
table-wrap {
  display: block;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
}

/* Ensure the <table> inside takes minimum width */
table-wrap table {
  width: 100%;
  min-width: 600px; /* Adjust as needed */
  border-collapse: collapse;
  box-sizing: border-box;
}

/* Optional: Clean styling */
table-wrap table th,
table-wrap table td {
  padding: 8px;
  white-space: nowrap; /* Prevent cell content from wrapping */
}

/* Optional: Smaller font and spacing on mobile */
@media (max-width: 767px) {
  table-wrap table {
    font-size: 14px;
  }

  table-wrap table th,
  table-wrap table td {
    padding: 6px;
  }
}
/* Base Styles (Desktop & General) */
.article-frame-45 {
    background: #3e4b39;
    border-radius: 48px;
    padding: 11px 26px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    height: 36px;
    position: relative;
    width: 84%;
    margin: 2%;
    float: left;
    box-sizing: border-box;
}

.level-3{
display: none !important
  }
    
    /* Styles for desktop */
@media (min-width: 768px) {

.mobile {
	display: none;
}
.desktop {
	display: block;
}
.mobileinner {
	display: none;
}
.desktopinner {
	display: block;
    background-color: #ffffff;
    float: left;
    width: 100%;
    min-height: 100vh;
        box-sizing: border-box;
}
}

/* Styles for mobile */
@media (max-width: 767px) {
.desktop {
	display: none;
}
.mobile {
	display: block;
}
.desktopinner {
	display: none;
}
.mobileinner {
	display: block;
    background-color: #fff;
    float: left;
    width: 100%;
}
}

 .article-frame-176 {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      font-size: 14px;
    }

    .article-frame-180 {
      height: 0;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      padding: 0;
      margin: 0;
      transition:
        height 0.4s ease,
        opacity 0.3s ease,
        visibility 0.3s ease,
        padding 0.3s ease,
        margin 0.3s ease;
    }

    .article-frame-180.open {
      opacity: 1;
      visibility: visible;
      padding: 10px 0;
      margin: 10px 0;
    }

    .article-vector-232 {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
    }

    .article-vector-232.rotate {
      transform: rotate(180deg);
    }

    .article-frame-178 {
      
      padding: 10px 0px;
      
      font-size: 14px;
    }

    .article-editors {
      font-weight: bold;
    }
    .frame-1752 img {
    max-width: 70%;
    height: auto;
    display: block;
    cursor: pointer;
    border-radius: 5px;
  }

  .jid-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .jid-lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 6px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  }
    .toc-title:hover {
      color: #374b2f;
      cursor: pointer;
    }

/* Flex wrapper */
.menu-wrapper {
  display: flex;
  justify-content: center;
}

/* Flex menu row */
.menu-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

/* Links */
.menu-row a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  padding: 8px 12px;
  transition: color 0.2s;
  white-space: nowrap;
}

/* Underline hover animation */
.menu-row a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #374B2F; /* underline color */
  transition: width 0.3s ease-in-out;
}

.menu-row a:hover {
  color: #374B2F;
}

.menu-row a:hover::after {
  width: 100%;
}

/* Responsive Toggle */
@media (max-width: 768px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}
.jid-current-label:hover, .heading-2-news:hover{
  color: rgb(0, 0, 0) !important;
  text-decoration: none !important;

}
.article-main-content h2:hover,
.article-card-content h3:hover, 
.recent-article-title:hover,
.article-card-content p:hover,
.jid-press-card h4:hover,
.underline:hover {
  text-decoration: underline;
  text-decoration-color: #374b2f; /* green underline */
  text-decoration-thickness: 1px; /* optional: make it bolder */
  text-underline-offset: 4px;     /* optional: add spacing from text */
}
  .eb-container {
          max-width: 90%;
    margin: 64px auto 10px auto;
    padding: 0 0px;
    width: 100%;
    }
    .eb-heading-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }
    .eb-heading-section h2 {
      font-size: 40px;
      font-weight: 600;
      margin: 0;
    }
    .eb-heading-section a {
      display: flex;
      align-items: center;
      font-weight: 500;
      font-size: 18px;
      text-transform: uppercase;
      text-decoration: none;
      color: #000;
    }
    .eb-heading-section a img {
      margin-left: 8px;
      vertical-align: middle;
    }
    .eb-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    @media (max-width: 992px) {
      .eb-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 576px) {
      .eb-grid {
        grid-template-columns: 1fr;
      }
    }
    .eb-frame {
      text-align: center;
    }
    .eb-frame img {
      width: 100%;
      max-width: 100%;
      height: auto;
      margin: 0 auto 10px;
    }
    .eb-sub .eb-name {
      font-weight: 600;
      margin: 8px 0 4px;
      font-size: 20px;
    }
    .eb-sub .eb-role {
      color: #555;
      font-size: 15px;
      margin-bottom: 4px;
    }
    .eb-sub .eb-desc {
      font-size: 14px;
      color: #777;
    }
    .eb-institution {
  font-family: 'Rethink Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.eb-location {
  font-family: 'Rethink Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .search-_1 {
	float: left;
	width: 100%;
}
.search-_2 {
	float: left;
	width: 100%;
}
    .icon-menu {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        position: relative;
        overflow: visible;
        aspect-ratio: 1;
        left: inherit;
    }
 

}

/* Desktop */
@media (min-width: 992px) {
  .article-_3 {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        gap: 30px;
        box-sizing: border-box;
        overflow: hidden;
    }

  .search-_1 {
	float: left;
	width: 70%;
}
.search-_2 {
	float: left;
	width: 25%;
}
.search-frame-157 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 80%;
    position: relative;
    left: 25px;
}
.frame-875 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        justify-content: flex-start;
        position: absolute;
        left: 400px;
        top: calc(50% - -86.5px);
        width: 100%;
        max-width: 220px;
    }


  
}
table-wrap > object-id[pub-id-type="publisher-id"] {
  display: none;
}

    .jid-dropdown-wrapper {
      position: relative;
      display: inline-block;
      width: 100%;
      max-width: 359px;
      margin: 40px auto;
      font-family: 'Rethink Sans', sans-serif;
    }

    .jid-dropdown-btn {
      width: 100%;
      padding: 11px 26px;
      background-color: #3D4A39;
      color: white;
      border: none;
      border-radius: 48px;
      font-size: 16px;
      font-weight: 500;
      line-height: 150%;
      cursor: pointer;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .jid-dropdown-btn::after {
      content: "▾";
      margin-left: 8px;
      font-size: 14px;
    }

    .jid-dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      z-index: 999;
      margin-top: 8px;
      overflow: hidden;
          height: fit-content !important;
    }

    .jid-dropdown-content a {
      display: block;
      padding: 12px 20px;
      text-decoration: none;
      color: #333;
      font-size: 15px;
      transition: background-color 0.2s;
    }

    .jid-dropdown-content a:hover {
      background-color: #f2f2f2;
    }

    .jid-show {
      display: block;
    }

    @media (max-width: 400px) {
      .jid-dropdown-btn {
        font-size: 15px;
        padding: 10px 20px;
      }

      .jid-dropdown-content a {
        font-size: 14px;
        padding: 10px 16px;
      }
    }

   
.toc-title.level-1 > .link:hover {
   color: #1e4014 !important;
       text-decoration: underline;
    text-decoration-color: #374b2f;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}
.recent-cta{
color: #E2AD07;
}
  
    .hiltpics-container {
      background: #f7f7f7;
      padding: 40px 0 75px 0;
    }
    .hiltpics-wrapper {
      max-width: 90vw;
      margin: 0 auto;
    }

    /* Heading */
    .hiltpics-title {
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 50px;
    }

    /* Grid */
    .hiltpics-grid {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: nowrap; /* keep 3 columns on one row */
    }

    /* Columns */
    .hiltpics-col-left {
      flex: 1 1;
      max-width: 36%;
      box-sizing: border-box;
    }
    .hiltpics-col-center {
      flex: 1;
      max-width: 38%;
      display: flex;
      flex-direction: row;
      gap: 20px;
      align-items: flex-start;
      box-sizing: border-box;
    }
    .hiltpics-col-right {
      flex: 1 1 260px;
      max-width: 33%;
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
      box-sizing: border-box;
    }

    /* Card base */
    .hiltpics-card,
    .hiltpics-textcard {
      display: block;
      text-decoration: none;
      color: inherit;
      width: 100%;
    }

    /* Image wrapper */
    .hiltpics-card-img-wrapper {
      position: relative;
    }
    .hiltpics-card-img {
      width: 100%;
      height: 360px;
      display: block;
    }
    .hiltpics-card-img:hover {
    opacity: 0.9;
}
.hiltpics-center-card-img:hover {
    opacity: 0.9;
}
    /* Overlay */
    .hiltpics-card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: white;
    }

    /* Overlay text elements */
    .hiltpics-overlay-label {
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 5px;
    }
    .hiltpics-overlay-date {
      font-size: 13px;
    margin-bottom: 10px;
    color: #ffffff;
    opacity: 0.6;
    }
    .hiltpics-overlay-title {
      font-size: 20px;
      font-weight: 500;
      line-height: 1.3;
    }
    .hiltpics-overlay-authors {
      font-size: 13px;
      margin-top: 10px;
    }

    /* Center-column cards */
    .hiltpics-center-card {
      text-decoration: none;
      color: inherit;
      width: 100%;
    }
    .hiltpics-center-card-img {
      width: 100%;
      height: 212px;
      display: block;
    }
    .hiltpics-center-card-content {
      padding: 10px 0;
    }
    .hiltpics-center-card-label {
 
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 5px;
              color: #161616;
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 12px;
        line-height: 23px;
        letter-spacing: 0.06em;
        font-weight: 700;
    }
    .hiltpics-center-card-date {
 
      margin-bottom: 8px;
      color: #161616;
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 12px;
        line-height: 18px;
        font-weight: 400;
        opacity: 0.6;
    }
    .hiltpics-center-card-title {
      font-size: 16px;
      font-weight: 600;
      line-height: 1.4;
    }
    .hiltpics-center-card-authors {
      font-size: 13px;
      margin-top: 0px;
    }

    /* Right-column text cards */
    .hiltpics-textcard-content {
      padding: 0px 0;
    }
    .hiltpics-textcard-date {

      margin-bottom: 6px;
      color: #161616;
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 12px;
        line-height: 17px;
        font-weight: 400;
        opacity: 0.6;
    }
    .hiltpics-textcard-title {
      font-size: 16px;
    color: #161616;
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
       
        line-height: 131%;
        font-weight: 500;
    }
    .hiltpics-textcard-authors:hover,.hiltpics-textcard-title:hover, .hiltpics-center-card-title:hover,.hiltpics-overlay-title :hover,.hiltpics-center-card-authors :hover  {
      text-decoration: underline;
    text-decoration-color: #374b2f;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    }
    .hiltpics-textcard-authors {
      font-size: 13px;
      margin-top: 0px;
      color: #161616;
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 11px;
        line-height: 18px;
        font-weight: 400;
     
    }
   .paddingleft {
    padding-left: 0px !important;
   }
   .paddingright {
    padding-right: 0px !important;
   }
   .group-169 div:hover{
  color: #1e4014 !important;
    text-decoration: underline;
    text-decoration-color: #374b2f;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px; 
    
   }
   .clink div {
  color: inherit;
}

.clink:hover {
  color: #294e1e !important
    
}.article-frame-186 {
  position: relative;
  display: inline-block;
}

/* Hover parent to show submenu */
.article-frame-186:hover .share-dropdown {
  display: block;
    height: auto;
}

.article-cite {
  display: inline-block;
  padding: 10px;
  cursor: pointer;
}

.share-dropdown {
  display: none;
  position: absolute;
  top: 100%;      /* Place right below the Share button */
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  width: 180px;
  padding: 4px 0;
  z-index: 9999;

  /* Fix: avoid accidental gap hover break */
  pointer-events: auto;
}

.share-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
}

.share-dropdown a:hover {
  background: #f0f0f0;
}

.share-dropdown img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  /* filter: brightness(0) saturate(100%); */
}


.review-article {
      display: inline-block;
    padding-top: 20px;
    font-family: "Rethink Sans", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #161616;
    vertical-align: middle;
}

/* Style for content after the <br> (e.g., the publication date) */
.review-article .published-date {
    display: block;
    margin-top: 0.25rem;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: normal;
    opacity: 0.6;
    color: inherit;
    padding-top: 7px;
    text-transform: capitalize;
}
.group-126 > .group-122 > .frame-87 > a:hover,.group-122 > a:hover, .frame-117>a:hover {
  text-decoration: none !important;
}
/* Animation for hover on the entire container of each icon+text block */
.article-frame-186:hover .article-fi-1358023,
.article-frame-186:hover .article-cite,
.article-frame-185:hover .article-group,
.article-frame-185:hover .article-cite {
  transform: scale(1.05);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Optional: add a slight text color change */
.article-frame-186:hover .article-cite,
.article-frame-185:hover .article-cite {
  color: #0d3321; /* or any highlight color */
}

/* Optional: cursor change */
.article-frame-186:hover,
.article-frame-185:hover {
  cursor: pointer;
}
.issue-group-122 {
      border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    gap: 32px;
    box-sizing: border-box;
    padding: 30px 0px;
}

.image14 {
  width: 350px;
  height: 100%;
  object-fit: cover; /* fills entire container without distortion, crops if needed */
  display: block;
  flex-shrink: 0;
}

/* Right side content */
.frame-117 {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
}

/* Mobile: stack layout */
@media (max-width: 768px) {
  .footer{
        background: #f7f7f7;
    padding: 50px 0;
    box-sizing: border-box;
    clear: inline-start;
  }
      .frame-131 {
        
        padding: 25px 0px !important;
    }

        .frame-1310 {

        padding-left: 0;
        padding-right: 0;
    }
}
  .article-card-content {
   
    padding: 20px 20px !important
}
.article-main-content {
   
    padding: 20px 20px !important;
}
  .group-122 {
    flex-direction: column;
    align-items: stretch;
  }

  .image14 {
    /* width: 100%; */
    height: auto;
    object-fit: contain;
  }

  .frame-117 {
    width: 100%;
  }
}
.abstract-content {
  color: #161616;
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 14px;
        line-height: 150%;
        font-weight: 400;
        position: relative;
        padding-top: 12px;
}
.abstract-published-date{
          color: #161616;
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 14px;
        line-height: 150%;
        font-weight: 400;
        position: relative;
        padding-top: 12px;
        opacity: 0.6;
}
.current-issue-container {
  display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}
.group-144 {
        width: auto !important;
        height: 548px;
        position: relative;
        float: left;
    }

    .group-116 {
        width: auto !important;
        height: 500px;
        position: relative;
        float: left;
    }
     table {
    border-collapse: collapse; /* removes double borders */
    width: 100%;
  }

  table, th, td {
    border: 1px solid black; /* 1px border for table and cells */
  }

  th, td {
    padding: 8px;
    text-align: left;
  }
  

/* Shared: center login and lost password pages */
#main-content.page_login,
#main-content.page_lost_password {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

/* Shared form container */
.pkp_form.login,
.pkp_form.lost_password {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font: inherit;
}

/* Inherit fonts and box-sizing */
.pkp_form.login *,
.pkp_form.lost_password * {
  font: inherit;
  box-sizing: border-box;
}

/* Input fields */
.pkp_form.login .form-control,
.pkp_form.lost_password .form-control {
  width: 100% !important;
  padding: 10px 10px 10px 5px !important; /* Left padding 5px */
  border: 1px solid #ccc !important;
  border-radius: 4px;
  margin-bottom: 15px;
  background-color: #fff;
  color: #000 !important;
  margin-left: 0px !important
}

/* Placeholder text */
.pkp_form.login .form-control::placeholder,
.pkp_form.lost_password .form-control::placeholder {
  color: #999;
  opacity: 1;
}

/* Labels */
.pkp_form.login .form-group label,
.pkp_form.lost_password .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* Links */
.pkp_form.login .form-group a,
.pkp_form.lost_password .form-group a {
  color: #1a0dab;
  text-decoration: underline;
  font-size: 14px;
}

/* Checkbox */
.pkp_form.login .checkbox {
  margin-bottom: 15px;
}

/* Buttons wrapper */
.pkp_form.login .buttons,
.pkp_form.lost_password .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Common button style */
.pkp_form.login .btn,
.pkp_form.lost_password .btn {
  color: #fff !important;
  border: 1px solid #ccc;
  border-radius: 48px;
  padding: 11px 26px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* Primary button (Login / Reset Password) */
.pkp_form.login .btn-primary,
.pkp_form.lost_password .btn-primary {
  background-color: #3e4b39; /* Dark green */
}

/* Default button (Register) */
.pkp_form.login .btn-default,
.pkp_form.lost_password .btn-default {
  background-color: #6c757d; /* Gray */
}

/* Breadcrumbs hidden */
.cmp_breadcrumbs {
  display: none;
}

/* Center and style alert above the form (Lost Password only) */
#main-content.page_lost_password .alert.alert-info {
  max-width: 400px;
  width: 100%;
  margin-bottom: 20px;
  background-color: #e9f3ff;
  color: #084298;
  padding: 12px 16px;
  border-radius: 6px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* === Page Layout === */
#main-content.page_register {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;

  background-color: #f5f5f5;
  box-sizing: border-box;
}

/* === Form Styling === */
#main-content.page_register form.pkp_form.register {
  width: 100%;
  max-width: 500px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font: inherit;
      margin: 92px 0px !important;
}

/* Apply styles to all elements within form */
#main-content.page_register form.pkp_form.register * {
  font: inherit;
  box-sizing: border-box;
}

/* === Input + Select Fields === */
#main-content.page_register .form-control {
  width: 100% !important;
  padding: 10px 10px 10px 5px !important; /* left padding for placeholder */
  border: 1px solid #ccc !important;
  border-radius: 4px;
  margin-bottom: 15px;
  background-color: #fff;
  color: #000 !important;
  margin-left: 0px !important;
  margin: 20px 0;
}

/* Placeholder text */
#main-content.page_register .form-control::placeholder {
  color: #999;
  opacity: 1;
}

/* === Labels === */
#main-content.page_register label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Optional hint or required mark */
#main-content.page_register .form-control-required,
#main-content.page_register .sr-only {
  font-weight: normal;
  font-size: 13px;
  color: #888;
}

/* === Buttons === */
#main-content.page_register .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

#main-content.page_register .buttons .btn {
  color: #fff !important;
  border: 1px solid #ccc;
  border-radius: 48px;
  padding: 11px 26px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* Register button */
#main-content.page_register .buttons .btn-primary {
  background-color: #3e4b39; /* Dark green */
}

/* Login button */
#main-content.page_register .buttons .btn-default {
  background-color: #6c757d; /* Gray */
}

/* === Fieldsets and Legends === */
#main-content.page_register fieldset {
  border: none;
  margin-bottom: 25px;
  padding: 0;
}

#main-content.page_register legend {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

/* === Footer clean-up (optional) === */
#main-content.page_register .footer {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #999;
}
.abstract-subtitle{
          color: #161616;
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 14px;
        line-height: 150%;
        font-weight: 400;
        position: relative;
        padding-top: 0px;
       
}

@media (max-width: 768px) {
  /* Only move the "Get our E-Alerts" button to bottom */
.jid-mobile-nav {
  display: flex;
  flex-direction: column;
  height: 100%;  /* let nav fill parent */
}

.jid-mobile-nav .jid-alert-button {
  margin-top: auto;   /* pushes ONLY this button to bottom */
  width: 100%;
  text-align: center;
          display: block !important;
}
.article-frame-183{
  width: 100% !important;
}
  .frame-212 {
    margin-top: 0px !important;
            gap: 0px !important;
  }
   .frame-6 {
gap:7px !important;
  }
  
.heading-2-news{
    padding: 33px 0 39px 0px !important;
    margin: 0px !important;
}
 .frame-131 a h4, .frame-1310 a h4  {
    margin:10px 0px !important;
  }
    .issue-rectangle {
        width: 100% !important;
    }
  .article-frame-191{
        padding: 11px 30px;
  }
      .nina-a-ran-md-ms-emily-e-granger-md-g-brodland-md-et-al31{
        line-height: 23px !important;

}
.published-on-30-jan-2025233 {
          opacity: 0.6 !important;
        padding-bottom: 10px !important;
} 
.vitae-cursus-eros-enim-eget-auctor-suscipit-vivamus-nullam-amet{
  text-decoration: none !important;
}
.component-48 {
        min-height: auto !important;
        padding-bottom: 0px !important;
    }
    .title-mobile-only{
      margin-bottom: 0px !important;
    }
    .jid-alert-button {
        display: block !important;
    }


.frame-87{
border-bottom: 1px solid #eee;
}
    .frame-1310 {
                      padding: 0px 0px 20px 0px !important;
    }
    .frame-112{
        background: unset !important;
    }
  .toc-title{
            color: #161616;
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 16px;
        line-height: 23px;
        font-weight: 400;
        opacity: 0.6;
        position: relative;
        align-self: stretch;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
                padding: 6px 0px;
  }
  .frame-1310 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        justify-content: flex-start;
        flex-shrink: 0;
        position: relative;
        padding-left: 12px;
        padding-right: 12px;
    }
  .frame-59 {
    flex-wrap: wrap;
    padding: 0px;
    box-sizing: border-box;
}
.frame-6{
          top: 178px !important;
        left: 14px !important;
}
      .frame-131 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        justify-content: flex-start;
        flex-shrink: 0;
        position: relative;
       padding: 0px 0px 20px 0px !important;
    }
  .article-heading-2-news {
    color: #161616;
    text-align: center;
    font-size: 26px;
    line-height: 117%;
    font-weight: 600;
    position: relative;
    width: 100%;
}
  .article-_3 {
    display: flex;
    flex-direction: column; /* Ensure vertical stacking on mobile */
  }

  .article-frame-191 {
    order: -1; /* Move to the top */
  }
  .frame-1752 {
    display: block;          /* break out of any flex quirks */
    min-width: 0;            /* allow shrink inside flex parents */
    overflow-x: auto;        /* enable horizontal scroll if needed */
    -webkit-overflow-scrolling: touch;
  }

  .frame-1752 table {
    width: 100% !important;  /* keep table within the canvas width */
    max-width: 100%;
    table-layout: fixed;     /* force cells to wrap instead of overflowing */
    border-collapse: collapse;
  }

  .frame-1752 th,
  .frame-1752 td {
    white-space: normal;     /* allow wrapping */
    word-break: break-word;
    overflow-wrap: anywhere;
    padding: 8px;            /* comfortable touch spacing */
    vertical-align: top;
  }

  /* If any images exist inside cells, keep them responsive */
  .frame-1752 img {
    max-width: 100%;
    height: auto;
  }

  /* Your custom element below the table */
  table-wrap-foot {
    display: block;
    margin-top: 8px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
   .articlesByList,.frame-150
   { 
    display:none !important; 
  }
  .tocWrapper, #references, .article-frame-194 {
     display:flex !important; 
    }
    .editorial-link{

    align-items: center;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    display: flex !important;
    flex-direction: row;
    align-content: space-between;
    justify-content: center;
    align-items: center;
    padding: 50px;

}
.rectangle-25{
          height: -webkit-fill-available !important;
}
.name {
    color: #161616;
    text-align: center;
    font-size: 20px;
    line-height: 0px !important;
    font-weight: 600;
    position: relative;
    align-self: stretch;
}
.view-glacier-night-1 {
  margin-bottom: 34px !important;
    
}
.jid-cover-wrapper img {
  width: 100% !important;
 
}
}
@media (min-width: 768px) and (max-width: 1024px) {
      .article-frame-191 {
        order: 0;
    }
        .article-_3{
        /* max-width: 1240px; */
        margin: 0 auto;
        display: flex;
        flex-direction: column-reverse !important;
        gap: 3%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .article-heading-2-news {
    color: #161616;
    text-align: left;
    font-size: 26px;
    line-height: 117%;
    font-weight: 600;
    position: relative;
    width: 100% !important;
    padding-bottom: 5px;
}


}

/* Quick universal hide */
.jid-hidden { display: none !important; }

/* Hide on MOBILE + TABLET (≤1024px) */
@media (max-width: 1024px) {
  .jid-hide-mobile { display: none !important; }
}

/* Hide on DESKTOP (≥1025px) */
@media (min-width: 1025px) {
  .jid-hide-desktop { display: none !important; }
}

/* Show ONLY on MOBILE + TABLET (≤1024px) */
.jid-only-mobile { display: flex !important; }
@media (min-width: 1025px) {
  .jid-only-mobile { display: none !important; }
}

/* Show ONLY on DESKTOP (≥1025px) */
.jid-only-desktop { display: none !important; }
@media (min-width: 1025px) {
  .jid-only-desktop { display: block !important; }
}

/* Inline variants (for links, buttons, icons, etc.) */
.jid-inline-only-mobile { display: inline-block !important; }
@media (min-width: 1025px) {
  .jid-inline-only-mobile { display: none !important; }
}

.jid-inline-only-desktop { display: none !important; }
@media (min-width: 1025px) {
  .jid-inline-only-desktop { display: inline-block !important; }
}
/* ====== HARD OVERRIDES FOR TOC IN RIGHT SIDEBAR ====== */
:root{ --jid-sticky-top: 0px; } /* adjust for your fixed header */

/* Parent column (right rail) must allow sticking */
.article-_3 .article-frame-191{
  position: relative !important;
  overflow: visible !important;
  align-items: stretch !important;   /* parent is a flex column; stretch child */
  /* background: #f7f7f7; */
}

/* Neutralize theme's .table rules ONLY inside the right column and make sticky */
.article-_3 .article-frame-191 > .table{
  position: sticky !important;
  top: var(--jid-sticky-top) !important;
  z-index: 100 !important;

  /* wipe out Bootstrap-ish .table styles that break sticky */
  display: block;
  float: none !important;
  clear: none !important;

  width: 100% !important;
  max-width: none !important;
  align-self: stretch !important;
  margin: 0 !important;
  padding: 0 30px;
}

/* Prevent common sticky killers on the immediate ancestors */
.article-_3,
.article-_3 .article-frame-191,
.article-_3 .article-frame-189,
.article-_3 .article-group-170{
  transform: none !important;
  overflow: visible !important;
  contain: none !important;
}

/* Optional: disable sticky on small screens */
@media (max-width: 767.98px){
  .article-_3 .article-frame-191 > .table{
    position: static !important;
    top: auto !important;
  }
}
.gray{
  background: #f7f7f7;
  padding: 0 30px;
    margin-bottom: 30px;
    padding-top: 30px;
    }
.link-toc { color:#444; text-decoration:none; }
.link-toc:hover { color:#2a6717; }         /* hover color */
.link-toc.active {
  color:#2a6717 !important;                           /* ACTIVE color */
  font-weight:600;
  border-left:3px solid #2a6717;
  padding-left:6px;
}
.title-editorial-info{
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 16px;
        line-height: 23px;
        font-weight: 500;
        position: relative;
        align-self: stretch;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
}

.editorial-info-content{
        color: #161616;
        text-align: left;
        font-family: "Rethink Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 14px;
        line-height: 23px;
        font-weight: 400;
        opacity: 0.6;
        position: relative;
        align-self: stretch;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 6px 0px;
    }
.text-center.ng-tns-c3197044423-14 > .jid-alert-button{
  display:  block !important;
}
/* =======================================
   UNIVERSAL AD CONTAINER (outer block)
   Centers the ad area in the page layout
   ======================================= */
.jid-ad-block,
.jid-ad-top-block {
  width: 100%;
  margin: 20px 0;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

/* =======================================
   MAIN AD WRAPPER (must include jid-center-wrap)
   Shrink-wraps to actual ad size + stays centered
   ======================================= */
.jid-center-wrap {
  display: table !important;           /* shrink-wrap size & center with margins */
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;

  /* Flex/Grid parents compatibility */
  align-self: center !important;
  justify-self: center !important;

  /* Prevent full-width stretching */
  width: auto !important;
  max-width: 100% !important;

  /* Ad visual box style */
  position: relative;
  border: 1px dashed #aaa;
  background: #f9f9f9;
  padding: 0;
  overflow: visible !important;        /* keep "Advertisement" label visible */
  padding: 5px;
}

/* =======================================
   AD IMAGES (no stretching)
   Natural size on desktop, shrink only on small screens
   ======================================= */
.jid-ad-image,
.jid-ad-top-image {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: auto !important;              /* actual image size */
  height: auto !important;
  max-width: 100% !important;          /* but allow shrinking on narrow screens */
  border: 0;
}

/* =======================================
   "Advertisement" Tag
   Always visible, does not get clipped
   ======================================= */
.jid-ad-tag,
.jid-ad-tag-top {
  position: absolute;
  top: -10px;
  left: 10px;
  background: #fff;
  padding: 0 6px;
  font-size: 12px;
  color: #666;
  z-index: 10;
  white-space: nowrap;
}

/* =======================================
   RESPONSIVE BEHAVIOR (Mobile)
   Keep centered and scale down smoothly
   ======================================= */
@media (max-width: 600px) {

  .jid-center-wrap {
    display: block !important;         /* plays nicer in mobile layouts */
    max-width: 100% !important;
  }

  .jid-ad-image,
  .jid-ad-top-image {
    width: auto !important;
    max-width: 100% !important;        /* shrink only when screen is smaller */
    height: auto !important;
  }
}
