html {
  box-sizing: border-box;
  outline: none;
  overflow: auto;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  font-family: "Open Sans", sans-serif;
  font-family: var(--font-stack);
  margin: 0;
  padding: 0;
  background: #fff;
}

li {
  list-style: none;
}

a {
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
}

/* Make date inputs open calendar when clicked */

input[type="date"],
input[type="datetime-local"] {
  cursor: pointer;
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

button {
  border: none;
}

svg {
  flex-shrink: 0;
}

figure {
  flex-shrink: 0;
}

:root {
  --primary-color: #0052a3;
  --primary-color-shade: #005c99;
  --primary-color-tint: #2e72c3;
  --primary-color-transparent: hsl(224, 100%, 95%);
  --accent-color: #007bff;
  --accent-color-tint: #d6eaff;
  --color-black: rgba(0, 0, 0, 0.8);
  --color-white: #fff;
  --color-white-tint: rgba(255, 255, 255, 0.8);
  --color-grey: rgba(0, 0, 0, 0.54);
  --color-grey-tint: rgba(0, 0, 0, 0.4);
  --color-grey-border: rgba(0, 0, 0, 0.1);
  --color-border-white: rgba(255, 255, 255, 0.2);
  --color-state-red: #e85454;
  --color-state-red-tint: #fadbdb;
  --color-state-orange: #ed8936;
  --color-state-green: #39bf5b;
  --color-state-grey: #a2a2a2;
  --font-stack: "Open Sans", sans-serif;
  --font-stack-condensed: "Roboto Condensed", sans-serif;

  /* Container Breakpoints */
  --container-sm: 480px;
  --container-md: 768px;
  --container-lg: 1024px;

  /* Spacing Scale */
  --space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --space-sm: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  --space-md: clamp(0.75rem, 0.5rem + 1vw, 1.25rem);
  --space-lg: clamp(1rem, 0.8rem + 1.5vw, 1.75rem);
  --space-xl: clamp(1.5rem, 1rem + 2vw, 2.5rem);

  /* Typography Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.5vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);

  /* Colors */
  --color-bg: #fff;
  --color-text: #333;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-hover: rgba(0, 0, 0, 0.03);
  --color-accent: #007bff;
  --color-shadow: rgba(33, 33, 33, 0.07);
  --color-shadow-shade: rgba(33, 33, 33, 0.1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50%;

  /* Transitions */
  --transition: all 0.2s ease;
  --transition-fast: all 0.15s ease;
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.4s ease;

  /* Shadows */
  --shadow-sm: 0 2px 4px 4px var(--color-shadow);
  --shadow-md: 0 3px 5px 5px var(--color-shadow);
  --shadow-lg: 0 3px 5px 5px var(--color-shadow-shade);

  /* Touch Targets */
  --tap-target-min: 44px;
}

/* Dark mode support */

/* @media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #1a1a1a;
    --color-text: #e0e0e0;
    --color-border: rgb(255 255 255 / 0.15);
    --color-hover: rgb(255 255 255 / 0.05);
    --color-shadow: rgb(0 0 0 / 0.3);
  }
} */

/* Define custom media queries */

.u-background-red {
  background-color: #e85454 !important;
  background-color: var(--color-state-red) !important;
}

.u-background-orange {
  background-color: #ed8936 !important;
  background-color: var(--color-state-orange) !important;
}

.u-background-green {
  background-color: #39bf5b !important;
  background-color: var(--color-state-green) !important;
}

.u-background-grey {
  background-color: #a2a2a2 !important;
  background-color: var(--color-state-grey) !important;
}

.u-background-grey-light {
  background-color: var(--color-state-grey-light) !important;
}

.u-color-primary {
  color: #0052a3 !important;
  color: var(--primary-color) !important;
}

.u-color-accent {
  color: #007bff !important;
  color: var(--accent-color) !important;
}

.u-color-red {
  color: #e85454 !important;
  color: var(--color-state-red) !important;
}

.u-color-orange {
  color: #ed8936 !important;
  color: var(--color-state-orange) !important;
}

.u-color-green {
  color: #39bf5b !important;
  color: var(--color-state-green) !important;
}

.u-color-grey {
  color: #a2a2a2 !important;
  color: var(--color-state-grey) !important;
}

.u-color-black {
  color: rgba(0, 0, 0, 0.8) !important;
  color: var(--color-black) !important;
}

.u-color-white {
  color: #fff !important;
  color: var(--color-white) !important;
}

.u-flex {
  display: flex;
}

.u-wrap {
  flex-wrap: wrap;
}

.u-justify-end {
  justify-content: flex-end;
}

.u-justify-between {
  justify-content: space-between;
}

.u-justify-center {
  justify-content: center;
}

.u-align-center {
  align-items: center;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-gap-1 {
  gap: 10px;
}

.u-gap-15 {
  gap: 15px;
}

.u-gap-2 {
  gap: 20px;
}

.u-mt-05 {
  margin-top: 5px;
}

.u-mt-1 {
  margin-top: 10px;
}

.u-mt-2 {
  margin-top: 20px;
}

.u-rotate-90 {
  transform: rotate(90deg);
}

.u-rotate-90-negative {
  transform: rotate(-90deg);
}

.u-text-align-center {
  text-align: center;
}

.u-text-align-right {
  text-align: right;
}

.u-link-absolute {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.u-hidden {
  display: none !important;
}

.u-rounded-sm {
  border-radius: 0.125rem;
}

.u-rounded {
  border-radius: 0.25rem;
}

.u-rounded-full {
  border-radius: 999px;
}

.u-bold {
  font-weight: 600;
}

.profile-initials {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    #007bff 0%,
    #0052a3 100%
  );
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  color: #fff;
  font-size: 14px;
  font-weight: 450;
}

/* Ad Grid Styles */

.ads-section {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 61.25rem) {

.ads-section--superior-banner .ads-item {
      max-width: 800px;
  }
    }

@media (min-width: 61.25rem) {

.ads-section--middle-banner .ads-item {
      max-width: 900px;
  }
    }

@media (min-width: 61.25rem) {

.ads-section--middle-rect .ads-item {
      max-width: 450px;
  }
    }

.ads-section--bottom-rect {
  padding-bottom: 3rem;
}

@media (min-width: 61.25rem) {

.ads-section--bottom-rect .ads-item {
      max-width: 400px;
  }
    }

.ads-section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, 0.4);
  color: var(--color-grey-tint);
  font-size: 0.8rem;
  text-align: center;
  text-transform: uppercase;
}

.ads-section-divider:before,.ads-section-divider:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
  }

.ads-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.ads-item {
  position: relative;
  background: #fff;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition:
    transform 0.3s ease, box-shadow 0.3s ease;
}

.ads__img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-grey-border);
  -o-object-fit: contain;
     object-fit: contain;
}

/* Header Styles */

.portal-header {
  padding-top: max(1rem, min(2vw, 2rem));
  padding-bottom: max(1rem, min(2vw, 2rem));
  --csstools-light-dark-toggle--1: var(--csstools-color-scheme--light) rgb(0, 23, 47);
  background: #0052a3;
  background: var(--csstools-light-dark-toggle--1, var(--primary-color));
  background: light-dark(#0052a3, rgb(0, 23, 47));
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  content-visibility: auto;
}

@media (color-gamut: p3) {
.portal-header {
  background: light-dark(#0052a3, color(display-p3 0 0.08274 0.20111));
}
}

@supports (color: light-dark(red, red)) {
.portal-header {
  background: light-dark(var(--primary-color), rgb(0, 23, 47));
}
}

@supports (color: color(display-p3 0 0 0%)) and (color: light-dark(red, red)) {
.portal-header {
  background: light-dark(var(--primary-color), rgb(0, 23, 47));
}

@media (color-gamut: p3) {
.portal-header {
  background: light-dark(var(--primary-color), color(display-p3 0 0.08274 0.20111));
}
}
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.header-logo__img {
  display: block;
  width: max(8rem, min(15vw, 10rem));
  height: auto;
  margin: auto;
  filter: brightness(0) invert(1);
  content-visibility: auto;
}

.header-assine {
  color: white;
}

.header-button-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  transform: translateX(-1rem);
}

.header-button-menu:hover {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
  }

.header-button-menu__label {
  color: #fff;
  color: var(--color-white);
  font-size: max(12px, min(1.5vw, 15px));
  font-weight: 600;
  text-transform: uppercase;
}

.button {
  display: flex;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  white-space: nowrap;
  --csstools-light-dark-toggle--9: var(--csstools-color-scheme--light) rgb(0, 60, 108);
  background: rgb(0, 87, 152);
  background: var(--csstools-light-dark-toggle--9, rgb(0, 87, 152));
  background: light-dark(rgb(0, 87, 152), rgb(0, 60, 108));
  background: light-dark(color(display-p3 0.07309 0.33028 0.62073), color(display-p3 0 0.22269 0.4593));
  background: #1662ac;
  border-radius: 0.25rem;
  font-size: max(12px, min(1.5vw, 14px));
  color: #fff;
  color: var(--color-white);
  transition: background-color all 0.3s ease;
  transition: background-color var(--transition-base);
}

.button:hover {
    --csstools-light-dark-toggle--10: var(--csstools-color-scheme--light) rgb(0, 73, 130);
    background: rgb(0, 101, 176);
    background: var(--csstools-light-dark-toggle--10, rgb(0, 101, 176));
    background: light-dark(rgb(0, 101, 176), rgb(0, 73, 130));
  }

@media (color-gamut: p3) {
.button:hover {
    background: light-dark(color(display-p3 0.1438 0.38895 0.68367), color(display-p3 0 0.27348 0.55181));
  }
}

.button--tint {
  display: flex;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  white-space: nowrap;
  background: #e0eaf5;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  color: #0052a3;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 650;
  transition: background-color all 0.3s ease;
  transition: background-color var(--transition-base);
}

.button--tint:hover {
    background: #e0eaf5;
  }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 0.32rem;
  background: transparent;
  border: none;
  transition: all 0.2s ease-in-out;
}

.hamburger:focus-visible {
    outline: 2px solid #007bff;
    outline: 2px solid var(--accent-color, rgb(0, 101, 176));
    outline-offset: 2px;
    border-radius: 0.5rem;
  }

@supports (color: color(display-p3 0 0 0%)) {
.hamburger:focus-visible {
    outline: 2px solid var(--accent-color, rgb(0, 101, 176));
  }

@media (color-gamut: p3) {
.hamburger:focus-visible {
    outline: 2px solid var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
  }
}
}

.hamburger:active {
    scale: 0.95;
  }

.hamburger.open .sidebar-toggle__line:nth-child(1) {
      translate: 0 0.5rem;
      rotate: 45deg;
    }

.hamburger.open .sidebar-toggle__line:nth-child(2) {
      opacity: 0;
      scale: 0;
    }

.hamburger.open .sidebar-toggle__line:nth-child(3) {
      translate: 0 -0.5rem;
      rotate: -45deg;
    }

.hamburger__line {
  width: 1.25rem;
  height: 0.125rem;
  background: #fff;
  background: var(--color-white);
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

@media (prefers-contrast: high) {

.hamburger__line {
    background: rgb(0, 0, 0);
}
  }

/* Tab bar */

.tab-bar {
  gap: 1rem;
  --csstools-light-dark-toggle--2: var(--csstools-color-scheme--light) rgb(11, 11, 11);
  background-color: rgb(255, 255, 255);
  background-color: var(--csstools-light-dark-toggle--2, rgb(255, 255, 255));
  background-color: light-dark(rgb(255, 255, 255), rgb(11, 11, 11));
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
  content-visibility: auto;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.tab-bar-content {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  container-type: inline-size;
}

.tab-bar__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  --csstools-light-dark-toggle--3: var(--csstools-color-scheme--light) rgb(11, 11, 11);
  background-color: rgb(255, 255, 255);
  background-color: var(--csstools-light-dark-toggle--3, rgb(255, 255, 255));
  background-color: light-dark(rgb(255, 255, 255), rgb(11, 11, 11));
  padding-right: max(1.5rem, min(5vw, 2.2rem));
  padding-top: max(1rem, min(2vh, 1.3rem));
  padding-bottom: max(1rem, min(2vh, 1.3rem));
  color: #0052a3;
  color: var(--primary-color);
  font-size: max(0.85rem, min(1vw, 0.9rem));
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-mask-image: linear-gradient(to right, black, black 85%, transparent);
          mask-image: linear-gradient(to right, black, black 85%, transparent);
  z-index: 999;
  content-visibility: auto;
}

.tab-bar-list {
  display: flex;
  align-items: center;
  animation: ticker 30s linear infinite;
  animation-delay: 0.2s;
  white-space: nowrap;
}

.tab-bar-list:has(.tab-bar__link:hover) {
    animation-play-state: paused;
  }

.tab-bar-item {
  flex-shrink: 0;
}

.tab-bar__link {
  position: relative;
  display: block;
  padding-left: max(1rem, min(2vw, 1.3rem));
  padding-right: max(1rem, min(2vw, 1.3rem));
  padding-top: max(1rem, min(2vh, 1.3rem));
  padding-bottom: max(1rem, min(2vh, 1.3rem));
  --csstools-light-dark-toggle--11: var(--csstools-color-scheme--light) rgb(238, 238, 238);
  color: rgba(0, 0, 0, 0.8);
  color: var(--csstools-light-dark-toggle--11, var(--color-black));
  color: light-dark(rgba(0, 0, 0, 0.8), rgb(238, 238, 238));
  font-size: clamp(0.8rem, 0.8rem + 1vw, 0.9rem);
  white-space: nowrap;
  transition: color all 0.3s ease;
  transition: color var(--transition-base);
}

@supports (color: light-dark(red, red)) {
.tab-bar__link {
  color: light-dark(var(--color-black), rgb(238, 238, 238));
}
}

.tab-bar__link:hover {
    color: #0052a3;
    color: var(--primary-color);
  }

.tab-bar__link:before {
    content: "";
    position: absolute;
    left: -3px;
    top: 25px;
    width: 0.4rem;
    height: 0.4rem;
    background-color: #0052a3;
    background-color: var(--primary-color);
    border-radius: 50px;
    opacity: 0.5;
    transition: opacity all 0.3s ease;
    transition: opacity var(--transition-base);
  }

/* Modern Mobile-First Responsive Sidebar Styles */

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(80vw, 16rem);
  height: 100%;
  --csstools-light-dark-toggle--12: var(--csstools-color-scheme--light) rgb(11, 11, 11);
  background-color: rgb(255, 255, 255);
  background-color: var(--csstools-light-dark-toggle--12, rgb(255, 255, 255));
  background-color: light-dark(rgb(255, 255, 255), rgb(11, 11, 11));
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  transition:
    translate 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  z-index: 1000;
  translate: -100% 0;
  /* content-visibility: hidden; */

  /* Smooth scrolling on mobile */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.sidebar::-webkit-scrollbar {
    width: 0.25rem;
  }

.sidebar::-webkit-scrollbar-track {
    background: transparent;
  }

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.125rem;
  }

.sidebar.open {
    translate: 0 0;
    box-shadow: 0.5rem 0 1rem rgba(0, 0, 0, 0.2);
    /* content-visibility: visible; */
  }

@media (min-width: 46rem) {

.sidebar.open {
      translate: 0 0;
      box-shadow: 0.125rem 0.125rem 0.125rem 0.0625rem rgba(0, 0, 0, 0.08);
  }
    }

@media (min-width: 75rem) {

.sidebar {
    width: 16rem;
}
  }

@media (prefers-contrast: high) {

.sidebar {
    border-right: 2px solid rgba(0, 0, 0, 0.2);
}
  }

.sidebar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: max(1.5rem, min(4vh, 2rem));
  padding-bottom: max(1.5rem, min(4vh, 2rem));
  --csstools-light-dark-toggle--4: var(--csstools-color-scheme--light) rgb(0, 23, 47);
  background: #0052a3;
  background: var(--csstools-light-dark-toggle--4, var(--primary-color));
  background: light-dark(#0052a3, rgb(0, 23, 47));
}

@media (color-gamut: p3) {
.sidebar-logo {
  background: light-dark(#0052a3, color(display-p3 0 0.08274 0.20111));
}
}

@supports (color: light-dark(red, red)) {
.sidebar-logo {
  background: light-dark(var(--primary-color), rgb(0, 23, 47));
}
}

@supports (color: color(display-p3 0 0 0%)) and (color: light-dark(red, red)) {
.sidebar-logo {
  background: light-dark(var(--primary-color), rgb(0, 23, 47));
}

@media (color-gamut: p3) {
.sidebar-logo {
  background: light-dark(var(--primary-color), color(display-p3 0 0.08274 0.20111));
}
}
}

.sidebar-logo__img {
  display: block;
  width: max(80px, min(20vw, 110px));
  height: auto;
  margin: auto;
  filter: brightness(0) invert(1);
}

.sidebar-list {
  margin-bottom: 0.625rem;
  padding: 0;
}

.sidebar__heading {
  display: block;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #007bff;
  color: var(--accent-color, rgb(0, 101, 176));
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@supports (color: color(display-p3 0 0 0%)) {
.sidebar__heading {
  color: var(--accent-color, rgb(0, 101, 176));
}

@media (color-gamut: p3) {
.sidebar__heading {
  color: var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
}
}
}

.sidebar-item svg {
  flex-shrink: 0;
  fill: none;
  --csstools-light-dark-toggle--5: var(--csstools-color-scheme--light) rgb(174, 174, 174);
  stroke: rgb(128, 128, 128);
  stroke: var(--csstools-light-dark-toggle--5, rgb(128, 128, 128));
  stroke: light-dark(rgb(128, 128, 128), rgb(174, 174, 174));
  stroke-width: 2;
  width: 1.25rem;
  height: 1.25rem;
  transition: stroke 0.2s ease-in-out;
}

.sidebar-icon {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.3rem;
}

@media (min-width: 46rem) {

.sidebar-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.85rem;
}
  }

.sidebar-dropdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sidebar__dropdown {
  width: 1.5rem;
  height: 1.5rem;
  stroke: rgba(0, 0, 0, 0.4);
  transition:
    rotate 0.3s ease-in-out, stroke 0.2s ease-in-out;
  rotate: 0deg;
}

.open .sidebar__dropdown {
    rotate: 180deg;
  }

.sidebar__link {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding-left: 0.5rem;
  padding-right: 0.9rem;
  --csstools-light-dark-toggle--13: var(--csstools-color-scheme--light) rgb(206, 206, 206);
  color: rgba(0, 0, 0, 0.7);
  color: var(--csstools-light-dark-toggle--13, rgba(0, 0, 0, 0.7));
  color: light-dark(rgba(0, 0, 0, 0.7), rgb(206, 206, 206));
  font-weight: 600;
  font-size: clamp(0.875rem, 0.85rem + 0.2vw, 1rem);
  -webkit-text-decoration: none;
  text-decoration: none;
  transition:
    background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.sidebar__link::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }

.sidebar__link:hover::before,.sidebar__link:focus-visible::before {
    opacity: 1;
  }

.sidebar__link:focus-visible {
    outline: 2px solid #007bff;
    outline: 2px solid var(--accent-color, rgb(0, 101, 176));
    outline-offset: 2px;
  }

@supports (color: color(display-p3 0 0 0%)) {
.sidebar__link:focus-visible {
    outline: 2px solid var(--accent-color, rgb(0, 101, 176));
  }

@media (color-gamut: p3) {
.sidebar__link:focus-visible {
    outline: 2px solid var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
  }
}
}

.sidebar__link:active {
    scale: 0.98;
  }

.sidebar__link.active {
    color: #007bff;
    color: var(--accent-color, rgb(0, 101, 176));
    font-weight: 600;
    background: rgba(0, 123, 255, 0.1);
  }

@supports (color: color(display-p3 0 0 0%)) {
.sidebar__link.active {
    color: var(--accent-color, rgb(0, 101, 176));
  }

@media (color-gamut: p3) {
.sidebar__link.active {
    color: var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
  }
}
}

@supports (color: lab(from red l 1 1% / calc(alpha + 0.1))) {
.sidebar__link.active {
    background: oklch(
      from var(--accent-color, rgb(0, 101, 176)) l c h / 0.1
    );
  }
}

@supports (color: color(display-p3 0 0 0%)) and (color: lab(from red l 1 1% / calc(alpha + 0.1))) {
.sidebar__link.active {
    background: oklch(
      from var(--accent-color, rgb(0, 101, 176)) l c h / 0.1
    );
  }

@media (color-gamut: p3) {
.sidebar__link.active {
    background: oklch(
      from var(--accent-color, color(display-p3 0.1438 0.38895 0.68367)) l c h / 0.1
    );
  }
}
}

.sidebar__link.active svg {
      stroke: #007bff;
      stroke: var(--accent-color, rgb(0, 101, 176));
    }

@supports (color: color(display-p3 0 0 0%)) {
.sidebar__link.active svg {
      stroke: var(--accent-color, rgb(0, 101, 176));
    }

@media (color-gamut: p3) {
.sidebar__link.active svg {
      stroke: var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
    }
}
}

@media (prefers-contrast: high) {

.sidebar__link.active {
      outline: 2px solid currentColor;
  }
    }

@media (min-width: 46rem) {

.sidebar__link {
    min-height: 3rem;
    padding-left: 0.9rem;
    padding-right: 1rem;
}
  }

.sidebar-dropdown-list {
  position: relative;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  translate: 0 -0.25rem;
  transition:
    max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, translate 0.3s ease-in-out;
}

.sidebar-dropdown-list.open {
    max-height: 100vh;
    opacity: 1;
    translate: 0 0;
  }

.sidebar-dropdown__link {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 3.5rem;
  padding-right: 1rem;
  --csstools-light-dark-toggle--14: var(--csstools-color-scheme--light) rgb(190, 190, 190);
  color: rgba(0, 0, 0, 0.6);
  color: var(--csstools-light-dark-toggle--14, rgba(0, 0, 0, 0.6));
  color: light-dark(rgba(0, 0, 0, 0.6), rgb(190, 190, 190));
  font-size: clamp(0.8rem, 0.8rem + 1vw, 0.9rem);
  line-height: 1.4;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition:
    background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.sidebar-dropdown__link:hover,.sidebar-dropdown__link:focus-visible {
    --csstools-light-dark-toggle--15: var(--csstools-color-scheme--light) rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.03);
    background: var(--csstools-light-dark-toggle--15, rgba(0, 0, 0, 0.03));
    background: light-dark(rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.15));
    --csstools-light-dark-toggle--16: var(--csstools-color-scheme--light) rgb(222, 222, 222);
    color: rgba(0, 0, 0, 0.8);
    color: var(--csstools-light-dark-toggle--16, rgba(0, 0, 0, 0.8));
    color: light-dark(rgba(0, 0, 0, 0.8), rgb(222, 222, 222));
  }

.sidebar-dropdown__link:focus-visible {
    outline: 2px solid #007bff;
    outline: 2px solid var(--accent-color, rgb(0, 101, 176));
    outline-offset: -2px;
  }

@supports (color: color(display-p3 0 0 0%)) {
.sidebar-dropdown__link:focus-visible {
    outline: 2px solid var(--accent-color, rgb(0, 101, 176));
  }

@media (color-gamut: p3) {
.sidebar-dropdown__link:focus-visible {
    outline: 2px solid var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
  }
}
}

.sidebar-dropdown__link:active {
    scale: 0.98;
  }

.sidebar-dropdown__link.active {
    color: #007bff;
    color: var(--accent-color, rgb(0, 101, 176));
    font-weight: 500;
  }

@supports (color: color(display-p3 0 0 0%)) {
.sidebar-dropdown__link.active {
    color: var(--accent-color, rgb(0, 101, 176));
  }

@media (color-gamut: p3) {
.sidebar-dropdown__link.active {
    color: var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
  }
}
}

.sidebar-dropdown__link.active::before {
      content: "";
      position: absolute;
      left: 1.5rem;
      top: 1.1rem;
      width: 0.0625rem;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.15);
      translate: 0 -100%;
    }

.sidebar-dropdown__link.active::after {
      content: "";
      position: absolute;
      left: 1.5rem;
      top: 1.1rem;
      width: 1.2rem;
      height: 0.0625rem;
      background-color: rgba(0, 0, 0, 0.15);
    }

@media (prefers-contrast: high) {

.sidebar-dropdown__link.active {
      outline: 2px solid currentColor;
  }
    }

@media (min-width: 46rem) {

.sidebar-dropdown__link {
    min-height: 2rem;
}
  }

.sidebar-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  --csstools-light-dark-toggle--17: var(--csstools-color-scheme--light) rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.5);
  background: var(--csstools-light-dark-toggle--17, rgba(0, 0, 0, 0.5));
  background: light-dark(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 999;
  backdrop-filter: blur(2px);
}

.sidebar-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

/* Section */

.section {
  background: var(--bg-white);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section-opinion {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section-articles:nth-child(even) {
    background: #f8fafc;
  }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-header--border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
  border-bottom: 1px solid var(--color-border);
}

.section-header--center {
  justify-content: center;
}

.section-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.section-title__text {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-bottom: 3px solid #0052a3;
  border-bottom: 3px solid var(--primary-color);
  color: #0052a3;
  color: var(--primary-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Regular Article Cards */

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

@media (min-width: 61.25rem) {

.articles-grid {
    grid-template-columns: 2fr 1fr;
}
  }

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

@media (min-width: 61.25rem) {

.cards-grid {
    grid-template-columns: 1fr 1fr;
}
  }

.article-card {
  position: relative;
  min-height: 8.5rem;
  padding: 1.5rem;
  background: #fff;
  background: var(--bg-white, #fff);
  border-radius: 8px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border, #e5e5e5);
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  overflow: hidden;
}

.article-card:hover {
    box-shadow: 0 3px 5px 5px rgba(33, 33, 33, 0.07);
    box-shadow: var(--shadow-md);
  }

.article-card:hover .article-card__img {
    transform: scale(1.08);
  }

@media (min-width: 61.25rem) {

.article-card {
    padding: 0;
    padding: initial;
}
  }

.article-card__link {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.75rem;
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
  height: 100%;
}

@media (min-width: 61.25rem) {

.article-card__link {
    display: block;
    gap: initial;
}
  }

.article-card-list__link {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
  height: 100%;
}

.article-card-figure {
  position: relative;
  width: 8rem;
  height: 9rem;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

@media (min-width: 61.25rem) {

.article-card-figure {
    width: auto;
    width: initial;
    border-radius: none;
    border-radius-top-right: 4px;
    border-radius-top-right: var(--radius-sm);
    border-radius-top-left: 4px;
    border-radius-top-left: var(--radius-sm);
    height: 12rem;
}
  }

@media (min-width: 100rem) {

.article-card-figure {
    width: auto;
    width: initial;
    height: 13rem;
}
  }

.article-card-list-figure {
  width: 15rem;
}

.article-card__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 61.25rem) {

.article-card-content {
    padding: 1.5rem;
}
  }

.article-card__pretitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #007bff;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.article-card__title {
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.8);
  color: var(--color-black);
  font-size: clamp(1.1rem, 1.1rem + 0.1vw, 1.2rem);
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
}

.article-card__subtitle {
  margin-bottom: 1rem;
  color: rgba(0, 0, 0, 0.54);
  color: var(--color-grey);
  font-size: max(0.85rem, min(1.2vw, 0.95rem));
  line-height: 1.45;
  font-style: italic;
  overflow: hidden;
}

.article-card__date {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.4);
  color: var(--color-grey-tint);
}

.more-articles {
  display: none;
  content-visibility: hidden;
  background: #fff;
  background: var(--color-white);
  border-radius: 4px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

@media (min-width: 61.25rem) {

.more-articles {
    display: inline;
    display: initial;
    content-visibility: visible;
}
  }

.more-articles__heading {
  display: block;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--color-grey-border);
  background-color: #0052a3;
  background-color: var(--primary-color);
  color: #fff;
  color: var(--color-white);
  font-family: "Roboto Condensed", sans-serif;
  font-family: var(--font-stack-condensed);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.more-articles-grid {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-bottom: 1.8rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.article-more {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.2s ease;
  transition: var(--transition);
}

.article-more:first-child {
    padding-top: 0;
  }

.article-more:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

.article-more:hover {
    transform: translateX(2px);
  }

.article-more__pretitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #007bff;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.article-more__title {
  margin-bottom: 0.4rem;
  --csstools-light-dark-toggle--0: var(--csstools-color-scheme--light) var(--color-white);
  color: rgba(0, 0, 0, 0.8);
  color: var(--csstools-light-dark-toggle--0, var(--color-black));
  color: light-dark(rgba(0, 0, 0, 0.8), #fff);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  transition: all 0.2s ease;
  transition: var(--transition);
}

@supports (color: light-dark(red, red)) {
.article-more__title {
  color: light-dark(var(--color-black), var(--color-white));
}
}

.article-more__date {
  display: block;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.4);
  color: var(--color-grey-tint);
}

/* Featured Article Cards */

.featured-section {
  --csstools-light-dark-toggle--6: var(--csstools-color-scheme--light) rgb(0, 12, 28);
  background: var(--csstools-light-dark-toggle--6, var(--bg-white));
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: max(1rem, min(2vw, 1.5rem));
  content-visibility: auto;
}

@supports (color: light-dark(red, red)) {
.featured-section {
  background: light-dark(var(--bg-white), rgb(0, 12, 28));
}
}

@supports (color: color(display-p3 0 0 0%)) and (color: light-dark(red, red)) {
.featured-section {
  background: light-dark(var(--bg-white), rgb(0, 12, 28));
}

@media (color-gamut: p3) {
.featured-section {
  background: light-dark(var(--bg-white), color(display-p3 0.00303 0.04258 0.11615));
}
}
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: max(1rem, min(1.5vw, 1.25rem));
  gap: max(1rem, min(1.5vw, 1.25rem));
}

@media (min-width: 46rem) {

.featured-grid {
    grid-template-columns: 1.9fr 1.1fr;
    grid-template-rows: repeat(2, 1fr);
    height: max(350px, min(70vh, 480px));
}
  }

.featured-card {
  position: relative;
  --csstools-light-dark-toggle--18: var(--csstools-color-scheme--light) rgb(3, 23, 44);
  background: var(--csstools-light-dark-toggle--18, var(--bg-white));
  border-radius: 8px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  transition: var(--transition);
  content-visibility: auto;
  overflow: hidden;
}

@supports (color: light-dark(red, red)) {
.featured-card {
  background: light-dark(var(--bg-white), rgb(3, 23, 44));
}
}

.featured-card:hover {
    box-shadow: 0 3px 5px 5px rgba(33, 33, 33, 0.07);
    box-shadow: var(--shadow-md);
  }

.featured-card:hover .featured-card__img {
    transform: scale(1.07);
  }

@media (min-width: 46rem) {
    .featured-card:first-child {
      grid-row: 1 / -1;
    }
    .featured-card:first-child .featured-card__category {
      top: max(1.2rem, min(2vw, 1.6rem));
      left: max(1.2rem, min(2vw, 1.6rem));
      padding-top: 0.25rem;
      padding-bottom: 0.25rem;
      padding-left: 0.4rem;
      padding-right: 0.4rem;
      font-size: 0.7rem;
    }
    .featured-card:first-child .featured-card-content {
      padding: max(1.2rem, min(2vw, 1.6rem));
    }
    .featured-card:first-child .featured-card__title {
      margin-bottom: max(0.3rem, min(0.7vw, 0.5rem));
      font-size: max(1.4rem, min(2.5vw, 1.65rem));
    }
    .featured-card:first-child .featured-card__subtitle {
      font-size: max(0.95rem, min(1.5vw, 1rem));
    }
  }

.featured-card__link {
  display: block;
  height: 100%;
  color: inherit;
}

.featured-card-figure {
  position: relative;
  height: 13rem;
  background: rgb(219, 230, 242);
  overflow: hidden;
}

@media (min-width: 46rem) {

.featured-card-figure {
    height: 100%;
}
  }

.featured-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-card__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(1, 4, 8, 0.65) 70%
  );
  z-index: 1;
}

.featured-card__category {
  position: absolute;
  top: max(1.1rem, min(1.5vw, 1.25rem));
  left: max(1.1rem, min(1.5vw, 1.25rem));
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  --csstools-light-dark-toggle--7: var(--csstools-color-scheme--light) rgb(0, 101, 176);
  background: #0052a3;
  background: var(--csstools-light-dark-toggle--7, var(--primary-color));
  background: light-dark(#0052a3, rgb(0, 101, 176));
  border-radius: 4px;
  border-radius: var(--radius-sm);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  z-index: 2;
}

@media (color-gamut: p3) {
.featured-card__category {
  background: light-dark(#0052a3, color(display-p3 0.1438 0.38895 0.68367));
}
}

@supports (color: light-dark(red, red)) {
.featured-card__category {
  background: light-dark(var(--primary-color), rgb(0, 101, 176));
}
}

@supports (color: color(display-p3 0 0 0%)) and (color: light-dark(red, red)) {
.featured-card__category {
  background: light-dark(var(--primary-color), rgb(0, 101, 176));
}

@media (color-gamut: p3) {
.featured-card__category {
  background: light-dark(var(--primary-color), color(display-p3 0.1438 0.38895 0.68367));
}
}
}

.featured-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: max(1.1rem, min(1.5vw, 1.25rem));
  z-index: 2;
  content-visibility: auto;
}

.featured-card__title {
  margin-bottom: max(0.3rem, min(0.5vw, 0.4rem));
  --csstools-light-dark-toggle--8: var(--csstools-color-scheme--light) rgb(248, 248, 248);
  color: white;
  color: var(--csstools-light-dark-toggle--8, white);
  color: light-dark(white, rgb(248, 248, 248));
  font-size: max(1.1rem, min(1.5vw, 1.2rem));
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.featured-card__subtitle {
  color: rgba(248, 248, 248, 0.7);
  font-size: max(0.9rem, min(1vw, 1rem));
  font-style: italic;
  line-height: 1.2;
}

/* Opinion Cards */

.opinion-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

@media (min-width: 61.25rem) {

.opinion-grid {
    grid-template-columns: 1fr 1fr 1fr;
}
  }

.opinion-card {
  gap: 1rem;
  padding-top: 1.2rem;
  padding-bottom: 1.35rem;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  background: var(--bg-white);
  border-radius: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border, #e5e5e5);
  border-left: 4px solid #0052a3;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  transition: var(--transition);
}

.opinion-card:hover {
    box-shadow: 0 3px 5px 5px rgba(33, 33, 33, 0.07);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
  }

.opinion-card-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.opinion-card-figure {
  position: relative;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border-radius: var(--radius-full);
  overflow: hidden;
}

@media (min-width: 61.25rem) {

.opinion-card-figure {
    width: 5.8rem;
    height: 5.8rem;
}
  }

.opinion-card__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.opinion-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.opinion-card__column {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #007bff;
  color: var(--accent-color);
  text-transform: uppercase;
}

.opinion-card__title {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.opinion-card__author {
  display: -webkit-box;
  margin-top: 0.4rem;
  color: rgba(0, 0, 0, 0.54);
  color: var(--color-grey);
  font-size: max(0.85rem, min(1.2vw, 0.95rem));
  line-height: 1.45;
  font-style: italic;
  /* -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; */
  overflow: hidden;
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

@media (min-width: 46rem) {

.podcast-grid {
    grid-template-columns: 1fr 1fr;
}
  }

.podcast-card {
  background: var(--bg-white);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border, #e5e5e5);
  border-left: 4px solid #0052a3;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  transition: var(--transition);
}

.podcast-card:hover {
    box-shadow: 0 3px 5px 5px rgba(33, 33, 33, 0.1);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
  }

.podcast-card.podcast-card--playing .podcast-card-embed {
      display: block;
      content-visibility: visible;
    }

.podcast-card.podcast-card--playing .podcast-card-embed audio {
        transform: scaleX(1);
      }

.podcast-card.podcast-card--playing .podcast-card-embed:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #80c6ff;
        border-radius: 100px;
        z-index: 6;
        opacity: 0.2;
        pointer-events: none;
      }

.podcast-card.podcast-card--playing .podcast-card-play {
      display: none;
      visibility: hidden;
      content-visibility: hidden;
    }

.podcast-card-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  padding-top: 1.5rem;
  padding-bottom: 1.3rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 46rem) {

.podcast-card-wrapper {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}
  }

.podcast-card-figure {
  position: relative;
  width: 10rem;
  height: 8rem;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

@media (min-width: 61.25rem) {

.podcast-card-figure {
    width: 10rem;
    height: 10rem;
}
  }

.podcast-card__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}

.podcast-card__segment {
  display: block;
  margin-bottom: 0.5rem;
  color: #007bff;
  color: var(--accent-color);
  font-family: "Roboto Condensed", sans-serif;
  font-family: var(--font-stack-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.podcast-card__title {
  margin-bottom: 0.8rem;
  font-size: clamp(1.1rem, 1.1rem + 0.1vw, 1.2rem);
  font-weight: 700;
  line-height: 1.4;
}

.podcast-card-embed {
  display: none;
  position: relative;
  width: 95%;
  height: 38px;
  content-visibility: hidden;
  z-index: 1;
}

.podcast-card-embed audio {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    transition: var(--transition-base);
    transform: scaleX(0);
    transform-origin: left;
  }

.podcast-card-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding-left: 0.7rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: #0052a3;
  background: var(--primary-color);
  border: none;
  border-radius: 100px;
  color: #fff;
  color: var(--color-white);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  cursor: pointer;
  z-index: 5;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  gap: 2rem;
}

@media (min-width: 61.25rem) {

.videos-grid {
    grid-template-columns: 1fr 1fr 1fr;
}
  }

.video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 4px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.video-card--playing .video-card-embed {
    content-visibility: visible;
  }

.video-card--playing .video-card-overlay,.video-card--playing .video-card-play,.video-card--playing .video-card-figure {
    display: none;
    visibility: hidden;
    content-visibility: hidden;
  }

.video-card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(33, 33, 33, 0.25);
  z-index: 3;
}

.video-card-media {
  position: relative;
  width: 100%;
  height: 12rem;
  background: #000;
  overflow: hidden;
}

.video-card-media:hover .video-card__img {
      transform: scale(1.08);
    }

.video-card-media:hover .video-card-play {
      transform: translate(-50%, -50%) scale(1.1);
    }

.video-card-media:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 4rem;
    height: 4rem;
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

@media (min-width: 100rem) {

.video-card-media {
    height: 13rem;
}
  }

.video-card-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content-visibility: hidden;
}

.video-card-embed iframe {
    width: 100%;
    height: 100%;
  }

.video-card-figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.video-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  background: #007bff;
  background: var(--accent-color);
  border-radius: 12px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  transition: var(--transition);
  z-index: 4;
}

.video-card-content {
  position: relative;
  flex: 1;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.2s ease;
  transition: var(--transition);
}

.video-card-content:hover {
    transform: translateX(5px);
  }

.video-card-content:before {
    content: "";
    position: absolute;
    left: -5px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #0052a3;
    background-color: var(--primary-color);
  }

/* .gallery-index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 1.25rem;

  @media (--sm) {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 200px;
  }
} */

.gallery-index-card {
  position: relative;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  background: #000;
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.gallery-index-card:hover {
    box-shadow: 0 3px 5px 5px rgba(33, 33, 33, 0.07);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
  }

@media (min-width: 46rem) {
    .gallery-index-card:nth-child(1) {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-index-card:nth-child(5) {
      grid-column: span 2;
      grid-row: span 2;
    }
  }

.gallery-index-card-figure {
  width: 100%;
  height: 100%;
}

.gallery-index-card__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-index-card__source {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-height: 6.5rem;
  background: rgba(33, 33, 33, 0.7);
  color: #fff;
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  z-index: 4;
}

@media (min-width: 46rem) {

.gallery-index-card__source {
    min-height: 4rem;
}
  }

/* List Cards Base Styles */

.list-header {
  background-color: #fff;
  background-color: var(--color-white);
}

.list-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: #fff;
  background-color: var(--color-white);
}

.list-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.list-card {
  position: relative;
  min-height: 8.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: #fff;
  background: var(--bg-white, #fff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--color-border, #e5e5e5);
  transition: all 0.2s ease;
  overflow: hidden;
}

.list-card:hover .list-card__img {
  transform: scale(1.05);
}

.list-card__link {
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.list-card-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.25rem;
}

@media (min-width: 46rem) {

.list-card-wrapper {
    flex-direction: row;
}
  }

.list-card-figure {
  position: relative;
  width: 10rem;
  height: 10rem;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 46rem) {

.list-card-figure {
    width: 16rem;
    height: 12rem;
}
  }

.list-card-list-figure {
  width: 15rem;
}

.list-card__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.list-card-content {
  flex: 1;
}

@media (min-width: 46rem) {

.list-card-content {
    padding-left: 1.5rem;
}
  }

.list-card__pretitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #007bff;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.list-card__title {
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.8);
  color: var(--color-black);
  font-size: clamp(1.25rem, 1.2rem + 0.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
}

.list-card__subtitle {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(0, 0, 0, 0.54);
  color: var(--color-grey);
  font-size: clamp(0.95rem, 0.9rem + 0.1vw, 1.05rem);
  line-height: 1.45;
  font-style: italic;
  overflow: hidden;
}

.list-card__date {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.4);
  color: var(--color-grey-tint);
  margin-top: 2rem;
}

/* Video List Card Specific Styles */

.list-card--video {
  cursor: pointer;
}

.list-card--video .list-card-figure {
    width: 100%;
    height: 100%;
  }

.list-card--video.list-card--playing .list-card-video-embed {
    content-visibility: visible;
  }

.list-card--video.list-card--playing .list-card-video-overlay,.list-card--video.list-card--playing .list-card-video-play,.list-card--video.list-card--playing .list-card-figure {
    display: none;
    visibility: hidden;
    content-visibility: hidden;
  }

.list-card-media {
  position: relative;
  width: 10rem;
  height: 8rem;
  background: #000;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

@media (min-width: 46rem) {

.list-card-media {
    width: 20rem;
    height: 12rem;
}
  }

/* Loading spinner for video cards */

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.list-card-media:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 3rem;
  height: 3rem;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 2;
}

.list-card--video.list-card--loading .list-card-media:after {
  display: inline-block;
}

.list-card-video-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(33, 33, 33, 0.25);
  z-index: 3;
}

.list-card-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #007bff;
  background: var(--accent-color);
  border-radius: 12px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  z-index: 4;
}

.list-card:hover .list-card-video-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.list-card-video-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content-visibility: hidden;
}

.list-card-video-embed iframe {
    width: 100%;
    height: 100%;
  }

/* Audio/Podcast List Card Specific Styles */

.list-card--audio {
}

.list-card--audio.list-card--playing .list-card-audio-embed {
    display: block;
    content-visibility: visible;
  }

.list-card--audio.list-card--playing .list-card-audio-embed audio {
      transform: scaleX(1);
    }

.list-card--audio.list-card--playing .list-card-audio-embed:after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: #80c6ff;
      border-radius: 100px;
      z-index: 6;
      opacity: 0.2;
      pointer-events: none;
    }

.list-card--audio.list-card--playing .list-card-audio-play {
    display: none;
    visibility: hidden;
    content-visibility: hidden;
  }

.list-card-figure--audio {
  width: 10rem;
  height: 10rem;
}

.list-card-content--audio {
  position: relative;
}

.list-card-audio-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  margin-bottom: 0.75rem;
}

.list-card-audio-duration {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.4);
  color: var(--color-grey-tint);
  font-weight: 600;
}

.list-card-audio-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding-left: 0.7rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: #0052a3;
  background: var(--primary-color);
  border: none;
  border-radius: 100px;
  color: #fff;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 500;
  transition: transform 0.3s ease;
  cursor: pointer;
  z-index: 5;
}

.list-card-audio-play:hover {
  transform: scale(1.05);
}

.list-card-audio-embed {
  display: none;
  position: relative;
  width: 95%;
  height: 38px;
  content-visibility: hidden;
  z-index: 1;
  margin-top: 0.5rem;
}

.list-card-audio-embed audio {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    transition: var(--transition-base, all 0.3s ease);
    transform: scaleX(0);
    transform-origin: left;
  }

/* Gallery List Card Specific Styles */

.list-card--gallery {
}

.list-card-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(33, 33, 33, 0.7), transparent);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 2;
}

/* Opinion List Card Specific Styles */

.list-card--opinion .list-card-wrapper {
    flex-direction: row-reverse;
  }

.list-card--opinion .list-card-figure {
    width: 7rem;
    height: 7rem;
    border-radius: 200px;
  }

/* No items message */

.no-articles {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(0, 0, 0, 0.54);
  color: var(--color-grey);
}

.no-articles p {
  font-size: 1.1rem;
}

/* Section footer */

.section-footer {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Responsive adjustments */

@media (max-width: 640px) {
  .list-card {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .list-card__title {
    font-size: 1.1rem;
  }

  .list-card__subtitle {
    font-size: 0.9rem;
  }
}

/* components/pagination.css */

.pagination {
  width: 100%;
  margin-top: clamp(1rem, 0.8rem + 1.5vw, 1.75rem);
  margin-top: var(--space-lg);
}

.pagination__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 0.5rem + 1vw, 1.25rem);
  gap: var(--space-md);
}

/* Left and Right Control Groups */

.pagination__left,
.pagination__right {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  gap: var(--space-sm);
  flex-shrink: 0;
}

.pagination__right {
  justify-content: flex-end;
}

/* Base Button Styles */

.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  gap: var(--space-xs);
  padding: 0.75rem 1rem;
  background: #fff;
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  border-radius: var(--radius-sm);
  color: rgba(0, 0, 0, 0.8);
  color: var(--color-black);
  font-family: "Open Sans", sans-serif;
  font-family: var(--font-stack);
  font-size: 0.9rem;
  font-weight: 500;
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.pagination__btn:hover:not(:disabled):not(.pagination__page--active) {
  background: rgba(0, 0, 0, 0.03);
  background: var(--color-hover);
  border-color: #2e72c3;
  border-color: var(--primary-color-tint);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
}

.pagination__btn:active:not(:disabled):not(.pagination__page--active) {
  transform: translateY(0);
}

.pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Icon Styles */

.pagination__icon {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform all 0.15s ease;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.pagination__btn:hover:not(:disabled) .pagination__icon {
  transform: scale(1.1);
}

/* Center Page Numbers */

.pagination__center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  gap: var(--space-sm);
  flex: 1;
  min-width: 0; /* Allow flex shrinking */
}

/* Mobile Select - Hidden by default */

.pagination__mobile-select {
  display: none;
  align-items: center;
  gap: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  gap: var(--space-sm);
  width: 100%;
}

.pagination__select {
  flex: 1;
  padding-left: 1rem;
  padding-right: 1rem;
  height: 44px;
  height: var(--tap-target-min);
  background: #fff;
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  border-radius: var(--radius-sm);
  color: #333;
  color: var(--color-text);
  font-family: "Open Sans", sans-serif;
  font-family: var(--font-stack);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  transition: var(--transition);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px;
}

.pagination__select:hover {
  border-color: #2e72c3;
  border-color: var(--primary-color-tint);
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
}

.pagination__select:focus {
  outline: 2px solid #0052a3;
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Desktop Pages - Visible by default */

.pagination__desktop-pages {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  gap: var(--space-sm);
}

.pagination__btn-text {
  display: inline;
}

/* Page Number Buttons */

.pagination__page {
  min-width: 44px;
  min-width: var(--tap-target-min);
  height: 44px;
  height: var(--tap-target-min);
  padding: 0;
  font-weight: 600;
}

.pagination__page--active {
  background: #0052a3 !important;
  background: var(--primary-color) !important;
  border-color: #0052a3 !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
  color: var(--color-white) !important;
  box-shadow: 0 3px 5px 5px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-md);
  cursor: default;
  pointer-events: none;
}

/* Ellipsis */

.pagination__ellipsis {
  padding: 0 clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  padding: 0 var(--space-xs);
  color: rgba(0, 0, 0, 0.54);
  color: var(--color-grey);
  font-family: "Roboto Condensed", sans-serif;
  font-family: var(--font-stack-condensed);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  font-size: var(--text-base);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1;
}

/* Responsive Design */

@media (max-width: 768px) {
  .pagination {
    padding: clamp(0.75rem, 0.5rem + 1vw, 1.25rem);
    padding: var(--space-md);
  }

  .pagination__controls {
    flex-wrap: wrap;
    gap: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
    gap: var(--space-sm);
  }

  /* Show mobile select, hide desktop pages */
  .pagination__mobile-select {
    display: flex;
  }

  .pagination__desktop-pages {
    display: none;
  }

  /* Hide button text on mobile, keep icons */
  .pagination__btn-text {
    display: none;
  }

  .pagination__nav-btn {
    min-width: 44px;
    min-width: var(--tap-target-min);
    min-height: 44px;
    min-height: var(--tap-target-min);
    padding: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
    padding: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .pagination__select {
    font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1rem);
    font-size: var(--text-sm);
    padding: 0.5rem 1.75rem 0.5rem 0.625rem;
  }
}

/* Loading State */

.pagination--loading {
  pointer-events: none;
  opacity: 0.6;
  cursor: wait;
}

@keyframes pagination-pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.pagination--loading .pagination__controls {
  animation: pagination-pulse 1.5s ease-in-out infinite;
}

/* Accessibility */

.pagination__page:focus-visible,
.pagination__nav-btn:focus-visible {
  outline: 2px solid #0052a3;
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Hover Effects for Better UX */

.pagination__controls > * {
  transition: all 0.2s ease;
  transition: var(--transition);
}

/* Ensure proper spacing in RTL layouts if needed */

[dir="rtl"] .pagination__left {
  flex-direction: row-reverse;
}

[dir="rtl"] .pagination__right {
  flex-direction: row-reverse;
}

/* Optional: Add a subtle animation on page load */

@keyframes pagination-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pagination {
  animation: pagination-fade-in 0.4s ease-out;
}

.article-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.article-header {
  max-width: 900px;
  margin: auto;
}

.article__pretitle {
  display: block;
  margin-bottom: 0.8rem;
  color: #007bff;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.article__title {
  font-size: clamp(1.5rem, 1.5rem + 1.5vw, 2.5rem);
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 46rem) {

.article__title {
    margin-left: -2%;
    margin-right: -2%;
}
  }

.article__subtitle {
  margin-top: 1rem;
  color: rgba(0, 0, 0, 0.54);
  color: var(--color-grey);
  font-size: clamp(1rem, 1rem + 0.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.article-figure {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  margin: auto;
  margin-top: 2rem;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
}

@media (min-width: 46rem) {

.article-figure {
    width: 90%;
    max-width: 800px;
}
  }

.article__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.article__figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.75rem 1.5rem 1rem;
  background-color: rgba(33, 33, 33, 0.6);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 0.9rem;
  line-height: 1.5;
}

.article-content {
  max-width: 750px;
  margin: auto;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 46rem) {

.article-content {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
  }

.article-audio {
  max-width: 600px;
  margin: auto;
}

.article__source {
  margin-top: 1rem;
  color: rgba(0, 0, 0, 0.54);
  color: var(--color-grey);
  font-size: clamp(1rem, 1rem + 0.5vw, 1.1rem);
}

.tags {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  height: 32px;
  color: #fff;
  -webkit-text-decoration: none;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: #2e72c3;
  background-color: var(--primary-color-tint);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.article-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.article-credits--opinion {
  margin-bottom: 1.5rem;
}

.article-credits--opinion .article-author-figure {
    width: 5rem;
    height: 5rem;
  }

@media (min-width: 61.25rem) {

.article-credits--opinion .article-author-figure {
      width: 4.5rem;
      height: 4.5rem;
  }
    }

.article-credits--opinion .article-dates {
    flex-direction: column;
    gap: 0.2rem;
  }

@media (min-width: 61.25rem) {

.article-credits--opinion .article-dates {
      align-items: flex-end;
      margin-top: 0;
  }
    }

.article-credits--opinion .article-dates__updated {
    font-size: 0.8rem;
  }

.article-credits--opinion .article-dates__updated:before {
      content: none;
    }

.article-author-figure {
  position: relative;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border-radius: var(--radius-full);
  overflow: hidden;
}

@media (min-width: 61.25rem) {

.article-author-figure {
    width: 5.8rem;
    height: 5.8rem;
}
  }

.article-author__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.article-author-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.article-credits {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 46rem) {

.article-credits {
    flex-direction: row;
    justify-content: space-between;
}
  }

.article-dates {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.54);
  color: var(--color-grey);
  align-items: center;
  margin-top: 1rem;
  gap: 1rem;
}

@media (min-width: 46rem) {

.article-dates {
    margin-top: 1.5rem;
}
  }

.article-dates__published {
  font-size: 1rem;
}

.article-dates__updated {
  position: relative;
  font-size: 0.9rem;
  transform: translateY(-0.05rem);
}

.article-dates__updated:before {
    content: "";
    display: block;
    position: absolute;
    left: -0.6rem;
    top: 0.7rem;
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.54);
    background-color: var(--color-grey);
    opacity: 0.8;
  }

.article__disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.54);
  color: var(--color-grey);
}

.related-articles {
  padding-bottom: 3rem;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  gap: 2rem;
}

@media (min-width: 46rem) {

.related-articles-grid {
    grid-template-columns: 1fr 1fr 1fr;
}
  }

.article-gallery {
  position: relative;
  max-width: 900px;
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 46rem) {

.article-gallery {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
  }

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}

@media (min-width: 46rem) {

.gallery-controls {
    display: inline;
    display: initial;
    gap: initial;
    margin-top: 0;
    margin-top: initial;
}
  }

.gallery-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background-color: #e0eeff;
  border: none;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  color: #0052a3;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 550;
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (min-width: 46rem) {

.gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding-bottom: 2px;
    border-radius: 50%;
}
  }

@media (min-width: 46rem) {

.gallery-control:hover {
      transform: translateY(-50%) scale(1.1);
  }
    }

.gallery-control:hover {
    background-color: #cce3ff;
  }

.gallery-control--prev {
  padding-right: 1px;
  left: -65px;
}

.gallery-control--next {
  padding-left: 1px;
  right: -65px;
}

.article-gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;

  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.article-gallery-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

.article-gallery-figure {
  position: relative;
  width: 115px;
  min-width: 115px;
  max-width: 115px;
  height: 90px;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  flex-shrink: 0;
}

@media (min-width: 46rem) {

.article-gallery-figure {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    height: 125px;
}
  }

/* Skeleton Loading State - Modern Progressive Loading */

.article-gallery-figure.skeleton-loading {
  background: linear-gradient(
    90deg,
    #f0f0f0 0%,
    #f8f8f8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 2s ease-in-out infinite;
}

.article-gallery-figure.skeleton-loading .article-gallery__img {
    opacity: 0;
  }

.article-gallery-figure.loaded {
  animation: fadeInItem 0.5s ease forwards;
}

.article-gallery-figure.error {
  background-color: #ffebee;
  border: 0.125rem dashed #ef5350;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes fadeInItem {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.article-gallery__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.article-gallery-figure:hover .article-gallery__img {
  transform: scale(1.05);
}

.article-audios {
  margin-bottom: 1rem;
}

.article-audio__player {
  width: 100%;
}

.article-videos {
  margin-top: 1.3rem;
  margin-bottom: 1.3rem;
}

.article-video iframe {
    display: block;
    width: 100%;
    height: 250px;
    margin: auto;
    border-radius: 4px;
    border-radius: var(--radius-sm);
  }

@media (min-width: 46rem) {

.article-video iframe {
      width: 650px;
      height: 400px;
  }
    }

.article-video-inline iframe {
    display: block;
    width: 100%;
    height: 250px;
    margin: auto;
    border-radius: 4px;
    border-radius: var(--radius-sm);
  }

@media (min-width: 46rem) {

.article-video-inline iframe {
      width: 600px;
      height: 320px;
  }
    }

@media (min-width: 100rem) {

.article-video-inline iframe {
      width: 800px;
      height: 450px;
  }
    }

.rich-text h2 {
    margin-top: 1.25rem;
    font-size: 1.5rem;
  }

.rich-text h3 {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }

.rich-text p {
    margin-top: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
  }

.rich-text p:first-child {
      margin-top: 0;
    }

.rich-text a {
    position: relative;
    color: #0052a3;
    color: var(--primary-color);
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

.rich-text a::after {
      content: "";
      display: inline-block;
      width: 1rem;
      height: 1rem;
      margin-left: 0.3rem;
      background-color: currentColor;
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
              mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
      -webkit-mask-size: contain;
              mask-size: contain;
      -webkit-mask-repeat: no-repeat;
              mask-repeat: no-repeat;
      transform: translateY(1px);
    }

.rich-text strong {
    font-weight: 610;
  }

.rich-text u {
    text-decoration-color: rgba(33, 33, 33, 0.4);
  }

.rich-text ul {
    width: 92%;
    margin: auto;
    margin-top: 1rem;
  }

.rich-text ul li {
      list-style: disc outside none;
      list-style: initial;
    }

.rich-text ol {
    width: 92%;
    margin: auto;
    margin-top: 1rem;
  }

.rich-text ol li {
      list-style: decimal;
    }

.rich-text li {
    margin-top: 0.6rem;
    font-size: clamp(1rem, 1rem + 0.5vw, 1.1rem);
    line-height: 1.4;
  }

.rich-text blockquote {
    border-left: 4px solid #4a90e2;
    margin: 20px 0;
    padding: 15px 20px;
    background: #f5f7ff;
    color: #333;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
    border-radius: 4px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

.rich-text img {
    display: block;
    width: 100%;
    border-radius: 4px;
    margin-top: 1.5rem;
    -o-object-fit: contain;
       object-fit: contain;
  }

.rich-text iframe {
    display: block;
    width: 100%;
    max-width: 35rem;
    height: 16rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    -o-object-fit: contain;
       object-fit: contain;
  }

@media (min-width: 46rem) {

.rich-text iframe {
      height: 20rem;
  }
    }

/* ==========================================================================
   Masonry Gallery Styles
   ========================================================================== */

/* Masonry Container */

.gallery-masonry {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  padding: 0;
  min-height: 12.5rem;
}

/* Skeleton Loading State - Modern Progressive Loading */

.gallery-item.skeleton-loading {
  background: linear-gradient(
    90deg,
    #f0f0f0 0%,
    #f8f8f8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 2s ease-in-out infinite;
}

.gallery-item.skeleton-loading .gallery-item__img {
    opacity: 0;
  }

.gallery-item.skeleton-loading .gallery-item__caption {
    display: none;
  }

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Gallery Items */

.gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 3px 5px 5px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  transition: var(--transition-base);
  cursor: pointer;
}

.gallery-item:hover {
    box-shadow: 0 3px 5px 5px rgba(33, 33, 33, 0.1);
    box-shadow: var(--shadow-lg);
  }

.gallery-item:hover .gallery-item__img {
      transform: scale(1.07);
    }

.gallery-item:hover .gallery-item__caption {
      opacity: 1;
      transform: translateY(0);
    }

.gallery-item:active {
    box-shadow: 0 3px 5px 5px rgba(33, 33, 33, 0.1);
    box-shadow: var(--shadow-lg);
  }

.gallery-item--index .gallery-item__caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(33, 33, 33, 0.2) 40%,
      rgba(0, 18, 36, 0.7) 75%
    );
    color: white;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 700;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

.gallery-item.loaded {
  animation: fadeInItem 0.5s ease forwards;
}

@keyframes fadeInItem {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gallery-item.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.gallery-item.error {
  border: 1px dashed #ffadab;
}

/* Gallery Images */

.gallery-item__img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
  transition: var(--transition-base);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Image Captions */

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    transparent 100%
  );
  color: white;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0;
  transform: translateY(0.75rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    transparent 100%
  );
}

.gallery-overlay__title {
  color: #fff;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.gallery-overlay-count {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  color: #fff;
  color: var(--color-white);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0.7;
}

/* ==========================================================================
   Enhanced Lightbox Styles with Loading States
   ========================================================================== */

.lightbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
    display: block;
    opacity: 1;
  }

.lightbox__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image Container - wraps image and loader */

.lightbox__image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90%;
  max-width: 62.5rem;
}

.lightbox__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

/* Show image with zoom animation when loaded */

.lightbox.active .lightbox__image {
    animation: lightboxZoomIn 0.3s ease;
  }

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Loading Spinner */

.lightbox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.75rem;
  height: 3.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Show spinner when loading */

.lightbox__image-container.loading .lightbox__spinner {
    opacity: 1;
  }

/* Spinner animation */

.lightbox__spinner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.25rem solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  animation: lightboxSpin 0.8s linear infinite;
}

@keyframes lightboxSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Alternative loader styles */

/* Dots Loader */

.lightbox__spinner.dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  animation: dotPulse 1.4s ease-in-out infinite;
  animation-delay: 0.4s;
}

.lightbox__spinner.dots::before,.lightbox__spinner.dots::after {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #fff;
    animation: dotPulse 1.4s ease-in-out infinite;
  }

.lightbox__spinner.dots::after {
    animation-delay: 0.2s;
  }

@keyframes dotPulse {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulse Loader */

.lightbox__spinner.pulse::after {
  border: none;
  background-color: rgba(255, 255, 255, 0.8);
  animation: pulseScale 1.2s ease-in-out infinite;
}

@keyframes pulseScale {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Lightbox Controls */

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  transition: all 0.2s ease;
  cursor: pointer;
  z-index: 10000;
  border: none;
  outline: none;
}

.lightbox__close:hover,.lightbox__prev:hover,.lightbox__next:hover {
    opacity: 0.7;
  }

/* Disable navigation during loading */

.lightbox__image-container.loading ~ .lightbox__prev,.lightbox__image-container.loading ~ .lightbox__next {
    opacity: 0.3;
    pointer-events: none;
  }

.lightbox__close {
  top: 1.125rem;
  right: 0.9375rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: transparent;
  font-size: 1.875rem;
  opacity: 0.7;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 3.125rem;
  height: 3.125rem;
  padding-bottom: 0.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.lightbox__prev {
  left: 1.875rem;
  padding-right: 0.125rem;
}

.lightbox__next {
  right: 1.875rem;
  padding-left: 0.125rem;
}

/* Lightbox Caption */

.lightbox__caption {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 37.5rem;
  padding: 0.75rem 1.5rem;
  background-color: rgba(33, 33, 33, 0.7);
  border-radius: 4px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  transition: opacity 0.3s ease;
}

/* Hide caption during loading */

.lightbox__image-container.loading ~ .lightbox__caption {
    opacity: 0.5;
  }

/* Lightbox Counter */

.lightbox__counter {
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 650;
  opacity: 0.7;

  /* Loading indicator next to counter */
}

.lightbox__counter::after {
    content: "";
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    margin-left: 0.5rem;
    border-radius: 50%;
    border: 0.125rem solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    opacity: 0;
    animation: lightboxSpin 0.6s linear infinite;
    transition: opacity 0.2s ease;
  }

.lightbox__image-container.loading ~ .lightbox__counter::after {
    opacity: 1;
  }

/* Mobile responsiveness */

@media (min-width: 61.25rem) {
  .lightbox__prev,
  .lightbox__next {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.75rem;
  }

  .lightbox__prev {
    left: 0.625rem;
  }

  .lightbox__next {
    right: 0.625rem;
  }

  .lightbox__close {
    top: 0.625rem;
    right: 0.625rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }

  .lightbox__caption {
    bottom: 3.75rem;
    max-width: 90%;
    font-size: 0.85rem;
    padding: 0.625rem 1rem;
  }

  .lightbox__counter {
    top: 0.9375rem;
    left: 0.9375rem;
    font-size: 0.8rem;
  }

  .lightbox__spinner {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.share {
  margin-top: 1.5rem;
}

.share__label {
  display: block;
  color: $color-accent;
  font-size: 1.6rem;
  font-weight: 550;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.share-icons {
  display: none;
  content-visibility: hidden;
}

@media (min-width: 46rem) {

.share-icons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    content-visibility: visible;
}
  }

.share-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  max-width: 10rem;
  height: 2.4rem;
  margin: auto;
  background-color: #e0eeff;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 100ms linear;
}

.share-mobile:hover {
    background-color: #cce3ff;
  }

@media (min-width: 46rem) {

.share-mobile {
    display: none;
    content-visibility: hidden;
}
  }

.share-mobile__svg {
  width: 18px;
  height: 18px;
  fill: #0052a3;
  fill: var(--primary-color);
}

.share-mobile__label {
  color: #0052a3;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.share--fill {
  max-width: 100%;
}

.share--centered {
  margin-right: auto;
  margin-left: auto;
}

.share--centered .share__label {
    text-align: center;
  }

.share--centered .share-icons {
    justify-content: center;
  }

.share--push-left .share-icons {
    transform: translateX(-15px);
  }

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.2rem;
  background-color: #e0eeff;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 100ms linear;
}

.share-icon:hover {
    transform: #cce3ff;
  }

.share-svg {
  width: 24px;
  height: 24px;
  fill: #0052a3;
  fill: var(--primary-color);
}

.share-facebook svg {
    /* fill: #3b5998; */
  }

.share-twitter svg {
    width: 18px;
    height: 18px;
    /* fill: #000; */
  }

.share-whatsapp svg {
    width: 22px;
    height: 22px;
    /* fill: #25d366; */
  }

.share-linkedin svg {
    /* fill: #0a66c2; */
  }

.share-telegram svg {
    /* fill: #0088cc; */
  }

.share-copy svg {
    width: 18px;
    height: 18px;
  }

.share-email svg {
    width: 20px;
    height: 20px;
  }

.share-native svg {
    width: 20px;
    height: 20px;
  }

/* Footer */

.footer {
  background: #0052a3;
  background: var(--primary-color);
  color: #fff;
  color: var(--color-white);
  padding-top: 4rem;
  padding-bottom: 3rem;
}

@media (min-width: 46rem) {

.footer {
    padding-top: 3rem;
    padding-bottom: 2rem;
}
  }

.footer-wrapper {
  display: grid;
  grid-gap: 2rem;
  gap: 2rem;
}

@media (min-width: 46rem) {

.footer-wrapper {
    gap: initial;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr;
}
  }

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 46rem) {

.footer-logo {
    justify-content: initial;
}
  }

.footer-logo__img {
  display: block;
  width: max(8.5rem, min(15vw, 9rem));
  height: auto;
  margin: auto;
  filter: brightness(0) invert(1);
  content-visibility: auto;
}

.footer__heading {
  margin-bottom: 0.4rem;
  color: #fff;
  color: var(--color-white);
  font-family: "Roboto Condensed", sans-serif;
  font-family: var(--font-stack-condensed);
  font-size: calc(1.3rem - 0.25vw);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 46rem) {

.footer__heading {
    text-align: left;
    text-align: initial;
}
  }

.footer__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  color: var(--color-white-tint);
  font-size: clamp(0.95rem, 1.4rem - 0.6vw, 1.15rem);
  line-height: 1.4;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__link:hover {
    color: #fff;
    color: var(--color-white);
    transform: translateX(3px);
  }

@media (min-width: 46rem) {

.footer__link {
    text-align: left;
    text-align: initial;
    justify-content: initial;
}
  }

.footer__link svg {
    opacity: 0.7;
  }

@media (min-width: 46rem) {

.footer__link--capped {
    max-width: 10rem;
}
  }

.footer-content--flex {
  display: flex;
  justify-content: center;
}

@media (min-width: 46rem) {

.footer-content--flex {
    justify-content: flex-end;
}
  }

.footer-list--flex {
  align-self: center;
}

.footer-credits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid var(--color-border-white);
  color: rgba(255, 255, 255, 0.8);
  color: var(--color-white-tint);
  font-size: clamp(0.95rem, 1.4rem - 0.6vw, 1.15rem);
  text-align: center;
}

@media (min-width: 46rem) {

.footer-credits {
    flex-direction: row;
    justify-content: space-between;
    gap: initial;
    text-align: left;
    text-align: initial;
}
  }

:root {
  --csstools-color-scheme--light: initial;
  color-scheme: light;
}

/* Container */

.container {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 75rem) {

.container {
    width: 100%;
    max-width: 1100px;
}
  }

@media (min-width: 100rem) {

.container {
    max-width: 1200px;
}
  }

/* Container */

.container--smaller {
  width: 90%;
  max-width: 1000px;
}

.news-container {
  background: var(--bg-light);
  padding: 1.5rem 0;
}

/* Content Grid */

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* Component Styles - Mobile First with Nested Queries */

/* Sidebar Widget */

.sidebar-widget {
  background: var(--bg-white);
  border-radius: 4px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget--highlight {
  background: linear-gradient(
    135deg,
    #0052a3 0%,
    var(--primary-color-dark) 100%
  );
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-color-dark) 100%
  );
  color: white;
}

.sidebar-widget__title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid var(--color-border);
}

.sidebar-widget--highlight .sidebar-widget__title {
  border-bottom-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* Most Read List */

.most-read-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .most-read-list {
    gap: 1rem;
  }
}

.most-read-item {
  position: relative;
}

.most-read-item__link {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 4px;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s ease;
  transition: var(--transition);
}

.most-read-item__link:hover {
  background: var(--bg-light);
}

@media (min-width: 768px) {
  .most-read-item__link {
    gap: 1rem;
    padding: 1rem;
  }
}

.most-read-item__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  background: #0052a3;
  background: var(--primary-color);
  color: white;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .most-read-item__number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
  }
}

.most-read-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
  min-width: 0;
}

.most-read-item__title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (min-width: 768px) {
  .most-read-item__title {
    font-size: 1rem;
  }
}

.most-read-item__views {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .most-read-item__views {
    font-size: 0.8125rem;
  }
}

/* Newsletter Form */

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form__description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (min-width: 768px) {
  .newsletter-form__description {
    font-size: 0.9375rem;
  }
}

.newsletter-form__group {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 0.9375rem;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transition: all 0.2s ease;
  transition: var(--transition);
}

.newsletter-form__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-form__button {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  transition: var(--transition);
}

.newsletter-form__button:hover {
  background: rgba(255, 255, 255, 0.35);
}

.newsletter-form__button {
  padding: 0.75rem 1.5rem;
  background: #007bff;
  background: var(--accent-color, rgb(0, 101, 176));
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

@supports (color: color(display-p3 0 0 0%)) {
.newsletter-form__button {
  background: var(--accent-color, rgb(0, 101, 176));
}

@media (color-gamut: p3) {
.newsletter-form__button {
  background: var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
}
}
}

.newsletter-form__button:hover {
    opacity: 0.9;
  }

.newsletter-form__button:active {
    scale: 0.98;
  }

.newsletter-form__privacy {
  font-size: 0.75rem;
  color: rgb(128, 128, 128);
  margin: 0;
}

/* Poll Widget */

.poll-widget {
  padding: 1.5rem;
  background: rgb(255, 255, 255);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
}

@media (min-width: 48rem) {

.poll-widget {
    padding: 2rem;
}
  }

.poll-widget__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(22, 22, 22);
  margin: 0 0 1.5rem 0;
}

@media (min-width: 48rem) {

.poll-widget__title {
    font-size: 1.375rem;
}
  }

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.poll-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.poll-option:has(:checked) {
    border-color: #007bff;
    border-color: var(--accent-color, rgb(0, 101, 176));
    background: rgba(0, 123, 255, 0.05);
  }

@supports (color: color(display-p3 0 0 0%)) {
.poll-option:has(:checked) {
    border-color: var(--accent-color, rgb(0, 101, 176));
  }

@media (color-gamut: p3) {
.poll-option:has(:checked) {
    border-color: var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
  }
}
}

@supports (color: lab(from red l 1 1% / calc(alpha + 0.1))) {
.poll-option:has(:checked) {
    background: oklch(
      from var(--accent-color, rgb(0, 101, 176)) l c h / 0.05
    );
  }
}

@supports (color: color(display-p3 0 0 0%)) and (color: lab(from red l 1 1% / calc(alpha + 0.1))) {
.poll-option:has(:checked) {
    background: oklch(
      from var(--accent-color, rgb(0, 101, 176)) l c h / 0.05
    );
  }

@media (color-gamut: p3) {
.poll-option:has(:checked) {
    background: oklch(
      from var(--accent-color, color(display-p3 0.1438 0.38895 0.68367)) l c h / 0.05
    );
  }
}
}

.poll-option:hover {
    border-color: #007bff;
    border-color: var(--accent-color, rgb(0, 101, 176));
  }

@supports (color: color(display-p3 0 0 0%)) {
.poll-option:hover {
    border-color: var(--accent-color, rgb(0, 101, 176));
  }

@media (color-gamut: p3) {
.poll-option:hover {
    border-color: var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
  }
}
}

.poll-option__input {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}

.poll-option__label {
  font-size: 0.9375rem;
  color: rgb(22, 22, 22);
  cursor: pointer;
}

.poll-submit {
  width: 100%;
  padding: 0.875rem;
  background: #007bff;
  background: var(--accent-color, rgb(0, 101, 176));
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

@supports (color: color(display-p3 0 0 0%)) {
.poll-submit {
  background: var(--accent-color, rgb(0, 101, 176));
}

@media (color-gamut: p3) {
.poll-submit {
  background: var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
}
}
}

.poll-submit:hover {
    opacity: 0.9;
  }

.poll-submit:active {
    scale: 0.98;
  }

.poll-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.poll-result {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.poll-result__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.poll-result__text {
  font-size: 0.9375rem;
  color: rgb(22, 22, 22);
  font-weight: 500;
}

.poll-result__percentage {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #007bff;
  color: var(--accent-color, rgb(0, 101, 176));
}

@supports (color: color(display-p3 0 0 0%)) {
.poll-result__percentage {
  color: var(--accent-color, rgb(0, 101, 176));
}

@media (color-gamut: p3) {
.poll-result__percentage {
  color: var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
}
}
}

.poll-result__bar {
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  overflow: hidden;
}

.poll-result__fill {
  height: 100%;
  background: #007bff;
  background: var(--accent-color, rgb(0, 101, 176));
  transition: width 0.5s ease-in-out;
}

@supports (color: color(display-p3 0 0 0%)) {
.poll-result__fill {
  background: var(--accent-color, rgb(0, 101, 176));
}

@media (color-gamut: p3) {
.poll-result__fill {
  background: var(--accent-color, color(display-p3 0.1438 0.38895 0.68367));
}
}
}

.poll-result__votes {
  font-size: 0.75rem;
  color: rgb(99, 99, 99);
}

.poll-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(72, 72, 72);
}

.poll-expired {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: rgb(72, 72, 72);
  text-align: center;
}

/* Category List */

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-list__item {
  margin: 0;
}

.category-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.9375rem;
  color: var(--text-primary);
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s ease;
  transition: var(--transition);
}

.category-list__link:hover {
  background: var(--bg-light);
  color: #0052a3;
  color: var(--primary-color);
}

.category-list__count {
  padding: 0.25rem 0.5rem;
  background: var(--bg-light);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Tag Cloud */

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-cloud__tag {
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--text-primary);
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s ease;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
}

.tag-cloud__tag:hover {
  background: #0052a3;
  background: var(--primary-color);
  color: white;
  border-color: #0052a3;
  border-color: var(--primary-color);
}

/* Breaking News */

.breaking-news {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: #0052a3;
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px 4px rgba(33, 33, 33, 0.07);
  box-shadow: var(--shadow-sm);
}

.breaking-news__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.breaking-news__label svg {
  width: 14px;
  height: 14px;
}

.breaking-news__ticker {
  flex: 1;
  overflow: hidden;
}

.breaking-news__content {
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

.breaking-news__item {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Visually Hidden */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
