
/* Plugin CSS */
.cmtt-breadcrumbs {
    padding:  0;
    font-size: 14px;
    color: #646970;
    font-size: 16px;
}

.cmtt-breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.cmtt-breadcrumbs li {
    display: inline;
}

.cmtt-breadcrumbs a {
  color: #142344;
}

/* Note: gl-detail hero styles moved to style.css for global availability */

/* Glossary Pills */
/* Note: Article Pill styles are in single.css */
.gl-detail__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom:20px;
}

.gl-detail__pill {
  color: #007AC2;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%; /* 19.2px */
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px dashed #58AEE0;
  transition: all 0.2s ease;
}

.gl-detail__pill:hover {
  background: white;
  border-style: solid;
}

.gl-detail__pill a,
.gl-detail__pill a:visited,
.gl-detail__pill a:hover,
.gl-detail__pill a:active {
  border-radius: 30px;
  padding: 6px 10px;
  font-size: 12px;
  color: #007AC2 !important; 
  text-decoration: none;
}


.gl-detail__content {
  margin-top: 0;
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  font-size: 18px;
  padding-bottom: 40px;
}

/* Two Column Layout */
.gl-detail__columns {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}

/* Main Content Column */
.gl-detail__main-col {
  min-width: 0;
}

.gl-detail__key-takeaways {
  background: linear-gradient(90deg, #FFFBFA 0%, #E7F0F9 100%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.gl-detail__key-takeaways h4 {
  color: #142344;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gl-detail__key-takeaways ul {
  margin: 0;
  padding-left: 20px;
}

.gl-detail__key-takeaways li {
  color: #373F41;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.gl-detail__body {
  font-size: 16px;
  line-height: 120%;
  color: #373F41;
  margin-top: 40px;
}

.gl-detail__body h2 {
  font-size: 28px;
  font-weight: 700;
  color: #142344;
  margin-top: 40px;
  margin-bottom: 16px;
  scroll-margin-top: 120px;
}

.gl-detail__body h3 {
  font-size: 22px;
  font-weight: 600;
  color: #142344;
  margin-top: 32px;
  margin-bottom: 16px;
  scroll-margin-top: 120px;
}

.gl-detail__body p {
  font-size: 16px;
  margin-bottom: 16px;
}

.gl-detail__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

/* Lists in glossary content - restore standard indentation after global reset */
.gl-detail__body ul,
.gl-detail__body ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.gl-detail__body li {
  margin-bottom: 0.5rem;
}

.gl-detail__references {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #E5E7EB;
}

.gl-detail__references h4 {
  color: #142344;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.gl-detail__references-content {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

/* Sidebar Column */
.gl-detail__toc-col {
  position: relative;
  padding-top: 40px;
  /* Allow clicks to pass through to Show More button underneath */
  pointer-events: none;
}

/* Re-enable pointer events for all sidebar content */
.gl-detail__toc-col > * {
  pointer-events: auto;
}

/* Related Articles Sidebar */
.gl-detail__related-articles {
  /*position: sticky;*/
  /*top: 120px;*/
  margin-bottom: 24px;
}

.gl-detail__related-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Adjust article cards for sidebar */
.gl-detail__related-cards .l-article-tile {
  width: 100%;
  max-width: 100%;
}

.gl-detail__related-cards .l-article-tile__title {
  font-size: 16px;
  line-height: 1.3;
}

.gl-detail__related-cards .l-article-tile__author-name {
  font-size: 12px;
}

.gl-detail__related-cards .l-article-tile__read-time {
  font-size: 12px;
}

/* Keep Me Informed Card */
.gl-detail__keep-informed {
  /*position: sticky;*/
  /*top: 120px;*/
}

.gl-detail__keep-informed-card {
  background: linear-gradient(90deg, #FFFBFA 0%, #E7F0F9 100%);
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gl-detail__keep-informed-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.gl-detail__keep-informed-card:hover .gl-detail__keep-informed-arrow svg{
  transform: translateX(3px) translateY(-3px);

}



.gl-detail__keep-informed-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gl-detail__keep-informed-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.75;
  color: #000000;
  margin: 0;
}

.gl-detail__keep-informed-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

.gl-detail__keep-informed-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.gl-detail__keep-informed-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.2s ease;
}

.gl-detail__keep-informed-card:hover .gl-detail__keep-informed-arrow svg path {
  stroke: #007AC2;
}

/* ========================================
   GLOSSARY DETAIL - SHOW MORE/LESS SYSTEM
   BEM Scoped (gl-detail__show-more block)
   ======================================== */

/* Main column modifier when Show More is active */
.gl-detail__main-col--has-show-more {
  position: relative;
  overflow: visible;
}

/* Content wrapper for height animation */
.gl-detail__content-wrapper {
  position: relative;
}

/* Show More wrapper - contains fade, button, and lines */
.gl-detail__show-more-wrapper {
  position: relative;
  margin-top: 0;
  /* Desktop: extend visually to span both columns */
  width: calc(100% + 40px + 360px); /* content + gap + sidebar */
}

/* Fade gradient overlay */
.gl-detail__show-more-fade {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%; /* Only covers content column */
  max-width: calc(100% - 40px - 360px); /* Exclude sidebar area */
  height: 162px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.80) 50%, #FFF 100%);
  pointer-events: none;
  z-index: 1;
}

/* Hide fade when expanded */
.gl-detail__show-more-wrapper--expanded .gl-detail__show-more-fade {
  display: none;
}

/* Container for button and decorative lines */
.gl-detail__show-more-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 24px;
}

/* Decorative gradient lines */
.gl-detail__show-more-line {
  flex: 1;
  height: 1px;
  min-width: 40px;
}

.gl-detail__show-more-line--left {
  background: linear-gradient(90deg, #e7f0f9 0%, #000000 105%);
}

.gl-detail__show-more-line--right {
  background: linear-gradient(270deg, #e7f0f9 0%, #000000 105%);
}

/* Show More/Less Button */
.gl-detail__show-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 48px;
  min-width: 990px; /* Desktop: larger click target per Figma */
  background-color: #f2f2f2;
  border: 1px solid #000000;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.gl-detail__show-more-btn:hover {
  background-color: #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gl-detail__show-more-btn:focus-visible {
  outline: 2px solid #007AC2;
  outline-offset: 2px;
}

/* Button text */
.gl-detail__show-more-text {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #000000;
  text-align: center;
  white-space: nowrap;
}

/* Chevron icon */
.gl-detail__show-more-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Rotate icon when expanded (Show Less state) */
.gl-detail__show-more-btn--expanded .gl-detail__show-more-icon {
  transform: rotate(180deg);
}

/* ========================================
   SHOW MORE - RESPONSIVE STYLES
   ======================================== */

/* Tablet: 768px - 991px */
@media (max-width: 991px) {
  .gl-detail__show-more-wrapper {
    /* Reset to content width only on tablet */
    width: 100%;
  }

  .gl-detail__show-more-fade {
    max-width: 100%;
  }

  .gl-detail__show-more-btn {
    min-width: 314px; /* Tablet: per Figma */
  }
}

/* Mobile: below 768px */
@media (max-width: 767px) {
  .gl-detail__show-more-wrapper {
    width: 100%;
  }

  .gl-detail__show-more-fade {
    max-width: 100%;
  }

  .gl-detail__show-more-btn {
    padding: 16px 32px;
    gap: 16px;
    min-width: 210px; /* Mobile: per Figma */
  }

  .gl-detail__show-more-text {
    font-size: 18px;
    line-height: 22px;
  }

  .gl-detail__show-more-icon {
    width: 18px;
    height: 18px;
  }
}

/* ========================================
   GLOSSARY ARCHIVE - CATEGORY FILTER
   BEM Scoped (gl-archive__category-* block)
   Blue pill styling per glossary detail design
   ======================================== */

/* Category Filter Container */
.gl-archive__category-filter {
    width: 100%;
    max-width: 1440px;
    padding: 0 15px;
    margin-top: 32px;
}

/* Desktop: Horizontal Scrollable Pills */
.gl-archive__category-filter-desktop {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.gl-archive__category-filter-scroll {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #58AEE0 transparent;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: -8px;
}

.gl-archive__category-filter-scroll::-webkit-scrollbar {
    height: 4px;
}

.gl-archive__category-filter-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.gl-archive__category-filter-scroll::-webkit-scrollbar-thumb {
    background: #58AEE0;
    border-radius: 2px;
}

/* Category Pill - Blue theme matching gl-detail__pill */
.gl-archive__category-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px dashed #58AEE0;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    line-height: 120%;
    color: #007AC2;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: border-style 0.2s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

.gl-archive__category-pill:hover {
    border-style: solid;
    text-decoration: none;
    background: white;
    color: #007AC2;
}

/* Active Pill State */
.gl-archive__category-pill--active {
    background: #007AC2;
    border: 1px solid #007AC2;
    color: #fff;
}

.gl-archive__category-pill--active:hover {
    background: #0069A8;
    border-color: #0069A8;
    color: #fff;
}

/* Mobile Filter Trigger - Hidden on desktop */
.gl-archive__category-filter-mobile {
    display: none;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.gl-archive__category-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 40px;
    background: white;
    border: none;
    border-top: 1px dashed #58AEE0;
    border-bottom: 1px dashed #58AEE0;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #007AC2;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.gl-archive__category-trigger:hover {
    background: #E7F0F9;
}

.gl-archive__category-trigger-icon {
    width: 24px;
    height: 24px;
    color: #007AC2;
}

.gl-archive__category-trigger-text {
    text-transform: capitalize;
}

/* Menu Overlay */
.gl-archive__category-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 122, 194, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.gl-archive__category-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Menu Popup - Blue theme */
.gl-archive__category-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: calc(100% - 40px);
    max-width: 400px;
    max-height: calc(100vh - 80px);
    background: #fff;
    border-radius: 12px;
    border: 2px solid #58AEE0;
    box-shadow: 0 20px 60px rgba(0, 122, 194, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    overflow: hidden;
}

.gl-archive__category-menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.gl-archive__category-menu-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px;
    align-items: flex-end;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
    overscroll-behavior: contain;
}

/* Close Button - Blue theme */
.gl-archive__category-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: none;
    border: none;
    color: #007AC2;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.gl-archive__category-menu-close:hover {
    color: #0069A8;
    transform: rotate(90deg);
}

.gl-archive__category-menu-close svg {
    width: 36px;
    height: 36px;
}

/* Menu Navigation */
.gl-archive__category-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* Menu Item - Blue theme */
.gl-archive__category-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #007AC2;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    cursor: pointer;
    transition: color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.gl-archive__category-menu-item:hover {
    color: #0069A8;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 122, 194, 0.2);
    background: #E7F0F9;
}

/* Active Menu Item */
.gl-archive__category-menu-item--active {
    background: #007AC2;
    color: #fff;
}

.gl-archive__category-menu-item--active:hover {
    background: #0069A8;
    color: #fff;
}

/* Menu Divider - Blue theme */
.gl-archive__category-menu-divider {
    width: 100%;
    height: 1px;
    background: #E7F0F9;
}

/* ==========================================================================
   CATEGORY FILTER - Responsive Breakpoints
   ========================================================================== */

/* Medium screens */
@media (max-width: 1199px) and (min-width: 992px) {
    .gl-archive__category-pill {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Small Tablet - Switch to filter trigger */
@media (max-width: 991px) {
    .gl-archive__category-filter-desktop {
        display: none;
    }
    
    .gl-archive__category-filter-mobile {
        display: block;
    }
    
    .gl-archive__category-filter {
        padding: 0;
        margin-top: 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .gl-archive__category-trigger {
        padding: 20px 30px;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .gl-archive__category-menu {
        width: calc(100% - 24px);
    }
    
    .gl-archive__category-menu-content {
        padding: 20px 16px;
    }
    
    .gl-archive__category-menu-item {
        font-size: 18px;
    }
}

/* ========================================
   GLOSSARY ARCHIVE STYLES
   ======================================== */

/* Archive Main Container */
.gl-archive {
  margin-top: -40px;
}

/* Hero Section */
.gl-archive__hero {
  padding-top: 60px;
  padding-bottom: 40px;
  background: linear-gradient(270deg, var(--roche-light-salmon, #FFFBFA) 0%, #E7F0F9 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gl-archive__hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1440px;
  padding: 0 15px;
  width: 100%;
  gap: 40px;
}

.gl-archive__hero-content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.gl-archive__title {
  color: #142344;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
  margin-bottom: 32px;
  margin-top: 20px;
}

/* Search Bar */
.gl-archive__search {
  max-width: 900px;
  margin-top: 32px;
}

.gl-archive__search-form {
  position: relative;
  width: 100%;
}

.gl-archive__search-input {
  width: 100%;
  height: 64px;
  padding: 20px 28px;
  padding-right: 60px;
  border: 1px solid #454B59;
  border-radius: 50px;
  background: white;
  font-size: 16px;
  line-height: 1.2;
  color: #142344;
}

.gl-archive__search-input::placeholder {
  color: #B9B9B9;
}

.gl-archive__search-input:focus {
  outline: none;
  border-color: #007AC2;
}

.gl-archive__search-button {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.gl-archive__search-button:hover svg path {
  stroke: #007AC2;
}

/* Alphabetical Navigation */
.gl-archive__alpha-nav {
  /*position: absolute;*/
  /*right: 180px;*/
  /*top: 205px;*/
  /*display: flex;*/
  /*flex-direction: column;*/
  gap: 16px;
  width: 408px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px; /* optional spacing between cells */

}

.gl-archive__alpha-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gl-archive__alpha-btn--reset {
  width: calc(40px + 40px + 10px);
  border-radius: 20px;
  grid-column: span 2;
  font-size: 18px;
}

a.gl-archive__alpha-btn:hover,
a.gl-archive__alpha-btn:active,
a.gl-archive__alpha-btn:focus{
  color: #23255D !important;
  text-decoration: none !important;
}
a.gl-archive__alpha-btn:visited {
  color: #fff !important;
  text-decoration: none !important;
}

.gl-archive__alpha-btn--active {
  background: #23255D;
  color: white;
  outline: 2px solid #23255D;
  outline-offset: 1.5px;
}

.gl-archive__alpha-btn--available {
  background: #98CBEA;
  color: white;
}

.gl-archive__alpha-btn--available:hover {
  background: #58AEE0;
  transform: scale(1.05);
}

.gl-archive__alpha-btn--disabled {
  background: rgba(88, 174, 224, 0.2);
  color: white;
}

/* Content Area */
.gl-archive__content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 15px;
}

/* Terms List */
.gl-archive__terms-list {
  max-width: 1313px;
}

/* Letter Group */
.gl-archive__letter-group {
  margin-bottom: 48px;
}

.gl-archive__letter-header {
  margin-bottom: 24px;
}

.gl-archive__letter-heading {
  color: #142344;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  margin: 0;
  font-family: 'Cabinet Grotesk', sans-serif;
}

.gl-archive__letter-divider {
  height: 1px;
  background: #142344;
  margin-bottom: 24px;
}

/* Term Item */
.gl-archive__term-item {
  margin-bottom: 24px;
}

.gl-archive__term-title {
  color: #142344;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  margin: 0 0 24px 0;
  text-transform: capitalize;
}

.gl-archive__term-title a {
  color: #142344;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gl-archive__term-title a:hover {
  color: #007AC2;
}

.gl-archive__term-description {
  color: #454B59;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 24px;
}

.gl-archive__term-divider {
  height: 1px;
  background: #E7F0F9;
  margin-bottom: 24px;
  margin-top: 24px;
}

/* No Terms Message */
.gl-archive__no-terms {
  text-align: center;
  padding: 60px 20px;
}

.gl-archive__no-terms p {
  color: #454B59;
  font-size: 18px;
}


/* Responsive Design */
@media (max-width: 1400px) {
  .gl-archive__alpha-nav {
    right: 80px;
  }
}

@media (max-width: 1200px) {
  .gl-archive__hero {
    padding-bottom: 60px;
  }

  .gl-archive__alpha-nav {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px; /* optional spacing between cells */
  }

  .gl-archive__hero-content {
    padding: 0 40px;
  }

  .gl-archive__content {
    padding: 60px 40px;
  }
}

@media (max-width: 991px) {
  /* Glossary detail: Switch to single column layout on tablet and below */
  .gl-detail__columns {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
  }

  /* Related cards: 2 per row on tablet when sidebar becomes full width */
  .gl-detail__related-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gl-detail__related-cards .l-article-tile {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
  }
}

@media (max-width: 600px) {
  /* Related cards: 1 per row on mobile */
  .gl-detail__related-cards {
    flex-direction: column;
  }

  .gl-detail__related-cards .l-article-tile {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .gl-archive__title {
    font-size: 24px;
  }

  .gl-archive__letter-heading {
    font-size: 36px;
  }

  .gl-archive__term-title {
    font-size: 24px;
  }

  .gl-archive__alpha-nav {
    padding:0 20px;
  }

  .gl-archive__hero-container {
    flex-direction: column;
  }

  .gl-archive__hero-content {
    padding: 0 20px;
  }

  .gl-archive__content {
    padding: 40px 20px;
  }
}

@media (max-width: 375px) {

  .gl-archive__hero-content {
        padding: 0 0;

  }
  .gl-archive__alpha-nav {
    gap: 4px;
    width: 100%;
    padding: 0 0;
  }
}

/* ==========================================================================
   GLOSSARY ARCHIVE - SEARCH RESULTS BANNER
   BEM Scoped (gl-archive__search-banner block)
   ========================================================================== */

.gl-archive__search-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: linear-gradient(90deg, #E7F0F9 0%, #DFEAF5 100%);
  border: 1px solid #58AEE0;
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 40px;
  max-width: 1313px;
}

.gl-archive__search-banner-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gl-archive__search-banner-icon {
  color: #007AC2;
  flex-shrink: 0;
}

.gl-archive__search-banner-text {
  color: #142344;
  font-size: 16px;
  font-weight: 500;
}

.gl-archive__search-banner-text strong {
  color: #007AC2;
  font-weight: 700;
}

.gl-archive__search-banner-count {
  background: #007AC2;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.gl-archive__search-banner-clear {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #007AC2;
  color: #007AC2;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gl-archive__search-banner-clear:hover {
  background: #007AC2;
  color: white;
  text-decoration: none;
}

.gl-archive__search-banner-clear:hover svg path {
  stroke: white;
}

/* Search Banner - Responsive */
@media (max-width: 768px) {
  .gl-archive__search-banner {
    padding: 14px 20px;
    gap: 12px;
  }

  .gl-archive__search-banner-info {
    gap: 10px;
  }

  .gl-archive__search-banner-text {
    font-size: 14px;
  }

  .gl-archive__search-banner-count {
    font-size: 12px;
    padding: 3px 10px;
  }

  .gl-archive__search-banner-clear {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .gl-archive__search-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gl-archive__search-banner-info {
    width: 100%;
  }

  .gl-archive__search-banner-clear {
    width: 100%;
    justify-content: center;
  }
}

