.admin-seo-panel {
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin: 20px 0 14px;
  padding: 14px;
}

.admin-seo-panel legend {
  font: 900 0.78rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.04em;
  padding: 0 6px;
  text-transform: uppercase;
}

.admin-meta-description {
  height: 50px;
  min-height: 50px;
  resize: vertical;
}

.admin-social-image-field {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 180px minmax(0, 1fr);
}

.admin-social-image-preview {
  aspect-ratio: 1200 / 630;
  background: #f7f7f4;
  border: 1px solid var(--rule);
  display: grid;
  margin: 0;
  overflow: hidden;
  place-items: center;
}

.admin-social-image-preview img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.admin-teaser-image-preview {
  aspect-ratio: 4 / 3;
}

.admin-social-image-controls {
  display: grid;
  gap: 8px;
}

.admin-meta-image-paste {
  min-height: 44px;
  padding: 12px;
}

@media (max-width: 760px) {
  .admin-social-image-field {
    grid-template-columns: 1fr;
  }
}
:root {
  --ink: #111;
  --muted: #5e646b;
  --rule: #d9dde3;
  --paper: #fff;
  --tint: #f5f6f7;
  --red: #d71920;
  --red-dark: #991017;
  --blue: #123c63;
  --eu-blue: #003399;
  --eu-gold: #ffcc00;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration-color: var(--red);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
  transition: color 0.16s ease, text-decoration-color 0.16s ease, text-decoration-thickness 0.16s ease, text-underline-offset 0.16s ease;
}

a:hover {
  color: var(--red);
  text-decoration-color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.24em;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.site-header {
  border-bottom: 3px solid var(--ink);
  display: grid;
  gap: 10px;
  margin: 0 auto 28px;
  max-width: 1180px;
  padding: 10px 18px 0;
  position: relative;
}

.masthead {
  align-items: end;
  margin-bottom: 10px;
  column-gap: clamp(12px, 2vw, 24px);
  display: grid;
  grid-template-columns: clamp(78px, 9.8vw, 126px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  row-gap: 4px;
}

.brand-logo {
  align-self: end;
  grid-column: 1;
  grid-row: 1 / 3;
  justify-self: start;
  text-decoration: none;
  transform: translateY(-6px);
}

.brand-logo img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.brand-text {
  display: contents;
  min-width: 0;
}

.brand {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.2rem;
  font-weight: 700;
  grid-column: 2;
  grid-row: 1;
  line-height: 0.82;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-text p {
  color: var(--muted);
  font-size: 0.80rem;
  font-weight: 800;
  grid-column: 2;
  grid-row: 2;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.site-nav-panel {
}

.site-nav-check,
.site-nav-toggle {
  display: none;
}

.site-nav {
  align-items: stretch;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  display: flex;
  gap: 0;
  justify-content: space-between;
}

.site-nav-links {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 0;
}

.site-nav-links .nav-right-start {
  border-left: 1px solid var(--rule);
  margin-left: auto;
}

.site-nav-links .nav-mobile-coffee {
  display: none;
}
.site-nav-links a {
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 13px 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible {
  background: var(--eu-blue);
  color: var(--eu-gold);
}

.site-nav-links a.is-active {
  background: var(--ink);
  color: #fff;
}

.header-actions {
  align-self: stretch;
  display: flex;
  margin-left: auto;
  min-width: max-content;
  position: relative;
}

.header-kofi {
  align-items: center;
  bottom: calc(100% + 48px);
  display: flex;
  justify-content: center;
  left: 0;
  min-height: 0;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 10;
}

.header-kofi iframe,
.header-kofi img {
  display: block;
  max-width: 190px;
}
.header-social {
  --header-social-button-count: 6;
  --header-social-button-size: 43px;
  align-items: stretch;
  display: flex;
  gap: 0;
  margin-left: 0;
  padding-left: 0;
  position: relative;
}

.header-search {
  --header-search-width: 100%;
  border-left: 1px solid var(--rule);
  display: grid;
  flex: 0 0 var(--header-social-button-size);
  min-height: 100%;
  position: static;
  width: var(--header-social-button-size);
  z-index: 3;
}

.header-search-input {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--ink);
  box-sizing: border-box;
  color: var(--ink);
  font: 700 0.82rem/1 Arial, Helvetica, sans-serif;
  height: 42px;
  left: 0;
  margin-top: 3px;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: calc(100% - 3px);
  transition: width 0.18s ease, opacity 0.12s ease, padding 0.18s ease;
  width: 0;
  z-index: 20;
}

.header-search.is-open .header-search-input,
.header-search:focus-within .header-search-input {
  opacity: 1;
  padding: 0 12px;
  width: var(--header-search-width);
}

.header-search-input:focus {
  outline: 0;
}

.header-search-button,
.header-social a {
  color: var(--ink);
  display: grid;
  aspect-ratio: 1;
  height: auto;
  min-height: 100%;
  padding: 0;
  place-items: center;
  text-decoration: none;
  width: var(--header-social-button-size);
}

.header-search-button {
  background: #fff;
  border: 0;
  border-top: 1px solid var(--rule);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.header-social a {
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}

.header-search-button:hover,
.header-search:focus-within .header-search-button,
.header-social a:hover,
.header-social a:focus-visible {
  background: var(--eu-blue);
  color: var(--eu-gold);
}

.header-search-button:focus-visible,
.header-social a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.header-social svg {
  display: block;
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.header-social .icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

main,
.site-footer {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 18px;
}

.front-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.8fr);
}

.front-rail {
  align-content: start;
  border-top: 0;
  display: grid;
  gap: 12px;
  text-align: right;
}

.section-header h2,
.archive-header h1,
.article-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.front-rail h2 {
  color: var(--red-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.80rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  margin: 0;
  text-align: right;
  text-transform: uppercase;
}
.front-rail a {
  border-bottom: 1px solid var(--rule);
  font-weight: 800;
  padding-bottom: 10px;
  text-decoration: none;
}

.section-header {
  align-items: end;
  border-bottom: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  margin: 38px 0 20px;
}

.latest-posts-header {
  border-bottom: 0;
  border-top: 2px solid var(--ink);
  padding-top: 12px;
}

.latest-posts-header h2 {
  margin: 0;
}

.story-grid,
.glossary-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.story-card {
  display: grid;
  gap: 12px;
  padding-top: 12px;
  position: relative;
}

.story-content {
  display: grid;
  gap: 8px;
}

.story-content > p:last-child {
  font-size: 0.92rem;
  line-height: 1.42;
}

.lead-card {
  align-items: stretch;
  border-top: 0;
  gap: 18px;
  grid-template-columns: minmax(220px, 36%) minmax(0, 1fr);
  padding-top: 0;
}

.lead-card .story-content {
  order: 2;
}

.lead-card .story-image {
  align-self: stretch;
  aspect-ratio: auto;
  background: transparent;
  justify-self: stretch;
  max-width: none;
  min-height: 100%;
  order: 1;
  width: 100%;
}

.lead-card .story-image img {
  height: 100%;
  object-fit: cover;
}

.story-image {
  align-items: center;
  aspect-ratio: 16 / 10;
  background: #fff;
  border: 1px solid var(--rule);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.story-image img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.teaser-grid .story-image,
.section-interviews .story-image {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.035), transparent 26%),
    #f7f7f4;
  border-color: #c8ccd2;
  padding: 0;
}

.teaser-grid .story-card,
.lead-card {
  color: inherit;
  text-decoration: none;
  transition: background-color 0.16s ease, border-color 0.16s ease;
}

.teaser-grid .story-card {
  margin: -5px;
  padding: 17px 5px 5px;
}

.lead-card {
  margin: -5px;
  padding: 5px;
}

.teaser-grid .story-card:hover,
.lead-card:hover {
  background: #f6f7f5;
  border-top-color: var(--red);
  cursor: pointer;
}

.teaser-grid .story-image img,
.section-interviews .story-image img {
  filter: saturate(0.96) contrast(1.02);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.kicker {
  color: var(--red-dark);
  font-size: 0.80rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
}

.story-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.02;
  margin: 0;
}

.teaser-grid .story-card h2,
.section-interviews .story-card h2 {
  align-items: center;
  display: flex;
  font-size: 1.28rem;
  justify-content: flex-start;
  line-height: 1.35;
  overflow: hidden;
  text-align: left;
}

.teaser-grid .story-card h2 span,
.section-interviews .story-card h2 a {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
}

.teaser-grid .story-card:hover h2 {
  color: var(--red-dark);
}

.teaser-grid .kicker,
.section-interviews .kicker {
  font-size: 0.80rem;
}

.search-results-grid {
  column-gap: 36px;
  row-gap: 30px;
}

.search-results-grid .story-card {
  min-width: 0;
}

.search-results-grid .search-result-image {
  width: 100%;
}

.teaser-grid .story-image.is-empty {
  background: #f7f7f4;
}

.teaser-grid .story-content,
.section-interviews .story-content {
  grid-template-rows: 1rem 5.35rem auto 5.35rem;
}
.teaser-grid .story-content.story-content-no-meta {
  grid-template-rows: 5.35rem auto 5.35rem;
}

.teaser-grid .story-content > p:last-child,
.section-interviews .story-content > p:last-child {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  font-size: 0.88rem;
  line-height: 1.48;
  margin-top: 2px;
  overflow: hidden;
}

.lead-card h2 {
  font-size: 2.75rem;
  font-weight: 560;
  line-height: 1.2;
}

.lead-card .story-content > p:last-child {
  font-size: 1.1rem;
  line-height: 1.58;
}

.glossary-grid .story-content {
  grid-template-rows: 5.35rem auto 5.35rem;
}
.glossary-grid .story-card h2 {
  line-height: 1.35;
  overflow: hidden;
}
.story-card h2 a {
  text-decoration: none;
}

.story-card p,
.archive-header p,
.article-header .byline,
.muted {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 0;
}

.archive-header,
.article-header {
  border-bottom: 2px solid var(--ink);
  margin-bottom: 24px;
  padding-bottom: 14px;
}

.archive-intro {
  margin: 0 0 24px;
  max-width: 780px;
}

.archive-intro p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.5;
  margin: 0;
}

.archive-intro.is-empty {
  margin-bottom: 0;
}
.article {
  margin: 0 auto;
  max-width: 780px;
}

.article-header h1,
.section-glossary .archive-header h1 {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.article-interview {
  max-width: 780px;
}


.article-meta-row {
  align-items: baseline;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.article-header .article-meta-row .kicker {
  margin-bottom: 0;
}

.article-category-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  margin-left: auto;
}

.article-category-links a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  min-height: 28px;
  padding: 4px 9px;
  text-decoration: none;
  text-transform: uppercase;
}

.article-category-links a:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}

.article-interview .article-header > .kicker {
  margin-bottom: 10px;
}


.article-glossary {
  max-width: 780px;
}

.article-glossary .article-header {
  border-bottom: 1px solid var(--ink);
  margin-bottom: 0;
  padding: 0 0 14px;
}

.article-glossary .article-header .kicker {
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.article-glossary .article-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  font-weight: 700;
  line-height: 1.05;
}

.article-glossary .article-body {
  border-bottom: 1px solid var(--rule);
  display: flow-root;
  font-size: 1.04rem;
  line-height: 1.66;
  padding: 22px 0 8px;
}

.article-glossary .article-body > p:first-of-type {
  color: #22272d;
  margin-bottom: 1.25em;
}

.article-glossary .article-body ul,
.article-glossary .article-body ol {
  border-left: 1px solid var(--rule);
  display: flow-root;
  margin: 1.2em 0 1.35em 1.55rem;
  padding-left: 32px;
}

.article-glossary .article-body li + li {
  margin-top: 0.55em;
}

.article-glossary .article-body blockquote {
  background: transparent;
  border-left: 3px solid var(--ink);
  color: #2f363d;
  font-size: 1.18rem;
  margin: 24px 0;
  padding: 2px 0 2px 20px;
}

.article-glossary .article-body blockquote::before {
  content: none;
}

.article-glossary .article-body figure {
  margin-bottom: 1.7em;
  margin-top: 1.7em;
}
.article-glossary .glossary-title-row {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  margin-left: clamp(-52px, -5vw, -16px);
  margin-right: clamp(-52px, -5vw, -16px);
}

.article-glossary .glossary-title-row h1 {
  min-width: 0;
}

.glossary-entry-nav-link {
  align-items: center;
  border: 0;
  color: var(--ink);
  display: inline-grid;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  height: 96px;
  line-height: 1;
  place-items: center;
  text-decoration: none;
  width: 40px;
}
.glossary-entry-nav-link:hover,
.glossary-entry-nav-link:focus-visible {
  background: var(--ink);
  color: #fff;
}

.glossary-entry-nav-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.hero-image {
  border: 1px solid var(--rule);
  margin: 0 0 28px;
}

.article-body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.72;
}

.article-body p {
  margin: 0 0 1.15em;
}

.article-body .text-button {
  border: 2px solid var(--ink);
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  padding: 10px 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.article-body .text-button:hover {
  background: var(--ink);
  color: #fff;
}
.article-body ul,
.article-body ol {
  display: flow-root;
  margin: 1.15em 0 1.35em 1.35rem;
  padding-left: 1.35rem;
}

.article-body li + li {
  margin-top: 0.42em;
}
.article-body .article-top-anchor,
.article-body .heading-anchor {
  display: block;
  scroll-margin-top: 18px;
}

.article-body .article-heading-with-top-link {
  position: relative;
}

.article-body .heading-back-to-top {
  align-items: center;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  left: -50px;
  line-height: 1;
  position: absolute;
  text-decoration: none;
  top: 0.36em;
  width: 34px;
}

.article-body .heading-back-to-top:hover,
.article-body .heading-back-to-top:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}

.article-body .table-of-contents {
  font-family: Arial, Helvetica, sans-serif;
  margin: 1.35em 0 1.65em;
  padding: 0;
}

.article-body .table-of-contents .toc-label {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.article-body .table-of-contents ol {
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-body .table-of-contents li {
  line-height: 1.25;
  margin: 0;
}

.article-body .table-of-contents .toc-h3 {
  padding-left: 22px;
}

.article-body .table-of-contents a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body .table-of-contents a:hover,
.article-body .table-of-contents a:focus-visible {
  color: var(--red);
}

.article-body blockquote {
  background: #f3f4f2;
  border-left: 5px solid var(--red);
  color: #46515a;
  font-size: 1.50rem;
  line-height: 1.55;
  margin: 30px 0;
  padding: 22px 24px 22px 54px;
  position: relative;
}

.article-body blockquote::before {
  color: var(--red);
  content: "\201C";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  left: 16px;
  line-height: 1;
  position: absolute;
  top: 6px;
}

.article-body blockquote p:last-of-type {
  margin-bottom: 0;
}

.article-body blockquote cite {
  color: var(--muted);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-top: 12px;
  text-transform: uppercase;
}

.article-body blockquote cite::before {
  content: "\2014 ";
}

.article-body figure {
  margin: 1.4em auto;
  max-width: 100%;
}

.article-body .article-figure img,
.article-body img {
  height: auto;
  max-width: 100%;
}

.article-body video {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.article-body .article-video {
  clear: both;
  margin: 1.8em auto;
  max-width: 760px;
}

.article-body .article-video iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  width: 100%;
}

.article-body .article-video video {
  background: #000;
}

.article-body .article-video.alignleft,
.article-body .article-figure.alignleft {
  float: left;
  margin: 0.33em 20px 16px 0;
}

.article-body .article-video.alignright,
.article-body .article-figure.alignright {
  float: right;
  margin: 0.33em 0 16px 20px;
}

.article-body .article-video.alignleft,
.article-body .article-video.alignright {
  clear: none;
  max-width: min(45%, 300px);
  width: min(45%, 300px);
}

.article-body .article-video.aligncenter {
  clear: both;
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, 760px);
}

.article-body .article-video figcaption {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1.35;
  margin-top: 8px;
  text-align: center;
}

.article-body .article-figure img {
  display: block;
}

.article-body .article-figure > a {
  color: inherit;
  display: block;
  cursor: zoom-in;
  text-decoration: none;
}

.article-lightbox[hidden] {
  display: none;
}

.article-lightbox {
  align-items: center;
  background: rgb(0 0 0 / 0.86);
  cursor: zoom-out;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 28px;
  position: fixed;
  z-index: 200;
}

.article-lightbox__figure {
  display: grid;
  gap: 12px;
  margin: 0;
  max-width: min(96vw, 1240px);
}

.article-lightbox__figure img {
  background: #fff;
  box-shadow: 0 16px 50px rgb(0 0 0 / 0.34);
  max-height: calc(96vh - 100px);
  max-width: 100%;
  object-fit: contain;
}

.article-lightbox__figure figcaption {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  line-height: 1.35;
  text-align: center;
}

.article-lightbox__close {
  background: #fff;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.7rem;
  height: 42px;
  line-height: 1;
  position: fixed;
  right: 18px;
  top: 18px;
  width: 42px;
}

.has-article-lightbox {
  overflow: hidden;
}

.article-body .article-figure.alignleft,
.article-body .article-figure.alignright {
  display: table;
  max-width: min(45%, 300px);
  width: auto;
}

.article-body .article-figure.alignleft img,
.article-body .article-figure.alignright img {
  max-width: 100%;
  width: auto;
}

@media (min-width: 960px) {
  .article-body .article-figure.alignleft,
  .article-body .article-video.alignleft {
    margin-left: -50px;
    margin-right: 20px;
  }

  .article-body .article-figure.alignright,
  .article-body .article-video.alignright {
    margin-left: 20px;
    margin-right: -50px;
  }
}
.article-body .article-figure.aligncenter {
  clear: both;
  display: table;
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, 720px);
  width: auto;
}

.article-body .article-figure.aligncenter img {
  width: auto;
}

.article-body .article-figure.alignleft figcaption,
.article-body .article-figure.alignright figcaption,
.article-body .article-figure.aligncenter figcaption {
  caption-side: bottom;
  display: table-caption;
  width: auto;
}

.article-body .article-figure.alignleft figcaption {
  text-align: left;
}

.article-body .article-figure.aligncenter figcaption {
  text-align: center;
}

.article-body .article-figure.alignright figcaption {
  text-align: right;
}

.article-body figcaption {
  box-sizing: border-box;
  color: var(--muted);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.90rem;
  line-height: 1.35;
  margin-top: 7px;
  max-width: 100%;
  overflow-wrap: break-word;
  width: 100%;
}
.article-europolitan .europolitan-issue {
  clear: both;
  display: grid;
  gap: 24px 34px;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  margin: 2.1rem 0 2.8rem;
}

.article-europolitan .europolitan-issue:nth-of-type(even) {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
}

.article-europolitan .europolitan-issue-copy {
  min-width: 0;
}

.article-europolitan .europolitan-issue-copy h2 {
  margin-top: 0;
}

.article-europolitan .europolitan-issue-copy p:first-of-type {
  margin-top: 0.35rem;
}

.article-europolitan .europolitan-issue-copy ul {
  margin-bottom: 0;
}

.article-europolitan .europolitan-cover.article-figure {
  align-self: start;
  clear: none;
  display: block;
  float: none;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  max-width: 320px;
  width: 100%;
}

.article-europolitan .europolitan-issue-copy {
  grid-column: 2;
  padding-left: 4px;
}

.article-europolitan .europolitan-issue:nth-of-type(even) .europolitan-cover.article-figure {
  grid-column: 2;
}

.article-europolitan .europolitan-issue:nth-of-type(even) .europolitan-issue-copy {
  grid-column: 1;
  padding-left: 0;
  padding-right: 4px;
}

.article-europolitan .europolitan-cover.article-figure img {
  height: auto;
  max-height: none;
  object-fit: contain;
  width: 100%;
}

.glossary-term {
  position: relative;
}

.glossary-term > a {
  background: linear-gradient(transparent 58%, rgba(215, 25, 32, 0.2) 58%);
  font-weight: 700;
  text-decoration: none;
}

.glossary-preview {
  background: var(--paper);
  border: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  display: grid;
  font-family: Arial, Helvetica, sans-serif;
  gap: 7px;
  left: 0;
  line-height: 1.35;
  max-width: min(320px, calc(100vw - 32px));
  opacity: 0;
  padding: 14px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  transform: translateY(4px);
  visibility: hidden;
  width: 320px;
  z-index: 20;
}

.glossary-preview strong {
  text-transform: uppercase;
}

.glossary-preview span {
  color: var(--muted);
  font-size: 0.88rem;
}

.glossary-term:hover .glossary-preview,
.glossary-term:focus-within .glossary-preview {
  opacity: 1;
  transform: translateY(-6px);
  visibility: visible;
}

.comments {
  background: var(--tint);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--ink);
  clear: both;
  margin-top: 44px;
  padding: 20px 22px 24px;
}

.comments h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin-top: 0;
}

.comment-form-panel {
  margin-top: 22px;
}

.comments.no-comments .comment-form-panel {
  margin-top: 0;
}

.comments.has-comments .comment-form-panel {
  border-top: 2px solid var(--ink);
  margin-top: 24px;
  padding-top: 18px;
}

.comment-form-heading {
  margin-bottom: 12px;
}

.comment {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--ink);
  margin: 0;
  padding: 12px 14px;
}

.comment time {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 2px;
  text-transform: uppercase;
}

.contact-form-panel {
  margin-top: 18px;
}

.comment-form {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.comment-form label {
  display: grid;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comment-form input,
.comment-form textarea,
.search-box {
  border: 0;
  border-radius: 0;
  font: inherit;
  padding: 11px 12px;
  width: 100%;
}

.comment-form input,
.comment-form textarea {
  background: var(--paper);
  border: 1px solid var(--rule);
}

.cf-turnstile {
  margin-top: 2px;
}

.comment-form button {
  background: var(--red);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  justify-self: start;
  letter-spacing: 0.06em;
  padding: 12px 18px;
  text-transform: uppercase;
}

.comment-form button:hover {
  background: var(--red-dark);
}

.hp {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.site-footer {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
  margin-top: 54px;
  padding-bottom: 30px;
  padding-top: 18px;
}

.site-footer-inner {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 700px) minmax(260px, 1fr);
}

.site-footer-copy {
  max-width: 700px;
}

.site-footer-copy p {
  margin: 0 0 9px;
  max-width: 700px;
}

.site-footer-copy .first {
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.5;
}

.site-footer a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.footer-social {
  border: 0;
  border-top: 0;
  display: flex;
  gap: 10px;
  justify-content: stretch;
  width: 100%;
}

.footer-social a {
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 7px;
  color: var(--ink);
  display: inline-flex;
  flex: 1 1 0;
  height: 48px;
  justify-content: center;
  min-width: 0;
  text-decoration: none;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--eu-blue);
  border-color: var(--eu-blue);
  color: var(--eu-gold);
}

.footer-social svg {
  display: block;
  fill: currentColor;
  height: 22px;
  width: 22px;
}

.footer-social .icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.admin-panel {
  max-width: 920px;
  padding-top: 32px;
}
.admin-page .site-header > nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 6px;
}

.admin-page .site-header > nav a {
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-size: 0.64rem;
  font-weight: 800;
  padding: 5px 7px;
  text-decoration: none;
  text-transform: uppercase;
}

.admin-page .site-header > nav a:hover,
.admin-page .site-header > nav a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.admin-wide {
  max-width: 1120px;
}

.admin-list-heading {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.admin-list-heading h1 {
  margin-bottom: 0;
}

.admin-panel.admin-wide {
  padding-top: 0;
}

.admin-panel h1,
.admin-preview h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.admin-child-list {
  border-top: 2px solid var(--ink);
  margin-top: 28px;
  padding-top: 18px;
}

.admin-child-list h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 0 0 14px;
}
.admin-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
}

.admin-form label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
}

.admin-label-note {
  color: var(--muted);
  font-weight: 400;
  margin-left: 6px;
  text-transform: none;
}


.admin-meta-label {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-label-note.is-at-limit {
  color: var(--red-dark);
  font-weight: 700;
}

.admin-category-dropdown {
  border: 1px solid var(--rule);
  border-radius: 6px;
  max-width: 360px;
}

.admin-category-dropdown summary {
  cursor: pointer;
  font-weight: 700;
  padding: 10px 12px;
}

.admin-category-options {
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 8px;
  padding: 10px 12px 12px;
}

.admin-categories-panel .admin-category-dropdown {
  margin-top: 2px;
}

.admin-nav-manager-grid {
  display: grid;
  gap: 10px;
}

.admin-nav-row {
  align-items: end;
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 10px;
  grid-template-columns: 86px minmax(180px, 1fr) minmax(160px, 0.7fr);
  padding-bottom: 10px;
}

.admin-nav-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.admin-nav-row input[type="number"] {
  max-width: 70px;
}

.admin-nav-url {
  color: var(--muted);
  font-size: 0.78rem;
  overflow: hidden;
  padding-bottom: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .admin-nav-row {
    grid-template-columns: 1fr;
  }

  .admin-nav-url {
    padding-bottom: 0;
    white-space: normal;
  }
}
.admin-category-manager {
  gap: 12px;
}

.admin-category-manager-grid {
  display: grid;
  gap: 10px;
}

.admin-category-row {
  align-items: end;
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.55fr) auto;
  padding-bottom: 10px;
}

.admin-category-row:last-child {
  border-bottom: 0;
}

.admin-category-lock {
  align-self: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-category-row[hidden] {
  display: none;
}

@media (max-width: 760px) {
  .admin-category-row {
    grid-template-columns: 1fr;
  }
}

.admin-form .admin-meta-description {
  height: 50px;
  min-height: 50px;
}
.admin-form textarea {
  border: 1px solid var(--rule);
  border-radius: 6px;
  font: 400 0.95rem/1.55 Arial, Helvetica, sans-serif;
  min-height: 260px;
  padding: 12px;
  resize: vertical;
}

.admin-form input[type="text"],
.admin-form input:not([type]) {
  border: 1px solid var(--rule);
  border-radius: 6px;
  font: inherit;
  padding: 11px 12px;
}

.admin-check {
  align-items: center;
  display: flex;
  gap: 8px;
  text-transform: none !important;
}

.admin-form button {
  background: var(--ink);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 750;
  justify-self: start;
  padding: 11px 16px;
  text-transform: uppercase;
}

.admin-form-actions {
  align-items: center;
  display: flex;
  gap: 9px;
}

.admin-form-actions {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--rule);
  border-radius: 6px;
  bottom: 14px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
  flex-wrap: wrap;
  justify-self: start;
  padding: 10px;
  position: sticky;
  z-index: 20;
}


.admin-button,
.admin-table a,
.admin-block-toolbar button,
.admin-editor-tabs button {
  background: var(--ink);
  border: 0;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 750;
  padding: 8px 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.admin-button.admin-button-secondary,
.admin-form-actions .admin-button-secondary {
  background: #f5f5f2;
  border: 1px solid var(--rule);
  color: var(--ink);
}

.admin-table {
  display: grid;
  gap: 1px;
}

.admin-row {
  align-items: center;
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px 0;
}

.admin-row strong,
.admin-row span {
  display: block;
}

.admin-row span,
.admin-help {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-editor-tabs {
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.admin-editor-tabs button {
  background: #f5f5f2;
  border: 1px solid var(--rule);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  color: var(--ink);
  padding: 10px 14px;
}

.admin-editor-tabs button.is-active {
  background: var(--ink);
  color: #fff;
}

.admin-editor-pane {
  display: none;
}

.admin-editor-pane.is-active {
  display: block;
}

.admin-block-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 8px;
}

.admin-block-toolbar button {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 650;
}

.admin-block-toolbar button:hover,
.admin-table a:hover,
.admin-button:hover {
  background: var(--red);
  color: #fff;
}


.admin-block-paste {
  align-items: center;
  background: #fbfbf8;
  border: 1px dashed #b9b9b0;
  border-radius: 6px;
  color: var(--muted);
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  justify-content: center;
  min-height: 66px;
  padding: 16px;
  text-align: center;
}

.admin-block-paste:focus,
.admin-block-paste.is-dragging {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(190, 0, 0, 0.12);
  color: var(--ink);
  outline: 0;
}

.admin-help.is-error {
  color: var(--red-dark);
  font-weight: 700;
}

.admin-upload-button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex !important;
  font: 700 0.82rem/1 Arial, Helvetica, sans-serif;
  justify-content: center;
  margin-top: 0 !important;
  min-height: 38px;
  padding: 0 12px;
  text-transform: none;
  white-space: nowrap;
}

.admin-upload-button:hover,
.admin-upload-button:focus-within {
  background: var(--red);
  color: #fff;
}

.admin-upload-button input {
  height: 1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
.admin-blocks {
  display: grid;
  gap: 14px;
}

.admin-block {
  background: #fff;
  border: 1px solid #d8d8d2;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  padding: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}

.admin-block:hover,
.admin-block:focus-within {
  border-color: #94948d;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.admin-block.is-dragging {
  opacity: 0.45;
}

.admin-block.is-drop-target {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(190, 0, 0, 0.14);
}

.admin-block.is-new {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(190, 0, 0, 0.12);
}

.admin-block header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.admin-block-actions {
  display: flex;
  gap: 5px;
}

.admin-block-title {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.76rem;
  gap: 8px;
  text-transform: uppercase;
}

.admin-type-control {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  min-height: 32px;
  position: relative;
}

.admin-type-control select {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 5px;
  color: var(--ink);
  font-size: 0.76rem;
  opacity: 0;
  padding: 5px 26px 5px 8px;
  pointer-events: none;
  position: absolute;
  text-transform: none;
  transform: translateX(-4px);
  transition: opacity 0.12s ease, transform 0.12s ease;
  z-index: 2;
}

.admin-type-control:hover select,
.admin-type-control:focus-within select {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.admin-type-control:hover .admin-type-label,
.admin-type-control:focus-within .admin-type-label {
  opacity: 0;
}

.admin-heading-fields {
  display: grid;
  gap: 10px;
  grid-template-columns: 110px minmax(0, 1fr);
}

.admin-heading-fields select {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 5px;
  color: var(--ink);
  font: 700 0.86rem/1 Arial, Helvetica, sans-serif;
  min-height: 38px;
  padding: 8px;
  width: 100%;
}

.admin-image-align {
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 6px;
  display: inline-flex;
  overflow: hidden;
  text-transform: none;
}

.admin-image-align button {
  background: #fff;
  border: 0;
  border-right: 1px solid var(--rule);
  color: var(--muted);
  cursor: pointer;
  font: 700 0.68rem/1 Arial, Helvetica, sans-serif;
  height: 28px;
  padding: 0 9px;
  text-transform: uppercase;
}

.admin-image-align button:last-child {
  border-right: 0;
}

.admin-image-align button:hover {
  background: #f2f2ee;
  color: var(--ink);
}

.admin-image-align button.is-active {
  background: var(--ink);
  color: #fff;
}

.admin-image-block-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.admin-image-media-panel {
  display: grid;
  gap: 8px;
}

.admin-image-media-panel .admin-image-align {
  justify-content: center;
}

.admin-image-fields {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.admin-image-fields label {
  margin: 0;
}

.admin-image-path-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-image-path {
  color: var(--muted);
  flex: 1 1 240px;
  font: 0.78rem/1.35 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-form .admin-icon-button,
.admin-form .admin-drag-handle {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  border-radius: 5px;
  height: 30px;
  justify-content: center;
  padding: 0;
  text-transform: none;
  width: 34px;
}

.admin-form .admin-drag-handle {
  cursor: grab;
}

.admin-form .admin-icon-button:hover,
.admin-form .admin-drag-handle:hover {
  background: #f2f2ee;
  border-color: var(--rule);
  color: var(--ink);
}

.admin-form .admin-icon-button svg,
.admin-form .admin-drag-handle svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.admin-block label {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  text-transform: none;
}

.admin-block input,
.admin-block textarea {
  background: #fff;
  border: 1px solid #d8d8d2;
  border-radius: 6px;
  font: 400 0.95rem/1.55 Arial, Helvetica, sans-serif;
  padding: 9px 10px;
}

.admin-block input:focus,
.admin-block textarea:focus,
.admin-form input:focus,
.admin-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.08);
  outline: 0;
}

.admin-block textarea {
  min-height: 0;
  resize: vertical;
}

.admin-editor-pane[data-editor-pane="html"] textarea,
.admin-block[data-index] textarea[data-field="html"] {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.admin-media-row {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-media-row button {
  align-self: stretch;
  border-radius: 6px;
}

.admin-image-preview {
  align-items: center;
  background: #f6f6f3;
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  font-size: 0.8rem;
  justify-content: center;
  margin: 0;
  min-height: 130px;
  overflow: hidden;
  text-align: center;
  width: 180px;
}

.admin-image-preview img,
.admin-video-preview iframe,
.admin-video-preview video {
  display: block;
  max-height: 220px;
  max-width: 100%;
  object-fit: contain;
}

.admin-video-preview iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  width: 100%;
}

.admin-video-preview video {
  background: #000;
  width: 100%;
}

.admin-video-flags {
  display: flex;
  gap: 14px;
  margin: 2px 0 8px;
}

.admin-video-flags label {
  align-items: center;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 6px;
}

.admin-media-modal {
  align-items: center;
  background: rgba(17, 17, 17, 0.36);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 20;
}

.admin-media-modal.is-open {
  display: flex;
}

.admin-media-dialog {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  max-height: min(760px, 88vh);
  max-width: 980px;
  overflow: hidden;
  width: min(980px, 96vw);
}

.admin-media-dialog header {
  align-items: center;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
}

.admin-media-dialog header button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.4rem;
  height: 32px;
  line-height: 1;
  width: 32px;
}

.admin-media-path {
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.82rem;
  padding: 8px 14px;
}

.admin-media-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  max-height: 620px;
  overflow: auto;
  padding: 14px;
}

.admin-media-folder,
.admin-media-image {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 7px;
  cursor: pointer;
  min-height: 96px;
  overflow: hidden;
  padding: 8px;
  text-align: left;
}

.admin-media-folder {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-weight: 700;
}

.admin-media-image img {
  background: #f5f5f2;
  border-radius: 5px;
  display: block;
  height: 94px;
  object-fit: cover;
  width: 100%;
}

.admin-media-image span {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  overflow: hidden;
  padding-top: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-preview {
  margin-top: 34px;
  padding-top: 18px;
}

.admin-message,
.admin-error {
  border-left: 4px solid var(--ink);
  font-weight: 800;
  padding: 10px 12px;
}

.admin-error {
  border-left-color: var(--red);
  color: var(--red);
}

.admin-output {
  background: #f5f5f2;
  border: 1px solid var(--rule);
  font-size: 0.82rem;
  overflow: auto;
  padding: 12px;
}

@media (max-width: 760px) {
  .admin-image-block-grid {
    grid-template-columns: 1fr;
  }

  .admin-image-preview {
    width: 100%;
  }

  .front-grid,
  .lead-card {
    grid-template-columns: 1fr;
  }

  .lead-card .story-image {
    align-self: center;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    order: 1;
  }

  .masthead {
    column-gap: 12px;
    grid-template-columns: 58px minmax(0, 1fr);
    row-gap: 4px;
  }

  .brand-logo {
    transform: translateY(-3px);
  }

  .brand {
    font-size: 3rem;
  }

  .brand:hover {
  color: var(--ink);
}

.brand-text p {
    font-size: 0.56rem;
    line-height: 1.25;
  }
  .site-nav-panel {
    }

  .site-nav-toggle {
    align-items: center;
    cursor: pointer;
    display: inline-grid;
    gap: 4px;
    height: 42px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0 12px;
    width: 48px;
  }

  .site-nav-toggle span {
    background: var(--ink);
    display: block;
    height: 2px;
    width: 16px;
  }

  .site-nav-check:not(:checked) ~ .site-nav {
    display: none;
  }

  .site-nav {
    align-items: stretch;
  border-left: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
      display: grid;
    grid-template-columns: 1fr;
  }

  .site-nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav-links .nav-right-start {
    border-left: 0;
    margin-left: 0;
  }

  .site-nav-links a {
    border-bottom: 1px solid var(--rule);
    flex: 1 1 auto;
    padding: 11px 10px;
  }

  .header-actions {
    display: grid;
    grid-template-rows: auto 42px;
    margin-left: 0;
    min-width: 0;
    position: relative;
  }

  .header-kofi {
    border-bottom: 1px solid var(--rule);
    justify-content: center;
    min-height: 42px;
    padding: 5px 8px;
    position: static;
  }
  .header-social {
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-content: stretch;
    margin-left: 0;
    padding-left: 0;
    position: relative;
  }

  .header-search {
    --header-search-width: min(280px, calc(100vw - 36px));
    border-left: 0;
    border-right: 1px solid var(--rule);
    flex: none;
    min-height: 42px;
    width: auto;
  }

  .header-search-input {
    border-top: 1px solid var(--rule);
    height: 42px;
    left: 0;
    top: 100%;
  }

  .header-search.is-open .header-search-input,
  .header-search:focus-within .header-search-input {
    width: var(--header-search-width);
  }
  .header-search-button,
  .header-social a {
    aspect-ratio: auto;
    border-left: 0;
    border-right: 1px solid var(--rule);
    height: 42px;
    min-height: 42px;
    width: 100%;
  }

  .header-social a:last-child {
    border-right: 0;
  }

  .site-header {
    padding-left: 8px;
    padding-right: 8px;
  }

  .site-nav-toggle {
    display: none;
  }

  .site-nav-check:not(:checked) ~ .site-nav {
    display: grid;
  }

  .site-nav {
    border-left: 1px solid var(--rule);
    border-right: 0;
    display: grid;
  }

  .site-nav-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-nav-links .nav-mobile-coffee {
    display: flex;
  }

  .site-nav-links a {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 42px;
    padding: 9px 6px;
    text-align: center;
  }

  .site-nav-links a:nth-child(3n) {
    border-right: 0;
  }

  .header-actions {
    grid-template-rows: 42px;
  }

  .header-kofi {
    display: none;
  }

  .header-social {
    border-left: 1px solid var(--rule);
  }

  .header-search {
    --header-search-width: 100%;
  }

  .header-search-input {
    border-bottom: 3px solid var(--ink);
    bottom: 100%;
    top: auto;
  }
  .article-glossary .glossary-title-row {
    align-items: center;
    gap: 10px;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    margin-left: 0;
    margin-right: 0;
  }

  .glossary-entry-nav-link {
    font-size: 1.25rem;
    height: 72px;
    width: 36px;
  }

  .article-body .article-figure.alignleft,
  .article-body .article-video.alignleft,
  .article-body .article-video.alignright,
  .article-body .article-figure.alignright {
    clear: both;
    display: table;
    float: none;
    margin: 1.25em auto;
    max-width: min(100%, 720px);
    width: auto;
  }

  .article-body .article-figure.alignleft img,
  .article-body .article-figure.alignright img {
    max-height: 400px;
    object-fit: contain;
    width: auto;
  }

  .article-europolitan .europolitan-issue {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    margin: 1.8rem 0 2.4rem;
  }

  .article-europolitan .europolitan-issue-copy,
  .article-europolitan .europolitan-issue:nth-of-type(even) .europolitan-issue-copy,
  .article-europolitan .europolitan-cover.article-figure,
  .article-europolitan .europolitan-issue:nth-of-type(even) .europolitan-cover.article-figure {
    grid-column: 1;
  }

  .article-europolitan .europolitan-issue-copy,
  .article-europolitan .europolitan-issue:nth-of-type(even) .europolitan-issue-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .article-europolitan .europolitan-cover.article-figure {
    max-width: min(100%, 360px);
    width: 100%;
  }

  .article-europolitan .europolitan-cover.article-figure img {
    max-height: 480px;
  }
  .site-footer-inner {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .footer-social {
    gap: 7px;
  }
}



























.comment-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.comment-list li {
  margin: 0;
  padding: 0;
}

.comment-list--children {
  border-left: 1px solid var(--rule);
  margin-left: 18px;
  padding-left: 16px;
}

.comment-empty {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 12px 14px;
}

.comment-header {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.comment-author {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comment-body {
  margin-top: 8px;
}

.comment-body p:first-child {
  margin-top: 0;
}

.comment-body p:last-child {
  margin-bottom: 0;
}

.comment--reply {
  border-left-width: 3px;
}

.comment-actions {
  margin-top: 8px;
}

.comment-reply-button,
.comment-cancel-reply {
  background: none;
  border: 0;
  color: var(--red);
  cursor: pointer;
  font: 800 0.76rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.06em;
  padding: 0;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 0.22em;
}

.comment-cancel-reply {
  margin-left: 8px;
}

.comment-replying,
.comment-form-status,
.comment-empty {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  margin: 0;
}

.comment-form-status.is-error {
  color: var(--red-dark);
  font-weight: 700;
}

.comment-form-status.is-ok {
  color: #27613a;
  font-weight: 700;
}

.comment-turnstile {
  min-height: 0;
}

.comment-form button:disabled {
  cursor: wait;
  opacity: 0.58;
}

@media (max-width: 760px) {
  .comments {
    margin-left: -8px;
    margin-right: -8px;
    padding: 18px 14px 22px;
  }
}

.admin-comment-tabs,
.admin-comment-toolbar,
.admin-comment-pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.admin-comment-tabs a,
.admin-comment-toolbar button,
.admin-comment-action {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 5px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: 800 0.76rem/1 Arial, Helvetica, sans-serif;
  padding: 9px 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.admin-comment-tabs a.is-active,
.admin-comment-toolbar button {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.admin-comment-toolbar input[type="search"] {
  border: 1px solid var(--rule);
  border-radius: 5px;
  font: inherit;
  min-width: min(320px, 100%);
  padding: 9px 10px;
}

.admin-comment-list {
  display: grid;
  gap: 14px;
}

.admin-comment-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.admin-comment-card > header {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-comment-card header span {
  color: var(--muted);
  display: block;
  font: 0.78rem/1.35 Arial, Helvetica, sans-serif;
  margin-top: 3px;
}

.admin-comment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: end;
}

.admin-comment-action {
  align-items: center;
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

.admin-comment-action svg {
  display: block;
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 17px;
}

.admin-comment-action.is-approved {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.admin-comment-action.is-spam,
.admin-comment-action.is-trash {
  color: var(--red-dark);
}

.admin-comment-edit {
  display: grid;
  gap: 10px;
}

.admin-comment-author-fields {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-comment-edit label {
  color: var(--muted);
  display: grid;
  font: 800 0.72rem/1.2 Arial, Helvetica, sans-serif;
  gap: 5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-comment-edit input,
.admin-comment-edit textarea {
  border: 1px solid var(--rule);
  border-radius: 5px;
  color: var(--ink);
  font: 400 0.95rem/1.45 Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  padding: 9px 10px;
  text-transform: none;
}

.admin-comment-edit button {
  background: var(--ink);
  border: 0;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font: 800 0.76rem/1 Arial, Helvetica, sans-serif;
  justify-self: start;
  padding: 10px 12px;
  text-transform: uppercase;
}

.admin-comment-pagination {
  justify-content: space-between;
  margin-top: 16px;
}

@media (max-width: 760px) {
  .admin-comment-card > header,
  .admin-comment-author-fields {
    grid-template-columns: 1fr;
  }

  .admin-comment-actions {
    justify-content: start;
  }

  .comment-list--children {
    margin-left: 10px;
    padding-left: 10px;
  }
}

.site-footer-links {
  align-self: stretch;
  display: grid;
  gap: 10px;
  grid-template-rows: auto 1fr;
}

.footer-policy-links {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-self: end;
  justify-content: flex-end;
}

.footer-privacy-link {
  align-self: end;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  justify-self: end;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cookie-notice {
  align-items: center;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  bottom: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  color: var(--ink);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  left: 50%;
  max-width: min(940px, calc(100vw - 28px));
  padding: 12px 14px;
  position: fixed;
  transform: translateX(-50%);
  width: max-content;
  z-index: 120;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
  margin: 0;
}

.cookie-notice a {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cookie-notice button {
  background: var(--red);
  border: 0;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font: 850 0.72rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.06em;
  padding: 9px 12px;
  text-transform: uppercase;
}

.cookie-notice button:hover {
  background: var(--red-dark);
}

@media (max-width: 760px) {
  .footer-policy-links {
    justify-content: flex-start;
    justify-self: start;
  }

  .cookie-notice {
    align-items: stretch;
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
  }

  .cookie-notice button {
    justify-self: start;
  }
}


.admin-live-publish-panel {
  border: 1px solid var(--rule);
  border-radius: 6px;
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 16px;
}

.admin-live-publish-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
}

.admin-live-publish-panel p {
  margin: 0;
}

.admin-status-badge {
  background: #f5f5f2;
  border: 1px solid var(--rule);
  border-radius: 999px;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  margin-right: 6px;
  padding: 5px 8px;
  text-transform: uppercase;
  vertical-align: middle;
}

.admin-status-badge.is-ok {
  background: #eef8ef;
  border-color: #9ac49e;
  color: #226333;
}

.admin-status-badge.is-error {
  background: #fff1ee;
  border-color: #d6a097;
  color: #8b2d20;
}

.admin-live-publish-progress {
  background: #fbfbfa;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 10px;
}

.admin-live-publish-progress[hidden] {
  display: none;
}

.admin-live-publish-progress progress {
  accent-color: var(--red);
  display: block;
  height: 14px;
  width: 100%;
}

.admin-live-publish-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.admin-live-publish-actions form {
  margin: 0;
}

.admin-live-publish-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.admin-live-publish-files {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
}

.admin-live-publish-files ul {
  margin: 8px 0 0;
  padding-left: 18px;
}


















.article-body .event-country-flag {
  display: inline-block;
  font-size: 0.85em;
  line-height: 1;
  margin-right: 0.28em;
  vertical-align: 0.03em;
}




