/*
Theme Name: Archives Wales
Theme URI: https://marcheatleydesign.com
Description: Archives Wales Theme
Author: Marc Heatley	
Author URI: https://marcheatleydesign.com
Version: 1
Tags:

*/
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
  background: transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0;
}

.leaflet-container img.leaflet-tile {
  /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
  mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

svg.leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline-offset: 1px;
}

.leaflet-container a {
  color: #0078A8;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
  background-image: url(images/marker-icon.png);
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline;
}

.leaflet-attribution-flag {
  display: inline !important;
  vertical-align: baseline !important;
  width: 1em;
  height: 0.6669em;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px #fff;
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  font-size: 1.08333em;
  min-height: 1px;
}

.leaflet-popup-content p {
  margin: 17px 0;
  margin: 1.3em 0;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font: 16px/24px Tahoma, Verdana, sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}

.leaflet-popup-scrolled {
  overflow: auto;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

/* Printing */
@media print {
  /* Prevent printers from removing background-images of controls. */
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
/*
 * Hide only visually, but have it available for screen readers: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

:root {
  --color-black: #232529;
  --color-ivory: #f3f0e9;
  --color-white: #faf9f4;
  --color-red: #ba5a32;
  --color-red-contrast: var(--color-white);
  --color-green: #457d56;
  --color-green-contrast: var(--color-white);
  --color-blue: #297d9f;
  --color-blue-contrast: var(--color-white);
  --color-blue-light: #b5e2f4;
  --length-spacer: clamp(1rem, 0.5rem + 1vw, 2rem);
  --length-border-radius: 0.25rem;
  --length-site-max:120rem;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --color-ground: var(--color-ivory);
  --color-surface: var(--color-white);
  --color-text: var(--color-black);
}

.meta {
  padding: 0.3em 0.5em;
  background-color: var(--color-ground);
  color: var(--color-text);
  width: fit-content;
  border-radius: var(--length-border-radius);
  font-family: var(--font-mono);
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: smaller;
  text-wrap: balance;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  max-width: 40ch;
  font-size: clamp(1.5rem, 1.5rem + 1.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
}


/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
  color: var(--color-blue);
}

a:has(img) {
  display: contents;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}


/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

tr {
  border-bottom: solid thin;
}

td, th {
  vertical-align: top;
  padding: 0.5em;
}



/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-style: normal;
  box-sizing: border-box;
}

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

body {
  background-color: var(--color-ground);
  color: var(--color-text);
  margin: 0;
  padding: 0;
  line-height: 1.8;
  font-size: clamp(1rem, 1rem + 1vw, 1.3rem);
  word-break: break-word;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
  padding: 1em;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: var(--font-mono);
}

pre {
  font-family: var(--font-mono);
  background-color: #0a1b3a;
  color: #00FF00;
  padding: 1em;
  line-height: 1.5;
}

time {
  font-family: var(--font-mono);
  font-weight: 400;
  font-style: normal;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button,
.button {
  display: inline-flex;
  gap: 0.3em;
  line-height: 1.5;
  background-color: var(--color-red);
  color: var(--color-red-contrast);
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.3em 0.5em;
  font-size: smaller;
  border-radius: var(--length-border-radius);
  svg {
    display: block;
    aspect-ratio: 1;
    height: 1.5em;
  }
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
  padding: 0.5em 0.75em;
  line-height: 1;
  border-radius: var(--length-border-radius);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}


/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img,
[class^=wp-image] {
  border: 0;
  margin: 0;
  max-width: 100%;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

iframe[src*=youtu],
iframe[src*=vimeo] {
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.featuredImage-wrapper,
.wp-block-image,
.aligncenter {
  display: flex;
  padding: 0;
  flex-direction: column;
  border-radius: var(--length-border-radius);
  overflow: clip;
  margin: 0 0 var(--length-spacer);
}

.featuredImage {
  display: block;
  margin: 0;
  max-height: 60svh;
  height: auto;
  object-fit: contain;
  background-color: black;
}

figcaption,
.wp-block-image :where(figcaption),
[class^=wp-image] :where(figcaption) {
  font-family: var(--font-mono);
  display: inline-block;
  font-size: smaller;
  letter-spacing: 0.05em;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0.25em 1em;
  margin: 0;
  a {
    color: var(--color-blue-light);
  }
}

.siteHeader-wrapper {
  background-color: var(--color-black);
  color: var(--color-white);
  a {
    color: currentColor;
    text-decoration: none;
  }
}

.siteHeader-inner {
  padding: var(--length-spacer);
  padding-bottom: 0;
  margin: auto;
  max-width: var(--length-site-max);
  display: grid;
  gap: 1em;
  align-items: center;
}
@media (width > 40rem) {
  .siteHeader-inner {
    grid-template-columns: 1fr max-content;
    grid-template-rows: fit-content fit-content;
    align-items: center;
  }
}

.siteHeader-title {
  margin: 0;
}
@media (width > 40rem) {
  .siteHeader-title {
    grid-column: 1;
    grid-row: 1;
  }
}

.siteHeader-logo {
  min-height: unset;
  position: relative;
  display: block;
  height: auto;
  width: 12rem;
  fill: currentColor;
  margin: 0;
  & a {
    display: block;
  }
}

.siteNav-wrapper {
  margin: auto;
}
@media (width > 40rem) {
  .siteNav-wrapper {
    grid-column: 2;
    grid-row: 1/3;
  }
}

.languageSwitcher {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
}
@media (width > 40rem) {
  .languageSwitcher {
    grid-row: 2;
    justify-content: start;
  }
}

.lang-item a {
  line-height: 1;
  display: inline-block;
  padding: 0.5em 1em;
}

.current-lang a {
  background-color: var(--color-surface);
  color: var(--color-text);
  border-top-left-radius: var(--length-border-radius);
  border-top-right-radius: var(--length-border-radius);
}

.siteNav-wrapper {
  .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
  }
  .siteNav-toggle {
    display: none;
    background-color: transparent;
    border: solid thin;
  }
  .menu-item {
    min-width: max-content;
    white-space: nowrap;
    padding: 0.5em 0 0.5em 0.5em;
  }
  .menu-item.current-menu-item {
    a {
      text-decoration: underline;
      text-underline-offset: 0.2em;
    }
  }
}

/* // pre hiding */
/* .siteNav-wrapper.squish-ready {
  .menu {
    flex-wrap: wrap;
  }
}

.siteNav-wrapper.too-small {
  .siteNav-toggle {
    display: block;
  }
  .menu {
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
} */
/* 
.siteNav-wrapper.too-small.is-open {
  .menu {
    margin: auto;
    padding: var(--length-spacer);
    background-color: rgba(black, 0.8);
    position: fixed;
    inset: 2rem;
    width: max-content;
    height: max-content;
    flex-direction: column;
    text-align: center;
  }
} */
.siteFooter-wrapper {
  background-color: var(--color-black);
  color: var(--color-white);
}

.siteFooter-inner {
  padding: var(--length-spacer);
  max-width: var(--length-site-max);
  margin: auto;
  display: grid;
  gap: calc(var(--length-spacer) * 2);
  a {
    color: currentColor;
    text-decoration: none;
  }
}
@media (width > 40rem) {
  .siteFooter-inner {
    gap: var(--length-spacer);
    align-items: flex-start;
    grid-template-columns: 1fr 1fr;
  }
}

.siteFooter {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--length-spacer);
}
@media (min-width: 40rem) {
  .siteFooter {
    max-width: 30rem;
    text-align: right;
    justify-content: flex-end;
    justify-self: flex-end;
  }
}

.copyright {
  font-size: smaller;
}

.siteFooter-menus {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--length-spacer) * 2);
  grid-column: 1;
  &::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0.1em;
    background-color: var(--color-white);
    transform: translateX(-50%);
    pointer-events: none;
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 40rem) {
  .siteFooter-menus {
    width: max-content;
  }
}

.siteFooter-logos {
  max-width: 100%;
  display: flex;
  justify-content: center;
  gap: var(--length-spacer);
  height: 3rem;
  .wg-logo,
  .acaw-logo {
    height: 3rem;
    width: auto;
  }
}
@media (min-width: 40rem) {
  .siteFooter-logos {
    justify-content: flex-end;
  }
}

.footerSocials-icon {
  display: inline-block;
  vertical-align: baseline;
  aspect-ratio: 1;
  width: 1em;
  height: 1em;
  margin-right: 0.2em;
  transform: translateY(0.1em);
}

.search-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: calc(var(--length-border-radius) / 2);
  width: fit-content;
  display: flex;
  border-radius: var(--length-border-radius);
  input {
    border: none;
  }
  [type=submit] {
    background-color: var(--color-red);
    color: var(--color-red-contrast);
    text-transform: uppercase;
  }
}

.postTeaser {
  padding: calc(var(--length-spacer) / 2) var(--length-spacer);
  background-color: var(--color-white);
  border-left: solid 0.25em var(--color-red);
  container-type: inline-size;
  border-top-right-radius: var(--length-border-radius);
  border-bottom-right-radius: var(--length-border-radius);
  height: 100%;
}

.postTeaser-inner {
  display: grid;
  gap: 0.5em;
}
@container (width > 30rem) {
  .postTeaser-inner {
    grid-template-columns: 2fr 1fr;
  }
}

.postTeaser-image-link {
  grid-row: 1;
}

.postTeaser-content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@container (width > 30rem) {
  .postTeaser-content {
    grid-column: 1;
    grid-row: 1;
  }
}

.postTeaser-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Related Posts */
.relatedPosts-wrapper {
  container-type: inline-size;
  max-width: var(--length-site-max);
  width: 100%;
  margin: auto;
  padding: var(--length-spacer);
  display: grid;
  gap: 1em;
  &.fullWidth {
    grid-column: 1/-1;
  }
}
@media (width > 50rem) {
  .relatedPosts-wrapper {
    padding: 0;
  }
}

.relatedPosts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-content: stretch;
  grid-template-rows: min-content auto;
  gap: 1em;
}
@container (width > 40rem) {
  .relatedPosts {
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  }
}

/* Single */
.post-header, .post-footer {
  display: grid;
  gap: 1em;
}

.formModal-wrapper {
  position: fixed;
  z-index: 15;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow-y: scroll;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-content: center;
  justify-content: center;
  padding: var(--proper-length-spacer);
}

.formModal {
  position: relative;
  max-width: 50rem;
  background: white;
  form {
    padding: 2rem;
    background: white;
  }
  fieldset {
    display: block;
    border: none;
    padding: 0;
  }
  label {
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  .field-wrapper {
    margin-bottom: 1rem;
  }
  .field-help {
    padding: 0.25rem;
    background-color: #efefea;
    margin: 0.5rem 0;
  }
  .field-error {
    padding: 0.25rem;
    background-color: var(--proper-color-red);
    color: white;
    margin: 0.5rem 0;
  }
  [type=text],
  [type=url],
  [type=email],
  textarea {
    width: 100%;
    max-width: 40rem;
    border: solid thin black;
    padding: 0.75rem;
  }
}

.formModal-close {
  position: absolute;
  top: 1rem;
  right: 2rem;
}

.formModal-title {
  background-color: var(--proper-color-blue);
  color: white;
  padding: 2rem;
  margin: 0;
}

.formModal-message {
  padding: 2rem;
}

.fileUploader-preview {
  border: 1px dashed grey;
  margin-top: 1em;
  padding: 1em;
  img {
    max-height: 15em;
    width: auto;
  }
}

.pagination {
  padding: var(--length-spacer) 0;
}

.page-numbers {
  display: inline-block;
  padding: calc(var(--length-spacer) / 2) calc(var(--length-spacer) * 0.75);
  line-height: 1;
  background-color: var(--color-red);
  color: var(--color-white);
  text-decoration: none;
  border-radius: var(--length-border-radius);
}

.page-numbers.current {
  background-color: var(--color-green);
}

.projectTeaser {
  border-radius: var(--length-border-radius);
  overflow: clip;
  background-color: var(--color-surface);
  display: block;
}

.projectTeaser-header {
  background-color: var(--color-green);
  color: var(--color-green-contrast);
  padding: 1rem;
  display: grid;
  grid-template-columns: auto max-content;
  align-items: start;
  gap: 1em;
}

.projectTeaser-title {
  font-size: larger;
  font-weight: bold;
  margin: 0;
  a {
    color: inherit;
    text-decoration: none;
  }
}

.projectTeaser-image {
  display: block;
  aspect-ratio: 3/1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.projectTeaser-content {
  padding: 1rem;
  p:first-child {
    margin-top: 0;
  }
}

.relatedprojects {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--length-spacer);
}

/* Main project page */
.projectSidebar-getInvolved {
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: var(--length-border-radius);
  overflow: clip;
}

/* Partners & Funders */
.projectFunders-wrapper {
  background-color: var(--color-green);
  color: var(--color-green-contrast);
  border-radius: var(--length-border-radius);
  overflow: clip;
}

.projectSidebar-title {
  font-size: smaller;
  text-transform: uppercase;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  padding: 0.5em 1em;
}

.projectPartners-wrapper {
  background-color: var(--color-red);
  color: var(--color-red-contrast);
  border-radius: var(--length-border-radius);
  overflow: clip;
}

.projectSidebar-content {
  color: var(--color-text);
  margin: 0;
  padding: 0.5em 1em;
  list-style: none;
  background-color: white;
  p:first-child {
    margin-top: 0;
  }
  p:last-child {
    margin-bottom: 0;
  }
}

.projectSidebar-list {
  color: var(--color-text);
  margin: 0;
  padding: 0.5em 0.5em 1em;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  gap: 1em;
}

.projectSidebar-logo {
  display: block;
  height: 4rem;
  width: auto;
  background-color: white;
  object-fit: contain;
  max-width: 100%;
}

.project-relatedPosts {
  padding: var(--length-spacer);
  margin-top: var(--length-spacer);
  border-top: solid thin;
}

.logo-placeholder {
  font-size: small;
  max-width: 30ch;
  font-family: var(--font-mono);
  background-color: var(--color-ground);
  padding: 1em;
  border-radius: 1em;
}

.memberTeaser {
  background-color: var(--color-white);
  border-left: solid 0.25em var(--color-red);
  height: 100%;
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 1em;
  align-items: center;
  a {
    display: block;
    text-decoration: none;
    padding: calc(var(--length-spacer) / 2);
    color: currentColor;
  }
}

.memberTeaser-logo {
  aspect-ratio: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background-color: white;
  padding: 0.5em;
}

.memberTeaser.small {
  grid-template-columns: unset;
  h3 {
    line-height: 1.2;
    font-size: large;
    font-weight: 500;
  }
}

.memberTeaser.current {
  border-left-color: var(--color-green);
}

.member-nav {
  display: grid;
  gap: calc(var(--length-spacer) / 2);
}
@container (width > 30rem) {
  .member-nav {
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  }
}

.catalogueLink-wrapper {
  background-color: var(--color-red);
  color: var(--color-red-contrast);
  border-radius: var(--length-border-radius);
  overflow: clip;
}

.catalogueLink {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1em;
  color: inherit;
  text-decoration: none;
}

.membersLink-wrapper {
  background-color: var(--color-green);
  color: var(--color-green-contrast);
  border-radius: var(--length-border-radius);
  overflow: clip;
}

.membersLink {
  display: block;
  padding: 1em;
  color: inherit;
  text-decoration: none;
}

.leafletMap {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  max-height: 50vh;
  border-radius: 0.2em;
  overflow: clip;
}

.downloads-wrapper {
  border-top: solid thin;
  display: grid;
  gap: 0.5em;
  padding-top: 0.5em;
}

.downloads {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5em;
  align-items: center;
}

.download {
  display: grid;
  grid-template-columns: auto max-content;
  padding: 0.5em;
  background-color: var(--color-green);
  color: var(--color-green-contrast);
  border-radius: var(--length-border-radius);
}

.download-link {
  color: currentColor;
}

.familyTree-wrapper {
  background-color: var(--color-surface);
  border-radius: var(--length-border-radius);
  overflow: clip;
}

.familyTree-wrapper li li {
  border-top: solid var(--color-ground);
}

.familyTree-wrapper a {
  color: currentColor;
  text-decoration: none;
  display: block;
  padding: 0.25em 0.5em;
  border-left: solid 0.25em var(--color-green);
}

.familyTree-wrapper a:hover {
  background-color: var(--color-green);
  color: var(--color-green-contrast);
}

.familyTree {
  list-style: none;
  margin: 0;
  padding: 0;
}

.familyTree h3 {
  padding: 0;
  margin: 0;
}

.familyTree h3 a {
  display: block;
  margin: 0;
  padding-block: 0.75em;
  background-color: var(--color-green);
  color: var(--color-green-contrast);
}

.familyTree ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.familyTree .current_page_item a {
  text-decoration: underline currentColor;
  border-left-color: var(--color-red);
}

.relatedItems-wrapper {
  background-color: var(--color-black);
  color: var(--color-white);
}

.relatedItems-inner {
  max-width: var(--length-site-max);
  margin: 0 auto;
  padding: var(--length-spacer);
  display: grid;
  gap: var(--length-spacer);
}

.relatedItemTeaser {
  /* background-color: black; */
  /* background-color: var(--color-ground); */
  /* color:var(--color-text); */
  border-radius: var(--length-border-radius);
  overflow: clip;
  display: grid;
}

.relatedItemTeaser-image {
  background-color: black;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  padding: 1em;
  height: auto;
  object-fit: contain;
  transition: 0.2s;
  margin: 0;
}

.relatedItemTeaser-image:hover {
  padding: 0;
}

button.relatedItemTeaser-imageButton,
.itemModal-close {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  line-height: 1;
}

.itemModal {
  max-width: clamp(50vw, var(--length-site-max) * 0.8, 80rem);
  background-color: var(--color-surface);
  border: none;
  border-radius: var(--length-border-radius);
  padding: 0;
  margin: auto;
  padding: 0.5em;
  .featuredImage-wrapper {
    margin: 0;
  }
}

.itemModal::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

.itemModal-close {
  width: 1.5em;
  height: 1.5em;
  aspect-ratio: 1;
  background-color: black;
  padding: 0.2em;
  position: absolute;
  top: 0;
  right: 0;
  font-size: xx-large;
  margin: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.itemModal-inner {
  display: grid;
  gap: 0.5em;
}

.itemModal-content {
  p:first-child {
    margin-top: 0;
  }
  p:last-child {
    margin-bottom: 0;
  }
}

.itemModal-footer {
  display: flex;
  gap: 0.5em;
}

.siteWrapper {
  min-height: 100vh;
  /* // fix for WordPress' admin bar */
  .admin-bar & {
    min-height: calc(100vh - 32px);
    @media screen and (max-width: 782px) {
      min-height: calc(100vh - 46px);
    }
  }
}

.siteFooter-wrapper {
  position: sticky;
  top: 100lvh;
}

.frontPage-hero-wrapper {
  background-color: var(--color-surface);
}

.frontPage-hero {
  max-width: var(--length-site-max);
  margin: auto;
  padding: var(--length-spacer);
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  gap: var(--length-spacer);
}
@media (width > 30rem) {
  .frontPage-hero {
    display: grid;
    grid-template-columns: auto clamp(25%, 30rem, 30%);
  }
}

.frontPage-hero-title {
  font-family: var(--font-mono);
  margin: 0;
}

.frontPage-hero-image {
  display: block;
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--length-border-radius);
}

.frontPage-map-wrapper {
  background-color: var(--color-green);
  color: var(--color-green-contrast);
}

.frontPage-map {
  max-width: calc(var(--length-site-max) * 0.5);
  margin: auto;
  padding: var(--length-spacer);
  display: grid;
  gap: var(--length-spacer);
}
@media (width > 30rem) {
  .frontPage-map {
    align-items: center;
    grid-template-columns: 1fr 1fr;
  }
}

.frontPage-map-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--length-border-radius);
}

.frontPage-posts {
  container-type: inline-size;
  max-width: var(--length-site-max);
  margin: auto;
  padding: var(--length-spacer);
}

.page-wrapper {
  display: grid;
  max-width: var(--length-site-max);
  margin: auto;
}
@media (width > 60rem) {
  .page-wrapper {
    gap: var(--length-spacer);
    padding-inline: var(--length-spacer);
    padding-block-end: var(--length-spacer);
    grid-template-columns: auto clamp(20rem, 33vw, 40rem);
  }
}

.page-wrapper main {
  background-color: var(--color-surface);
  max-width: 80rem;
  overflow: auto; /* Clearfix */
  padding: var(--length-spacer);
}

.sidebar {
  align-content: start;
  container-name: sidebar;
  container-type: inline-size;
  display: grid;
  gap: var(--length-spacer);
  padding: var(--length-spacer);
}
@media (width > 60rem) {
  .sidebar {
    padding: var(--length-spacer) 0;
  }
}

.archive-header-wrapper {
  background-color: var(--color-surface);
}

.archive-header {
  max-width: var(--length-site-max);
  margin: auto;
  padding: var(--length-spacer);
}

.archive-header-inner {
  display: grid;
  gap: var(--length-spacer);
}

.archiveSearchbar-wrapper {
  background-color: var(--color-black);
}

.archiveSearchbar {
  max-width: var(--length-site-max);
  margin: auto;
  padding: calc(var(--length-spacer) / 2) var(--length-spacer);
  display: flex;
  justify-content: flex-end;
}

.archive-content {
  max-width: var(--length-site-max);
  margin: auto;
  padding: var(--length-spacer);
}

.archiveGrid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--length-spacer);
  list-style: none;
}
@media (width > 40rem) {
  .archiveGrid {
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  }
}

.archiveList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--length-spacer);
  list-style: none;
}

.memberMeta-wrapper {
  background-color: var(--color-ground);
  border-radius: var(--length-border-radius);
  overflow: clip;
  font-family: var(--font-mono);
  display: grid;
  container-type: inline-size;
}

.memberMeta-location-wrapper {
  border-top: dashed thick var(--color-surface);
  padding: 1em;
}

.memberMeta-location {
  border-radius: var(--length-border-radius);
  overflow: clip;
  margin: 0;
  justify-content: stretch;
  background-color: var(--color-text);
}

.memberMeta-openingHours {
  border-top: dashed thick var(--color-surface);
  padding: 1em;
  font-size: smaller;
}

.memberMeta-contacts-wrapper {
  display: grid;
  padding: 1em;
  gap: 0.5em;
  align-items: start;
  grid-template-rows: auto;
  overflow: hidden;
}
@container (min-width: 50ch) {
  .memberMeta-contacts-wrapper {
    grid-template-columns: min-content 1fr;
  }
}

.memberMeta-logo-wrapper {
  background-color: white;
  aspect-ratio: 3/1;
  width: 100%;
  height: auto;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--length-border-radius);
}
@container (min-width: 50ch) {
  .memberMeta-logo-wrapper {
    aspect-ratio: 1;
    width: clamp(3em, 20vw, 8em);
  }
}

.memberMeta-logo {
  aspect-ratio: 1;
  object-fit: contain;
  background-color: white;
  width: 100%;
  height: auto;
}

.memberMeta-contacts {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5em;
  max-width: 28em;
}

.member-relatedPosts {
  padding: var(--length-spacer);
  .relatedPosts-wrapper {
    padding: var(--length-spacer);
    color: var(--color-green-contrast);
    background-color: var(--color-green);
    container-type: inline-size;
    display: grid;
    gap: var(--length-spacer);
  }
}
