:root {
  --uh-blue: #284b64;
  --uh-green: #285a50;
  --uh-orange: #be644b;
  --uh-yellow: #dcb43c;
}

body {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  color: var(--uh-blue);
}

/* Header */
.uh-header {
  padding: 0.5rem 1rem 0.75rem;
}

.uh-header-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: stretch;
  column-gap: 1.5rem;
}

.uh-logo-link {
  display: inline-block;
}

.uh-logo img {
  display: block;
  width: 180px;
  height: auto;
}

.uh-header-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-width: 0;
  height: 100%;
}

.uh-header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  width: 100%;
  padding-top: 1rem;
}

.uh-email {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem; /* 13px */
  line-height: 1.4;
  color: var(--uh-blue);
  text-decoration: none;
}

.uh-email:hover,
.uh-email:focus {
  text-decoration: underline;
}

.uh-lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem; /* 13px */
  line-height: 1.4;
  color: var(--uh-blue);
}

.uh-lang-form {
  margin: 0;
}

.uh-lang-link {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--uh-blue);
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

.uh-lang-link:hover,
.uh-lang-link:focus,
.uh-lang-link.is-active {
  text-decoration: underline;
}

.uh-lang-separator {
  color: var(--uh-blue);
  user-select: none;
}

.uh-menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.uh-menu-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 4px 0;
  background: var(--uh-blue);
}

.uh-nav {
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
  width: 100%;
  padding-bottom: 0.5rem;
}

.uh-nav-link {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem; /* 13px */
  line-height: 1.4;
  color: var(--uh-blue);
  text-decoration: none;
  white-space: nowrap;
}

.uh-nav-link:hover,
.uh-nav-link:focus,
.uh-nav-link.is-active {
  text-decoration: underline;
}

/* Tablet / mobile */
@media (max-width: 991.98px) {
  .uh-header {
    padding: 0.75rem 1rem;
  }

  .uh-header-layout {
    grid-template-columns: 140px 1fr;
    column-gap: 1rem;
    align-items: start;
  }

  .uh-logo img {
    width: 140px;
  }

  .uh-header-content {
    justify-content: flex-start;
    align-items: flex-end;
    height: auto;
  }

  .uh-header-top {
    gap: 0.75rem;
    padding-top: 0.25rem;
  }

  .uh-email {
    display: none;
  }

  .uh-menu-toggle {
    display: inline-block;
  }

  .uh-nav {
    width: 100%;
    padding-bottom: 0;
    margin-top: 1rem;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0;
  }

  .uh-nav.collapse:not(.show) {
    display: none;
  }

  .uh-nav.collapse.show {
    display: flex;
    flex-direction: column;
  }

  .uh-nav-link {
    display: block;
    width: 100%;
    padding: 0.35rem 0;
    text-align: right;
    white-space: normal;
  }
}

/* Small mobile */
@media (max-width: 575.98px) {
  .uh-header-layout {
    grid-template-columns: 110px 1fr;
  }

  .uh-logo img {
    width: 110px;
  }

  .uh-header-top {
    gap: 0.6rem;
  }

  .uh-lang-switch {
    font-size: 0.75rem;
  }

  .uh-nav-link {
    font-size: 0.8125rem;
  }
}

/* Hero */
.uh-hero {
  width: 100%;
  overflow: hidden;
}

.uh-hero-image {
  display: block;
  width: 100%;
  height: min(38vw, 420px);
  object-fit: cover;
}

/* Main */
.uh-main {
  padding: 3rem 0;
}

.uh-page-detail {
  padding: 3rem 0 5rem;
}

.uh-page-main-section {
  margin-bottom: 4rem;
}

/* Left column */
.uh-page-meta-image img {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
}

.uh-meta-dates-text {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.0625rem; /* 17px */
  line-height: 1.35;
  color: var(--uh-blue);
}

/* Titles */
.uh-page-title,
.uh-section-title {
  color: var(--uh-blue);
}

.uh-page-title {
  font-family: "Roboto Serif", serif;
  font-weight: 600;
  font-size: 2rem; /* 32px */
  line-height: 1.1;
  margin: 0 0 2rem;
}

.uh-section-title {
  font-family: "Roboto Serif", serif;
  font-weight: 600;
  font-size: 1.625rem; /* 26px */
  line-height: 1.2;
  margin: 0 0 1rem;
}

.uh-richtext h3,
.uh-h3 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.0625rem; /* 17px */
  line-height: 1.35;
  margin: 0 0 0.75rem;
  color: var(--uh-blue);
}

/* Blocks */
.uh-page-block {
  margin-bottom: 3rem;
}

.uh-page-block:last-child {
  margin-bottom: 0;
}

/* Rich text */
.uh-richtext {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem; /* 13px */
  line-height: 1.6;
  color: var(--uh-blue);
}

.uh-richtext p,
.uh-richtext ul,
.uh-richtext ol,
.uh-richtext blockquote {
  margin: 0 0 1rem;
}

.uh-richtext ul,
.uh-richtext ol {
  padding-left: 1.25rem;
}

.uh-richtext li {
  margin-bottom: 0.25rem;
}

.uh-richtext a {
  font-family: "Roboto Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.8125rem; /* 13px */
  color: var(--uh-blue);
  text-decoration: none;
}

.uh-richtext a:hover,
.uh-richtext a:focus {
  text-decoration: underline;
}

/* Images */
.uh-image-card {
  margin: 0;
}

.uh-image-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.uh-image-card-caption {
  margin-top: 0.75rem;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem; /* 13px */
  line-height: 1.4;
  color: var(--uh-blue);
}

/* Footer */
.uh-footer {
  margin-top: 4rem;
}

.uh-footer-partners {
  background: var(--uh-blue);
  color: #fff;
  padding: 1.5rem 0 2rem;
}

.uh-footer-partners-title {
  display: block;
  margin: 0 0 2rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.0625rem; /* 17px */
  line-height: 1.35;
  color: #fff;
}

.uh-footer-partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem 2.5rem;
}

.uh-footer-partners-logos img {
  display: block;
  max-height: 40px;
  width: auto;
}

.uh-footer-main {
  background: #f3f3f1;
  padding: 2.5rem 0 2.75rem;
}

.uh-footer-main-row {
  align-items: start;
}

.uh-footer-branding {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.uh-footer-branding-logo-unesco {
  display: block;
  width: 76px;
  height: auto;
}

.uh-footer-branding-logo-fuh {
  display: block;
  width: 150px;
  height: auto;
}

.uh-footer-address {
  padding-left: 0;
}

.uh-footer-contact {
  margin-left: auto;
  width: fit-content;
  text-align: left;
}

.uh-footer-address p,
.uh-footer-contact p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem; /* 13px */
  line-height: 1.45;
  color: var(--uh-blue);
}

.uh-footer-contact a {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem; /* 13px */
  line-height: 1.45;
  color: var(--uh-blue);
  text-decoration: none;
}

.uh-footer-contact a:hover,
.uh-footer-contact a:focus {
  text-decoration: underline;
}

.uh-footer-contact p.uh-footer-newsletter,
.uh-footer-contact p.uh-footer-newsletter a {
  margin: 0 0 1rem;
  font-family: "Roboto Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.9375rem; /* 15px */
  line-height: 1.4;
}

/* Large tablet / small desktop */
@media (max-width: 1399.98px) {
  .uh-footer-main-row {
    --bs-gutter-x: 2rem;
  }

  .uh-footer-branding {
    gap: 1.25rem;
  }

  .uh-footer-branding-logo-unesco {
    width: 68px;
  }

  .uh-footer-branding-logo-fuh {
    width: 135px;
  }
}

/* Under lg: stacked footer bottom */
@media (max-width: 991.98px) {
  .uh-footer {
    margin-top: 3.5rem;
  }

  .uh-footer-partners {
    padding: 1.5rem 0 1.75rem;
  }

  .uh-footer-partners-title {
    margin-bottom: 1.25rem;
  }

  .uh-footer-partners-logos {
    justify-content: flex-start;
    gap: 1.5rem 2rem;
  }

  .uh-footer-main {
    padding: 2rem 0 2.25rem;
  }

  .uh-footer-main-row {
    --bs-gutter-x: 2rem;
  }

  .uh-footer-branding {
    gap: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .uh-footer-branding-logo-unesco {
    width: 68px;
  }

  .uh-footer-branding-logo-fuh {
    width: 135px;
  }

  .uh-footer-address {
    padding-left: 0;
    margin-bottom: 1rem;
  }

  .uh-footer-contact {
    margin-left: 0;
    width: auto;
    max-width: none;
    text-align: left;
    margin-top: 0.5rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .uh-footer {
    margin-top: 3rem;
  }

  .uh-footer-partners {
    padding: 1.25rem 0 1.5rem;
  }

  .uh-footer-partners-title {
    margin-bottom: 1.25rem;
  }

  .uh-footer-partners-logos {
    justify-content: flex-start;
    gap: 1.25rem 1.5rem;
  }

  .uh-footer-main {
    padding: 1.75rem 0 2rem;
  }

  .uh-footer-main-row {
    --bs-gutter-x: 1.5rem;
  }

  .uh-footer-branding {
    gap: 1rem;
    margin-bottom: 0.75rem;
  }

  .uh-footer-branding-logo-unesco {
    width: 62px;
  }

  .uh-footer-branding-logo-fuh {
    width: 125px;
  }

  .uh-footer-address {
    margin-bottom: 0.75rem;
  }
}

/* Small mobile */
@media (max-width: 575.98px) {
  .uh-footer-partners-logos {
    gap: 1rem 1.25rem;
  }

  .uh-footer-branding {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
