h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure {
  margin-bottom: 15px;
}

.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font: 400 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #111;
  background-color: #fdfdfd;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
p {
  padding-bottom: 0.5rem;
}

/**
 * `main` element
 */
main {
  display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
  padding: 30px 0;
  margin-top: 0;
  padding-top: 0;
  flex: 1;
}

/**
 * Sections
 */
section {
  margin-top: 1.5rem;
}

article {
  margin-bottom: 0;
  padding-bottom: 0;
}

article:not(:last-child) {
  margin-bottom: 0.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 14px;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

h1 {
  font-size: 20.8px;
}

h2 {
  font-size: 19.2px;
}

h3 {
  font-size: 17.6px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14.4px;
}

h6 {
  font-size: 12.8px;
}

/**
 * Links
 */
a {
  color: #2a7ae2;
  text-decoration: none;
}
a:visited {
  color: rgb(22.9483471074, 86.2541322314, 168.5516528926);
}
a:hover {
  color: #111;
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: #828282;
  border-left: 4px solid #e8e8e8;
  padding-left: 15px;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-size: 15px;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  background-color: #eef;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Tables
 */
table {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  color: rgb(62.9, 62.9, 62.9);
  border-collapse: collapse;
  border: 1px solid #e8e8e8;
}
table tr:nth-child(even) {
  background-color: rgb(247.3, 247.3, 247.3);
}
table th, table td {
  padding: 9.999999999px 15px;
}
table th {
  background-color: rgb(239.65, 239.65, 239.65);
  border: 1px solid rgb(221.8, 221.8, 221.8);
  border-bottom-color: rgb(201.4, 201.4, 201.4);
}
table td {
  border: 1px solid #e8e8e8;
}

/**
 * Contact form
 */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #ced4e0;
  border-radius: 0.75rem;
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #005293;
  box-shadow: 0 0 0 3px rgba(0, 82, 147, 0.2);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  background: #005293;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form button:hover {
  background: #003f71;
}

/**
 * Wrapper
 */
.wrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  margin-right: 0;
  margin-left: 0;
  padding-right: 30px;
  padding-left: 30px;
}

/**
 * Home layout
 */
.home-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.home-column {
  background: #fff;
  border: 1px solid #e2e6ed;
  border-radius: 0.85rem;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.home-column-header {
  margin-bottom: 1rem;
}

.home-column-header h2 {
  margin: 0;
}

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

.home-item {
  margin: 0;
}

.home-item-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5b6777;
  margin: 0 0 0.25rem;
}

.home-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.home-item-summary {
  margin: 0;
  color: #3f4a58;
  font-size: 0.95rem;
}

.home-list-link {
  margin-top: 1.5rem;
  font-weight: 600;
}

.home-list-link a {
  color: #2a7ae2;
  text-decoration: none;
}

.home-list-link a:hover,
.home-list-link a:focus-visible {
  text-decoration: underline;
}

/**
 * Sortable table
 */
.sortable-table th.sortable {
  cursor: pointer;
}

.sort-indicator {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: 0.25;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sortable-table th.sorted-asc .sort-indicator {
  opacity: 1;
  transform: rotate(180deg);
}

.sortable-table th.sorted-desc .sort-indicator {
  opacity: 1;
  transform: rotate(0deg);
}

/**
 * Site header
 */
.site-header {
  border-top: 5px solid rgb(66.25, 66.25, 66.25);
  border-bottom: 1px solid #e8e8e8;
  min-height: 55.95px;
  position: relative;
}

.site-header .wrapper {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.site-header-primary {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  flex: 1 1 100%;
  min-width: 0;
}

.site-header-primary .site-title {
  flex: 0 0 auto;
  font-size: 1.5rem;
}

.site-search {
  display: block;
  margin: 0;
  max-width: none;
  width: 100%;
  flex: 1 1 220px;
  min-width: 160px;
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
}

.site-nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-nav-link {
  font-weight: 600;
  text-decoration: none;
  color: rgb(66.25, 66.25, 66.25);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
  color: #2a7ae2;
  border-color: #2a7ae2;
}

.site-search-control {
  position: relative;
  margin-bottom: 0.4rem;
}

.site-search-control input {
  width: 100%;
  padding: 0.55rem 2.25rem 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #d0d0d0;
  font-size: 0.9rem;
}

.site-search-control input:focus {
  outline: none;
  border-color: #0366d6;
  box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.15);
}

.site-search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
}

.site-search-results {
  position: absolute;
  left: var(--site-search-left, 0);
  top: var(--site-search-top, 0);
  width: var(--site-search-width, 75vw);
  z-index: 10;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.6rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 0.15rem;
  max-height: 60vh;
  overflow-y: auto;
}

.site-search-status {
  margin: 0 0 0.5rem;
  color: #666;
  font-size: 0.95rem;
}

.site-search-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-search-list li {
  padding: 0;
}

.site-search-list li.is-active {
  background: #f1f5ff;
}

.site-search-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-search-list li a {
  font-weight: 600;
  color: inherit;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-search-pill {
  display: inline-block;
  padding: 0.05rem 0.35rem;
  border-radius: 999px;
  background: #f0f0f0;
  font-size: 0.7rem;
  line-height: 1.1;
  margin-left: 0.3rem;
}

.site-search-row a:focus-visible {
  outline-offset: 4px;
}

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

@media screen and (max-width: 600px) {
  .site-header-primary {
    gap: 0.5rem;
  }
}
.site-title {
  font-size: 26px;
  font-weight: 300;
  line-height: 54px;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: none;
  flex: 0 0 auto;
}
.site-title, .site-title:visited {
  color: rgb(66.25, 66.25, 66.25);
}

/**
 * Site footer
 */
.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 0.5rem 1rem;
  padding-top: 0;
  margin-top: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-meta {
  margin: 0;
  color: #666;
}

/**
 * Posts
 */
.post-meta {
  font-size: 14px;
  color: #828282;
}

.post-title {
  line-height: 1;
}

.post-content {
  margin-bottom: 30px;
}

.media-carousel-section {
  margin: 1.5rem 0;
}

.media-carousel {
  border: 1px solid #e1e4e8;
  border-radius: 0.75rem;
  background: #fdfdfd;
  box-shadow: 0 12px 32px rgba(15, 76, 129, 0.08);
}

.media-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  scrollbar-width: thin;
}

.media-carousel-track::-webkit-scrollbar {
  height: 6px;
}

.media-carousel-track::-webkit-scrollbar-thumb {
  background: rgba(15, 76, 129, 0.35);
  border-radius: 999px;
}

.media-carousel-track:focus-visible {
  outline: 3px solid rgba(15, 76, 129, 0.35);
  outline-offset: 2px;
}

.media-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
  min-height: 280px;
  background: #f4f6f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.media-carousel-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(240px, 60vh, 520px);
  object-fit: contain;
  display: block;
}

.media-carousel-slide img[src$=".svg"] {
  min-height: 300px;
  max-height: none;
  height: auto;
  width: auto;
}

.media-carousel-caption {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  font-size: 0.95rem;
  color: #1f2933;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.media-carousel-caption-source {
  font-size: 0.85rem;
  color: #5f6c80;
}

.media-carousel-caption-posts {
  font-size: 0.85rem;
  color: #343f50;
  display: block;
}

.media-carousel-caption-posts a {
  color: #0f4c81;
  text-decoration: underline;
}

.media-carousel-caption-posts a:hover,
.media-carousel-caption-posts a:focus-visible {
  color: #092d4a;
}

.media-carousel-caption a {
  color: inherit;
  text-decoration: underline;
}

.media-carousel-caption-label {
  font-weight: 600;
}

.media-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
}

.media-carousel-button {
  border: 1px solid #ced4da;
  background: #fff;
  color: #0f4c81;
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.media-carousel-button:hover:not(:disabled) {
  background: #0f4c81;
  color: #fff;
}

.media-carousel-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.media-carousel-status {
  flex: 1 1 auto;
  text-align: center;
  font-size: 0.95rem;
  color: #3d4756;
}

.media-carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 1rem;
}

.media-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.media-carousel-dot.is-active {
  background: #0f4c81;
  transform: scale(1.1);
}

.media-carousel[data-slide-count="1"] .media-carousel-button[data-carousel-prev],
.media-carousel[data-slide-count="1"] .media-carousel-button[data-carousel-next],
.media-carousel[data-slide-count="1"] .media-carousel-dots {
  display: none;
}

@media screen and (max-width: 600px) {
  .media-carousel-caption {
    font-size: 0.9rem;
  }
  .media-carousel-button {
    flex: 1 1 auto;
    text-align: center;
  }
  .media-carousel-controls {
    flex-direction: column;
  }
  .media-carousel-status {
    width: 100%;
  }
}
/**
 * Breadcrumbs and metadata
 */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 0.75rem;
}

.breadcrumbs a {
  color: inherit;
}

.breadcrumbs-current {
  font-weight: 600;
}

.place-detail {
  margin: 0.25rem 0;
  color: #444;
}

/**
 * Hierarchy trees
 */
.hierarchy-tree {
  margin-top: 0.75rem;
}

.hierarchy-tree .hierarchy-tree-list,
.hierarchy-tree-list {
  list-style: none;
  margin: 0;
  padding-left: 1rem;
}

.hierarchy-tree .hierarchy-tree-list > li,
.hierarchy-tree-list > li {
  margin-bottom: 0.35rem;
}

.hierarchy-tree .hierarchy-tree-item > a,
.hierarchy-tree-item > a {
  font-weight: 600;
}

.hierarchy-tree .hierarchy-tree-list ul,
.hierarchy-tree-list ul {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  padding-left: 1rem;
  border-left: 1px solid #eee;
}

/**
 * Topics and organizations
 */
.topic-body {
  margin-bottom: 1.5rem;
}

.topic-tags {
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}

.topic-pill {
  display: inline-block;
  margin: 0.15rem 0.35rem 0.15rem 0;
  padding: 0.15rem 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  font-size: 0.9em;
  color: inherit;
}

.topic-pill:hover {
  border-color: #ccc;
}

/**
 * News listings
 */
.news-meta {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.news-meta time {
  font-weight: 500;
}

.news-source a {
  color: inherit;
}

.news-excerpt {
  margin: 0.1rem 0 0.5rem;
  color: #444;
  font-size: 0.95em;
}

.news-item {
  margin-bottom: 1.5rem;
}

.news-item:last-child {
  margin-bottom: 0;
}

.news-item-body {
  margin-top: 0.75rem;
}

.news-item-body::after {
  content: "";
  display: table;
  clear: both;
}

.news-item-thumb {
  width: 100px;
  height: 100px;
  border-radius: 0.25rem;
  overflow: hidden;
  background: #f3f3f3;
  float: left;
  margin: 0 0.75rem 0.5rem 0;
}

.news-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-item-body--with-image .news-excerpt {
  margin: 0;
}

.news-pagination {
  margin-top: 2rem;
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
}

.news-pagination-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
}

.news-pagination-group {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}

.news-pagination-left {
  text-align: left;
}

.news-pagination-center {
  text-align: center;
}

.news-pagination-right {
  text-align: right;
}

.news-pagination-link {
  font-weight: 600;
  white-space: nowrap;
}

.news-pagination-page-count {
  font-weight: 500;
  white-space: nowrap;
}

.news-pagination-link.is-disabled {
  color: #aaa;
  cursor: default;
}

/**
 * PWA install banner
 */
.pwa-install-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  background: #ffffff;
  border: 1px solid #d7dce5;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(4, 33, 66, 0.15);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pwa-install-content {
  padding: 0.75rem 1rem;
}

.pwa-install-title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.pwa-install-message {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.pwa-install-steps {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #555;
}

.pwa-install-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pwa-install-primary {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: #0f4c81;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.pwa-install-dismiss {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #c3c7cf;
  background: transparent;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.pwa-install-banner--hint .pwa-install-primary {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .pwa-install-banner {
    background: #111827;
    border-color: #1f2937;
    color: #f3f4f6;
  }
  .pwa-install-message,
  .pwa-install-steps {
    color: #d1d5db;
  }
  .pwa-install-dismiss {
    border-color: #374151;
    color: #e5e7eb;
  }
}
/**
 * Flag actions
 */
.title-with-flag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.event-calendar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #2a7ae2;
  color: #2a7ae2;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.event-calendar-button:hover,
.event-calendar-button:focus-visible {
  background: #2a7ae2;
  color: #fff;
  border-color: #2a7ae2;
}

.flag-issue-data {
  display: none;
}

.flag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid #2a7ae2;
  background: #fff;
  color: #2a7ae2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.flag-icon svg {
  width: 1rem;
  height: 1rem;
}

.flag-icon:hover,
.flag-icon:focus-visible {
  background: #2a7ae2;
  color: #fff;
  border-color: #2a7ae2;
}

.media-carousel-status-row {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.media-carousel-flag {
  padding: 0;
}

.media-carousel-flag.is-hidden {
  visibility: hidden;
}

/*# sourceMappingURL=main.css.map */