:root {
  --navy: #052d66;
  --red: #d2262b;
  --text: #062e64;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.topline {
  height: 34px;
  background: #000;
  color: #fff;
  font-size: 12px;
}
.topline > div {
  width: min(1340px, calc(100% - 40px));
  margin: auto;
  text-align: right;
  padding-top: 8px;
}
header {
  height: 68px;
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.bar {
  width: min(1340px, calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
}
.logo {
  display: inline-flex;
  align-items: flex-start;
  color: #fff;
  font-weight: 900;
  min-width: 118px;
}
.logo span {
  font-size: 54px;
  line-height: 0.8;
  letter-spacing: -8px;
}
.logo b {
  font-size: 14px;
  background: #22a9df;
  margin: 15px 0 0 1px;
  padding: 1px 3px;
}
.bar nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.bar nav a {
  text-transform: uppercase;
  font-size: 12px;
}
.bar nav a:hover {
  color: #52c7f1;
}
.search-button {
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 36px;
  cursor: pointer;
}
.search-popover {
  position: absolute;
  right: 0;
  top: 58px;
  width: 420px;
  background: #fff;
  border-radius: 8px;
  padding: 37px 14px 14px;
  box-shadow: 0 14px 45px #001b3c36;
}
.search-popover[hidden] {
  display: none;
}
.search-close {
  position: absolute;
  right: 15px;
  top: 7px;
  border: 0;
  background: none;
  color: #64748b;
  font-size: 26px;
}
.search-popover input {
  width: 100%;
  border: 1px solid #183b65;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 15px;
}
main {
  width: min(1340px, calc(100% - 40px));
  margin: 20px auto 70px;
  /* Keep the footer below the initial viewport while the app replaces its
     loading shell. Without this reservation the footer is painted early and
     then pushed several screens down, which is the dominant CLS source. */
  min-height: calc(100vh - 102px);
  min-height: calc(100svh - 102px);
}
.loading {
  text-align: center;
  padding: 120px 0;
  color: #607087;
}
.loading span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 3px solid #dce6f0;
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(330px, 0.9fr);
  gap: 10px;
}
.lead-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 202px 202px;
  gap: 10px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  color: #fff;
  min-height: 0;
}
.tile.large {
  grid-row: span 2;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.83));
}
.tag,
.tile-date {
  position: absolute;
  top: 10px;
  font-size: 12px;
}
.tag {
  left: 10px;
  background: var(--navy);
  padding: 5px 7px;
  text-transform: uppercase;
  font-weight: 700;
}
.tile-date {
  right: 10px;
}
.tile h2 {
  position: absolute;
  bottom: 14px;
  left: 15px;
  right: 15px;
  margin: 0;
  font-size: 17px;
  line-height: 1.12;
  color: #fff;
}
.tile.large h2 {
  font-size: 30px;
}
.small-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.small-pair .tile h2 {
  font-size: 16px;
}
aside > h2,
.section-title h1,
.section-title h2 {
  font-size: 20px;
  margin: 0 0 16px;
  border-bottom: 1px solid var(--navy);
  padding: 0 5px 6px;
}
.latest {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 13px;
  margin-bottom: 10px;
}
.latest img {
  width: 115px;
  height: 85px;
  object-fit: cover;
  border-radius: 5px;
}
.latest b {
  font-size: 12px;
  color: var(--red);
  text-transform: uppercase;
}
.latest h3 {
  font-size: 16px;
  line-height: 1.18;
  margin: 3px 0;
}
.meta {
  font-size: 12px;
  color: #68717b;
  margin: 9px 0;
}
.latest .meta {
  margin: 3px 0;
}
.featured {
  background: var(--navy);
  color: #fff;
  margin-top: 12px;
  padding: 14px;
  border-radius: 5px;
}
.featured > h2 {
  font-size: 20px;
  margin: 0 0 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid #fff;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.featured .card h3,
.featured .meta {
  color: #fff;
}
.section-title {
  margin-top: 26px;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 14px;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}
.card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  color: #071f3f;
}
.archive-grid .card.card-progressive {
  opacity: 0;
  transform: translateY(10px);
}
.archive-grid .card.card-progressive-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.featured .card img {
  height: 210px;
}
.featured .card h3 {
  font-size: 18px;
}
.single {
  max-width: 920px;
  margin: 35px auto;
  color: #15243a;
}
.single-category {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.single h1 {
  font-size: 44px;
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 14px;
}
.single-meta {
  font-size: 13px;
  color: #68717b;
  margin-bottom: 24px;
}
.single-hero {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 28px;
}
.single-content {
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.72;
  color: #202735;
}
.single-content img,
.single-content iframe,
.single-content video {
  max-width: 100%;
  height: auto;
}
.single-content .wp-block-embed.is-type-video {
  width: 100%;
  margin: 28px 0;
}
.single-content .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.single-content .wp-block-embed.is-type-video iframe,
.single-content iframe[src*="youtube.com/embed"],
.single-content iframe[src*="player.vimeo.com"] {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.single-content a {
  color: #0755a5;
  text-decoration: underline;
}
.empty {
  text-align: center;
  padding: 100px 0;
}
footer {
  background: var(--navy);
  color: #fff;
  min-height: 150px;
  padding: 35px max(20px, calc((100% - 1340px) / 2));
  display: flex;
  align-items: center;
  gap: 30px;
  content-visibility: auto;
  contain-intrinsic-size: 150px;
}
@media (max-width: 1050px) {
  .bar nav {
    gap: 12px;
  }
  .bar nav a:nth-child(n + 8) {
    display: none;
  }
  .lead-layout {
    grid-template-columns: 1fr;
  }
  .lead-grid {
    height: 620px;
    grid-template-rows: repeat(2, 1fr);
  }
  aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  aside > h2 {
    grid-column: 1/-1;
  }
  .archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .topline {
    display: none;
  }
  header {
    height: 62px;
  }
  .bar {
    width: calc(100% - 28px);
  }
  .bar nav {
    display: none;
  }
  .logo {
    min-width: auto;
    flex: 1;
  }
  .logo span {
    font-size: 46px;
  }
  .search-popover {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    width: auto;
  }
  main {
    width: calc(100% - 28px);
    margin-top: 14px;
  }
  .lead-grid {
    display: flex;
    overflow-x: auto;
    height: auto;
    scroll-snap-type: x mandatory;
  }
  .tile,
  .tile.large,
  .small-pair {
    flex: 0 0 88%;
    height: 370px;
    display: block;
    scroll-snap-align: start;
  }
  .small-pair {
    display: flex;
  }
  .small-pair .tile {
    flex: 0 0 100%;
  }
  .tile.large h2 {
    font-size: 25px;
  }
  aside {
    display: block;
    margin-top: 20px;
  }
  .featured {
    margin-left: -14px;
    margin-right: -14px;
    border-radius: 0;
  }
  .featured-grid {
    display: flex;
    overflow-x: auto;
  }
  .featured .card {
    flex: 0 0 82%;
  }
  .archive-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 10px;
  }
  .card img {
    height: 145px;
  }
  .card h3 {
    font-size: 16px;
  }
  .single {
    margin-top: 22px;
  }
  .single h1 {
    font-size: 31px;
  }
  .single-content {
    font-size: 18px;
  }
  .single-hero {
    margin-left: -14px;
    width: calc(100% + 28px);
    border-radius: 0;
  }
  footer {
    display: block;
  }
  footer p {
    margin-top: 25px;
  }
}
@media (max-width: 430px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
  .card img {
    height: 215px;
  }
}
.topline > div {
  height: 100%;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: initial;
}
.top-links {
  margin-left: auto;
  text-align: right;
}
.tvpg-admin-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.tvpg-admin-menu a {
  position: relative;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 34px;
  white-space: nowrap;
}
.tvpg-admin-menu a + a:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 11px;
  width: 1px;
  height: 12px;
  background: #64748b;
}
.tvpg-admin-menu a:hover {
  color: #52c7f1;
}
.tvpg-admin-edit[hidden] {
  display: none;
}
.home-banner {
  width: 100%;
  overflow: hidden;
  background: #f1f3f5;
}
.home-banner,
.home-banner a,
.home-banner img {
  display: block;
}
.home-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.home-banner-top {
  margin-bottom: 10px;
}
.home-banner-right {
  margin-bottom: 14px;
}
@media (max-width: 1050px) {
  .home-banner-right {
    grid-column: 1/-1;
  }
  .home-banner-right img {
    max-height: 180px;
    object-position: left center;
  }
}
@media (max-width: 700px) {
  .home-banner-top {
    margin-left: -14px;
    width: calc(100% + 28px);
  }
  .home-banner-right {
    margin-bottom: 18px;
  }
}
.documents-page {
  max-width: 1200px;
  margin: 0 auto;
}
.documents-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.9fr);
  gap: 30px;
}
.documents-list {
  display: grid;
  align-content: start;
}
.document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 39px;
  padding: 8px 10px;
  border-bottom: 1px solid #e6e8eb;
  color: #151515;
  font-weight: 600;
}
.document-item:hover {
  color: #0755a5;
  background: #f8fafc;
}
.document-item svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 17px;
}
.documents-search {
  align-self: start;
  padding: 12px;
  background: #f3f3f3;
  border-radius: 5px;
}
.documents-search label {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}
.documents-search input {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #c8ced6;
  border-radius: 4px;
  background: #fff;
  font: inherit;
}
.documents-empty {
  padding: 20px 10px;
  color: #68717b;
}
.site-footer {
  display: block;
  min-height: 0;
  padding: 0;
  background: #f4f4f4;
  color: #071f3f;
  /* The footer is inexpensive to render. Rendering it normally avoids the
     intrinsic 260px placeholder being replaced by a much taller mobile
     footer when it approaches the viewport. */
  content-visibility: visible;
  contain-intrinsic-size: none;
}
.footer-main {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
  padding: 30px 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.75fr 1.2fr;
  gap: 26px;
  align-items: start;
}
.footer-links {
  display: grid;
}
.footer-links a {
  padding: 7px 8px;
  border-bottom: 1px dashed var(--navy);
  font-size: 16px;
}
.footer-links a:last-child {
  border-bottom: 0;
}
.footer-links a:hover,
.footer-map-link:hover {
  color: #0755a5;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: #fff;
}
.footer-social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.footer-facebook {
  background: #1877f2;
}
.footer-x {
  background: #000;
}
.footer-linkedin {
  background: #0a66c2;
}
.footer-whatsapp {
  background: #20c76a;
}
.footer-map-link {
  padding: 7px 4px;
  font-size: 16px;
}
.footer-bottom {
  padding: 18px 20px;
  background: #666;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .documents-layout {
    grid-template-columns: 1fr;
  }
  .documents-search {
    grid-row: 1;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-social {
    padding: 5px 8px;
  }
  .document-item {
    padding-left: 4px;
    padding-right: 4px;
  }
}
.documents-more {
  padding-top: 22px;
}
.documents-more[hidden] {
  display: none;
}
.info-page {
  max-width: 1050px;
  margin: 0 auto;
}
.info-page .section-title {
  margin-top: 0;
}
.info-page-content {
  color: #202735;
  font:
    17px/1.7 Arial,
    Helvetica,
    sans-serif;
}
.info-page-content h2,
.info-page-content h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  line-height: 1.25;
}
.info-page-content p {
  margin: 0 0 16px;
}
.info-page-content img,
.info-page-content iframe,
.info-page-content video {
  max-width: 100%;
  height: auto;
}
.info-page-content a {
  color: #0755a5;
  text-decoration: underline;
}
.info-page-content table {
  width: 100%;
  border-collapse: collapse;
}
.info-page-content th,
.info-page-content td {
  padding: 9px;
  border: 1px solid #dce1e7;
}
.menu-button,
.menu-close {
  display: none;
}
.search-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 8px;
}
.search-button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
}
.menu-overlay[hidden] {
  display: none;
}
@media (max-width: 700px) {
  body.menu-open {
    overflow: hidden;
  }
  .bar {
    gap: 8px;
  }
  .bar .logo {
    margin-right: auto;
    flex: 0 1 auto;
  }
  .search-button {
    flex: 0 0 44px;
  }
  .menu-button {
    display: flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }
  .menu-button span {
    display: block;
    width: 27px;
    height: 4px;
    border-radius: 3px;
    background: #fff;
  }
  .bar nav {
    position: fixed;
    z-index: 32;
    display: flex;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    height: 100dvh;
    padding: 76px 28px 30px;
    background: #030303;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    box-shadow: -12px 0 36px rgba(0, 0, 0, 0.25);
    transform: translateX(102%);
    visibility: hidden;
    transition:
      transform 0.32s cubic-bezier(0.22, 0.75, 0.2, 1),
      visibility 0s linear 0.32s;
  }
  .menu-open .bar nav {
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }
  .bar nav a {
    display: block !important;
    padding: 13px 16px;
    color: #fff;
    font-size: 16px;
    text-transform: none;
  }
  .bar nav a:hover {
    color: #52c7f1;
  }
  .menu-close {
    position: absolute;
    display: grid;
    place-items: center;
    right: 22px;
    top: 18px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font: 700 34px/1 Arial;
    cursor: pointer;
  }
  .menu-overlay {
    position: fixed;
    z-index: 19;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .menu-open .menu-overlay {
    opacity: 1;
  }
  .search-popover {
    z-index: 40;
    top: 68px;
  }
  .logo img {
    width: 86px;
    height: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bar nav,
  .menu-overlay {
    transition: none;
  }
}
.home-category-sections {
  margin-top: 20px;
}
.home-section-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(330px, 0.9fr);
  gap: 10px;
  align-items: start;
}
.home-category-section {
  min-width: 0;
  margin-top: 10px;
}
.home-category-grid {
  display: grid;
  gap: 22px 10px;
}
.home-lazy-section[data-home-mode="grid"] .home-lazy-content {
  min-height: 520px;
}
.home-lazy-section[data-home-mode="latest"] .home-lazy-content {
  min-height: 430px;
}
.home-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.home-category-grid .card img {
  height: 180px;
}
.home-category-grid .card h3 {
  font-size: 16px;
}
.home-category-grid .meta {
  margin: 7px 0;
}
.home-section-side {
  position: sticky;
  top: 88px;
  align-self: start;
  display: block;
  margin-top: 10px;
  min-width: 0;
}
.home-side-list > h2 {
  margin: 0 0 14px;
  padding: 0 4px 6px;
  border-bottom: 1px solid var(--navy);
  font-size: 18px;
}
.home-side-list .latest {
  grid-template-columns: 96px 1fr;
}
.home-side-list .latest img {
  width: 96px;
  height: 72px;
}
.home-side-list .latest h3 {
  font-size: 14px;
}
.home-banner-section {
  margin-bottom: 20px;
}
.home-banner-section img {
  max-height: 190px;
}
.home-section-last {
  width: calc((100% - 10px) * 0.709677);
}
@media (max-width: 900px) {
  .home-section-row {
    grid-template-columns: 1fr;
  }
  .home-section-side {
    position: static;
    top: auto;
    display: block;
  }
  .home-section-last {
    width: 100%;
  }
  .home-columns-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }
  .tile,
  .tile.large,
  .small-pair {
    display: block;
    min-width: 0;
    flex: none;
    width: auto;
    height: 195px;
  }
  .tile.large {
    grid-column: 1/-1;
    height: 300px;
  }
  .small-pair {
    display: contents;
  }
  .small-pair .tile {
    height: 195px;
  }
  .tile h2,
  .small-pair .tile h2 {
    font-size: 15px;
  }
  .tile.large h2 {
    font-size: 25px;
  }
  .home-category-sections {
    margin-top: 15px;
  }
  .home-columns-3,
  .home-columns-4 {
    grid-template-columns: 1fr 1fr;
  }
  .home-category-grid .card img {
    height: 145px;
  }
  .home-category-grid .card h3 {
    font-size: 15px;
  }
  .home-lazy-section[data-home-mode="grid"] .home-lazy-content {
    min-height: 700px;
  }
  .home-side-list .latest {
    grid-template-columns: 105px 1fr;
  }
  .home-side-list .latest img {
    width: 105px;
    height: 78px;
  }
}
.home-section-loader {
  grid-column: 1/-1;
  display: flex;
  min-height: 175px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #667385;
  font-size: 14px;
}
.home-section-loader .button-dots i {
  width: 12px;
  height: 12px;
}
.home-side-list .home-section-loader {
  min-height: 125px;
}
.home-section-retry {
  grid-column: 1/-1;
  justify-self: center;
  margin: 35px auto;
  padding: 10px 18px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}
.home-section-retry:hover {
  background: var(--navy);
  color: #fff;
}
.home-category-section > .section-title {
  margin-top: 0;
}
.home-category-section > .section-title h2,
.home-side-list > h2 {
  min-height: 31px;
  margin-bottom: 14px;
  padding-top: 0;
  padding-bottom: 6px;
  line-height: 24px;
}
.home-category-sections > :not(:first-child) {
  margin-top: 30px;
}
.home-stacked-main {
  min-width: 0;
}
.home-stacked-main > .home-category-section + .home-category-section {
  margin-top: 30px;
}
.card-category {
  display: none;
}
@media (max-width: 700px) {
  #category-news.archive-grid,
  #all-news.archive-grid {
    display: block;
  }
  #category-news .card,
  #all-news .card {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 13px;
    min-height: 88px;
    margin: 0 0 10px;
    align-items: start;
  }
  #category-news .card > a:first-child,
  #all-news .card > a:first-child {
    grid-column: 1;
    grid-row: 1/4;
  }
  #category-news .card img,
  #all-news .card img {
    display: block;
    width: 115px;
    height: 85px;
    border-radius: 5px;
    object-fit: cover;
  }
  #category-news .card-category,
  #all-news .card-category {
    display: block;
    grid-column: 2;
    grid-row: 1;
    margin: 1px 0 3px;
    color: var(--red);
    font-size: 12px;
    line-height: 1.1;
    text-transform: uppercase;
  }
  #category-news .card > a:last-child,
  #all-news .card > a:last-child {
    grid-column: 2;
    grid-row: 2;
  }
  #category-news .card h3,
  #all-news .card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.15;
    color: #071f3f;
  }
  #category-news .card .meta,
  #all-news .card .meta {
    grid-column: 2;
    grid-row: 3;
    margin: 4px 0 0;
    font-size: 11px;
    line-height: 1.15;
  }
}
@media (max-width: 700px) {
  .lead-grid > .tile:last-child {
    display: none;
  }
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: -24px;
}
.language-switcher[hidden],
.mobile-bottom-language[hidden] {
  display: none !important;
}
.language-switch {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  filter: saturate(0.75);
  opacity: 0.72;
  transition:
    opacity 0.18s,
    filter 0.18s,
    background 0.18s,
    transform 0.18s;
}
.language-switch:hover,
.language-switch:focus-visible {
  opacity: 1;
  filter: saturate(1);
  transform: translateY(-1px);
}
.language-switch.active {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  opacity: 1;
  filter: saturate(1);
}
@media (max-width: 700px) {
  .bar {
    gap: 6px;
  }
  .search-button {
    flex-basis: 40px;
  }
  .language-switcher {
    flex: 0 0 auto;
    gap: 2px;
    margin-left: -5px;
  }
  .language-switch {
    width: 27px;
    height: 27px;
    font-size: 18px;
  }
  .menu-button {
    flex-basis: 40px;
    width: 40px;
    padding-left: 7px;
    padding-right: 7px;
  }
}
.language-switch[hidden] {
  display: none;
}
.language-switch img {
  display: block;
  width: 19px;
  height: 14.25px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}
.mobile-bottom-nav {
  display: none;
}
@media (max-width: 700px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom, 0px));
  }
  .bar > .language-switcher {
    display: none;
  }
  .mobile-bottom-nav {
    position: fixed;
    z-index: 26;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: calc(64px + env(safe-area-inset-bottom, 0px));
    padding: 3px max(4px, env(safe-area-inset-left, 0px))
      env(safe-area-inset-bottom, 0px) max(4px, env(safe-area-inset-right, 0px));
    border-top: 1px solid #dce3ec;
    background: #fff;
    box-shadow: 0 -7px 24px rgba(0, 28, 65, 0.14);
    transition: transform 0.28s ease;
  }
  .language-switch-disabled .mobile-bottom-nav {
    grid-template-columns: repeat(3, 1fr);
  }
  .mobile-bottom-item,
  .mobile-bottom-language {
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
  }
  .mobile-bottom-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    padding: 4px 2px;
    cursor: pointer;
  }
  .mobile-bottom-item svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: currentColor;
  }
  .mobile-bottom-item span {
    max-width: 100%;
    overflow: hidden;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-bottom-item.active {
    color: #0876a8;
  }
  .mobile-bottom-language {
    display: grid;
    place-items: center;
  }
  .mobile-bottom-language .bottom-language-switch {
    display: grid;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    filter: none;
  }
  .mobile-bottom-language .bottom-language-switch[hidden] {
    display: none;
  }
  .mobile-bottom-language .bottom-language-switch img {
    width: 32px;
    height: 24px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid #d4d9df;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  }
  .menu-open .mobile-bottom-nav {
    transform: translateY(110%);
  }
}
