@charset "UTF-8";
/* Import partials from `sass_dir` (defaults to `_sass`) */
:root {
  color-scheme: light dark;
  --white: hsl(0, 0%, 98%);
  --absolute-white: hsl(0, 0%, 100%);
  --black: hsl(216, 11%, 9%);
  --absolute-black: hsl(0, 0%, 0%);
  --absolute: light-dark(var(--absolute-white), var(--absolute-black));
  --gray-100: rgb(240, 240, 240);
  --gray-200: rgb(220, 220, 220);
  --gray-300: rgb(205, 205, 205);
  --gray-400: rgb(190, 190, 190);
  --gray-500: rgb(170, 175, 180);
  --gray-600: rgb(140, 145, 150);
  --gray-700: rgb(70, 75, 80);
  --gray-800: rgb(50, 55, 60);
  --gray-900: rgb(30, 35, 40);
  --blue: rgb(0, 122, 255);
  --desaturated-blue: rgb(59, 89, 152);
  --purple: rgb(198, 67, 252);
  --magenta: rgb(230, 0, 126);
  --red-tone: rgb(177, 14, 30);
  --red: hsl(353, 96%, 56%);
  --red-tint: hsl(355, 84%, 88%);
  --red-tone: hsl(353, 96%, 40%);
  --orange-tint: rgb(255, 205, 183);
  --orange: rgb(255, 79, 0);
  --orange-tone: rgb(200, 63, 0);
  --yellow: rgb(255, 215, 0);
  --green-tone: rgb(4, 80, 9);
  --green: rgb(74,159,101);
  --green-tint: rgb(116, 190, 139);
  --cyan: hsl(198, 100%, 45%);
  --cyan-tint: hsl(198, 100%, 60%);
  --cyan-tone: hsl(198, 100%, 30%);
  --brand-tint: var(--cyan-tint);
  --brand-tone: var(--cyan-tone);
  --brand: var(--cyan);
  --color: light-dark(var(--black), var(--white));
  --color--inverse: light-dark(var(--white), var(--black));
  --background: light-dark(var(--white), var(--black));
  --background--inverse: light-dark(var(--black), var(--white));
  --background--translucent: light-dark(hsla(0, 0%, 98%, 0.5), hsla(216, 11%, 9%, 0.5));
  --secondary-background: light-dark(var(--gray-100), var(--gray-900));
  --secondary-hoverBackground: light-dark(var(--gray-300), var(--gray-700));
  --secondary-borderColor: light-dark(var(--gray-300), var(--gray-700));
  --secondary-color: light-dark(var(--gray-600), var(--gray-500));
}

:root {
  --shadow-color: var(--color);
  --shadow-shallow: 0px 3px 0px var(--shadow-color);
  --shadow-deep: 0px 5px 0px var(--shadow-color);
  --shadow-deep--inverse: 0px 5px 0px transparent;
}

:root {
  --pad: 15px;
  /* ELEMENTS */
  --touch-target-size: 44px;
  --input-size: 40px;
  --border-width: 3px;
  --border-focus-width: 1px;
  --border-radius: 12.5px;
  --input-padding: 10px 15px;
  --outline-offset: 3px;
  --outline-focus-offset: 0px;
  --outline-active-offset: 3px;
  --radios-size: 40px;
  --radios-label-padding-left-right: 20px;
}

/* PADDING OVERRIDES */
.padding {
  padding: calc(var(--pad) * var(--mult)) !important;
}

.padding-top {
  padding-top: calc(var(--pad) * var(--mult)) !important;
}

.padding-bottom {
  padding-bottom: calc(var(--pad) * var(--mult)) !important;
}

.padding-left {
  padding-left: calc(var(--pad) * var(--mult)) !important;
}

.padding-right {
  padding-right: calc(var(--pad) * var(--mult)) !important;
}

.padding--last-child *:last-child {
  padding: calc(var(--pad) * var(--mult)) !important;
}

/* MARGIN OVERRIDES */
.margin {
  margin: calc(var(--pad) * var(--mult)) !important;
}

.margin-top {
  margin-top: calc(var(--pad) * var(--mult)) !important;
}

.margin-bottom {
  margin-bottom: calc(var(--pad) * var(--mult)) !important;
}

.margin-left {
  margin-left: calc(var(--pad) * var(--mult)) !important;
}

.margin-right {
  margin-right: calc(var(--pad) * var(--mult)) !important;
}

/* Device width reset */
@-ms-viewport {
  width: device-width;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, .radio-input, label, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, table thead,
table tfoot, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reset browser styles */
*,
*::before,
*::after {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p, .radio-input, label,
figure, blockquote, dl, dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
  background: none;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

fieldset {
  /* Remove the default border */
  border: none;
}

button {
  font-size: 100%;
  font-family: inherit;
  border: 0;
  padding: 0;
  background: unset;
  border: unset;
  -webkit-appearance: none;
}

.hidden {
  display: none !important;
}

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

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.container {
  display: block;
  position: relative;
  padding-left: var(--pad);
  padding-right: var(--pad);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media (min-width: 700px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 1100px) {
  .container {
    max-width: 900px;
  }
}

body {
  position: relative;
  display: grid;
  grid-template-areas: "header" "main" "footer";
  grid-template-columns: 100vw;
  grid-template-rows: auto minmax(calc(100vh - 71px), auto) auto;
}

body:has(.skip-link:focus) {
  grid-template-rows: auto auto minmax(calc(100vh - 71px), auto) auto;
}

#page-content,
#post-content,
.post-body {
  width: 100%;
  margin-block-end: calc(var(--pad) * 4);
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  min-height: 100vh;
  /* GLOBAL FONT SETTINGS */
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  font-family: "JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", Roboto, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: auto;
  letter-spacing: normal;
}

html,
body {
  background: var(--background);
  color: var(--color);
}

/* Enable view transitions for everyone except those who prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }
}
/* HEADER SCROLL DRIVEN ANIMATION */
@keyframes global-navigation {
  from {
    top: 0;
    padding: 0;
    max-width: 100%;
  }
}
@keyframes navigation {
  from {
    border-radius: 0;
    border: 3px solid transparent;
    box-shadow: var(--shadow-deep--inverse);
    backdrop-filter: blur(0) saturate(0);
  }
}
@font-face {
  font-family: "JP";
  font-weight: normal;
  font-style: normal;
  src: url("/fonts/regular.eot");
  src: url("/fonts/regular.eot?#iefix") format("embedded-opentype"), url("/fonts/regular.woff2") format("woff2"), url("/fonts/regular.woff") format("woff");
  -moz-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  -o-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  -webkit-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  font-display: fallback;
}
@font-face {
  font-family: "JP";
  font-weight: normal;
  font-style: italic;
  src: url("/fonts/italic.eot");
  src: url("/fonts/italic.eot?#iefix") format("embedded-opentype"), url("/fonts/italic.woff2") format("woff2"), url("/fonts/italic.woff") format("woff");
  -moz-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  -o-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  -webkit-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  font-display: fallback;
}
@font-face {
  font-family: "JP";
  font-weight: bold;
  font-style: normal;
  src: url("/fonts/bold.eot");
  src: url("/fonts/bold.eot?#iefix") format("embedded-opentype"), url("/fonts/bold.woff2") format("woff2"), url("/fonts/bold.woff") format("woff");
  -moz-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  -o-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  -webkit-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  font-display: fallback;
}
@font-face {
  font-family: "JP";
  font-weight: bold;
  font-style: italic;
  src: url("/fonts/bolditalic.eot");
  src: url("/fonts/bolditalic.eot?#iefix") format("embedded-opentype"), url("/fonts/bolditalic.woff2") format("woff2"), url("/fonts/bolditalic.woff") format("woff");
  -moz-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  -o-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  -webkit-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  font-display: fallback;
}
@font-face {
  font-family: "Permanent Marker";
  font-weight: 400;
  font-style: normal;
  src: url("/fonts/PermanentMarker-Regular.woff2") format("woff2"), url("/fonts/PermanentMarker-Regular.woff") format("woff");
  -moz-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  -o-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  -webkit-font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  font-feature-settings: "ss02", "tnum", "liga", "zero", "kern";
  font-display: fallback;
}
.paragraph,
p,
.radio-input,
label,
li,
dl {
  font-size: clamp(22px, 3vw, 30px);
  padding: 0 0 clamp(22px, 3vw, 32px);
  line-height: 1.2;
  font-style: normal;
  font-weight: normal;
}
.paragraph.small-caps, .paragraph .small-caps,
p.small-caps,
.small-caps.radio-input,
label.small-caps,
p .small-caps,
.radio-input .small-caps,
label .small-caps,
li.small-caps,
li .small-caps,
dl.small-caps,
dl .small-caps {
  font-size: clamp(18px, 3vw, 24px);
  font-variant: small-caps !important;
}
.paragraph.small-text, .paragraph .small-text,
p.small-text,
.small-text.radio-input,
label.small-text,
p .small-text,
.radio-input .small-text,
label .small-text,
li.small-text,
li .small-text,
dl.small-text,
dl .small-text {
  font-size: clamp(18px, 3vw, 24px) !important;
}
.paragraph.display,
p.display,
.display.radio-input,
label.display,
li.display,
dl.display {
  text-wrap: balance;
  text-wrap: pretty;
  font-size: clamp(30px, 3vw, 40px) !important;
  max-width: 40ch;
}

p.lead, .lead.radio-input, label.lead,
.collection--blogpost .post-body > p:first-of-type,
.collection--blogpost .post-body > .radio-input:first-of-type,
.collection--blogpost .post-body > label:first-of-type {
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.15;
  font-weight: bold;
}

li {
  padding: 0;
}

.secondary-text {
  line-height: 1.2;
  color: var(--secondary-color);
}

center,
.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

strong, table thead,
table tfoot,
.strong,
b,
dt {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: pretty;
}

h1,
.h1 {
  font-size: clamp(45px, 6vw, 75px);
  padding-bottom: clamp(45px, 6vw, 75px);
  line-height: 1;
  font-weight: bold;
  font-style: normal;
  text-align: left;
  text-decoration: none;
  text-transform: none;
}
h1.display,
.h1.display {
  font-size: clamp(50px, 25cqw, 200px);
  padding-bottom: 0;
  margin-left: -4px;
  color: var(--cyan);
}
@media (min-width: 700px) {
  h1.display,
  .h1.display {
    margin-left: -10px;
  }
}
@media (min-width: 1100px) {
  h1.display,
  .h1.display {
    margin-left: -15px;
  }
}
h1.reduced-letter-spacing,
.h1.reduced-letter-spacing {
  letter-spacing: -5px;
}
h1.page-title,
.h1.page-title {
  font-size: clamp(66px, 9vw + 1rem, 120px);
  padding-top: clamp(90px, 12vw, 150px);
  padding-bottom: clamp(15px, 4vw, 45px);
}
h1.small-title,
.h1.small-title {
  font-size: clamp(26px, 6.8vw, 43px);
  margin-top: calc(var(--pad) * 6) !important;
  padding: 0 0 var(--pad);
  text-align: center;
}

h2,
.h2 {
  font-size: clamp(27px, 6.4vw, 40px);
  padding-top: clamp(54px, 7vw, 80px);
  padding-bottom: clamp(27px, 4vw, 40px);
  line-height: 1.15;
  font-weight: bold;
  font-style: normal;
  text-align: center;
  text-decoration: none;
  text-transform: none;
}
h2.loop-header,
.h2.loop-header {
  position: sticky;
  display: block;
  top: 0;
  width: calc(100% + var(--pad) * 2);
  font-size: clamp(30px, 8vw, 50px);
  padding: 120px 15px 15px;
  margin: 0 0 0 calc(-1 * var(--pad));
  line-height: 0.8;
  text-align: left;
  backdrop-filter: blur(20px);
}
@media (min-width: 700px) {
  h2.loop-header,
  .h2.loop-header {
    top: 135px;
    width: 100%;
    padding: 0;
    margin: 0;
    align-self: start;
    backdrop-filter: unset;
  }
}

h3, .h3,
h4, .h4,
h5, .h5 {
  font-size: clamp(24px, 5.6vw, 35px);
  padding-top: clamp(22px, 4.8vw, 30px);
  padding-bottom: clamp(15px, 3vw, 20px);
  line-height: 1.25;
  font-weight: bold;
  text-align: left;
  text-decoration: none;
  text-transform: none;
}

h3, .h3,
h5, .h5 {
  font-style: normal;
}

h4, .h4 {
  font-style: italic;
}

h2 + h3 {
  padding-top: 0 !important;
}

h3 + h4 {
  margin: 0;
  padding-top: 0 !important;
}

header aside.published-date {
  display: inline-block;
  width: 100%;
  text-align: left;
  padding-top: clamp(90px, 10vw + 10px, 150px);
  padding-bottom: clamp(15px, 3vw, 45px);
}

time.published-datetime,
p.secondary-title,
.secondary-title.radio-input,
label.secondary-title {
  font-size: clamp(26px, 6.4vw, 42px);
  display: block;
  line-height: 1;
  color: var(--secondary-color);
  font-weight: bold;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
}

ul,
ol {
  padding: 0 clamp(30px, 3vw, 40px) clamp(22px, 3vw, 32px);
}

a {
  cursor: pointer;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-skip-ink: auto;
}
a:link, a:visited {
  color: var(--color);
  text-decoration: underline;
}
a:hover {
  color: var(--brand);
  text-decoration: underline;
}
a:focus {
  color: var(--color--inverse);
  background: var(--brand);
  outline: 3px solid var(--brand);
  outline-offset: 0px;
  text-decoration: none;
}
a:focus:hover {
  outline-offset: 3px;
}
a:active {
  text-decoration: none !important;
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  background: var(--brand);
  color: var(--background);
}
a:active svg {
  color: var(--background) !important;
  fill: var(--button-activeColor);
}
a.link-secondary:link, a.link-secondary:visited, a.post-published-date:link, a.post-published-date:visited {
  color: var(--secondary-color);
  text-decoration: none;
}
a.link-secondary:hover, a.post-published-date:hover {
  color: var(--brand);
  text-decoration: underline;
}
a.link-secondary:hover:focus, a.link-secondary:focus, a.post-published-date:hover:focus, a.post-published-date:focus {
  text-decoration: underline;
  outline: 3px solid var(--brand);
  color: light-dark(var(--white), var(--black));
  background: var(--brand);
}
a.link-secondary:hover:focus, a.post-published-date:hover:focus {
  outline-offset: 3px;
}
a.link-secondary:active, a.post-published-date:active {
  text-decoration: none !important;
  background: var(--brand);
  color: var(--background);
}
a.no-underline:link, a.no-underline:visited {
  text-decoration: none !important;
}
a.no-underline:hover {
  text-decoration: underline !important;
}
a.no-underline:focus {
  color: light-dark(var(--white), var(--black));
  background: var(--brand);
  outline: 2px solid var(--brand);
}
a.no-underline:active {
  text-decoration: none !important;
}
a.dark-link:link, a.dark-link:visited, a.dark-link:hover {
  color: var(--black);
}
a.block-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
a.gallery-link {
  display: inline-block;
}
a.gallery-link:hover h1 {
  text-decoration: underline !important;
  text-decoration-skip-ink: none;
}
a.gallery-link:active h1 {
  text-decoration: none !important;
  color: var(--brand) !important;
}
a.speech-bubble--link--eurovision {
  display: inline-block;
}
a.speech-bubble--link--eurovision:hover, a.speech-bubble--link--eurovision:focus, a.speech-bubble--link--eurovision:active {
  background: none;
  outline: none;
}
a.speech-bubble--link--eurovision:hover * {
  text-decoration: underline;
}
a.speech-bubble--link--eurovision:focus img {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}
a.speech-bubble--link--eurovision:focus *, a.speech-bubble--link--eurovision:active * {
  --speechBubble-background: var(--brand);
  color: var(--background) !important;
  text-decoration: underline;
}
a.speech-bubble--link--eurovision:active * {
  text-decoration: none;
}

sup[role=doc-noteref] {
  font-feature-settings: "ss02", "tnum", "liga", "zero", "kern", "frac";
}
sup[role=doc-noteref] a:link, sup[role=doc-noteref] a:visited {
  text-decoration: none;
}
sup[role=doc-noteref] a:hover {
  text-decoration: underline;
}
sup[role=doc-noteref] a:focus {
  text-decoration: none;
}

div.footnotes {
  padding-top: clamp(45px, 9vw, 120px);
  max-width: 40ch;
}
div.footnotes ul, div.footnotes ol {
  padding-left: calc(var(--pad) * 2);
}
div.footnotes li, div.footnotes p, div.footnotes .radio-input, div.footnotes label {
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.2;
  margin-bottom: var(--pad);
}
div.footnotes a.footnote-backref:link {
  text-decoration: none;
}

kbd {
  display: inline-block;
  padding: 0 5px;
  margin: 0;
  font-size: clamp(21px, 3.8vw, 26px);
  border-radius: 10px;
  color: var(--brand);
  background-color: var(--background);
  border: 1px solid var(--brand);
  box-shadow: 0 0 var(--brand), 0 0px var(--brand), 0 1px var(--brand), 0 2px var(--brand), 0 3px var(--brand), 0 4px var(--brand);
}

code {
  font-size: clamp(21px, 3.8vw, 26px);
  color: light-dark(var(--brand), var(--brand-tone));
  background: var(--secondary-background);
  border-radius: 5px;
  padding: 0 2px;
}

pre {
  display: block;
  position: relative;
  background: var(--secondary-background);
  padding: var(--pad);
  margin-block-end: clamp(22px, 1.6vw, 30px);
  white-space: pre-wrap; /* Since CSS 2.1 */
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
pre * {
  background: none;
}

#author-card {
  grid-area: author;
  display: grid;
  position: relative;
  height: 100%;
  text-align: center;
  grid-gap: var(--pad);
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "card" "icons";
}
@media (min-width: 700px) {
  #author-card {
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr;
    grid-template-areas: "card icons";
  }
}

#author--bio {
  display: grid;
  grid-gap: 0;
  grid-template-rows: auto 1fr;
  grid-template-columns: auto 1fr;
  grid-template-areas: "photo name" "photo url";
}

.author--photo {
  grid-area: photo;
  align-self: flex-start;
  justify-self: center;
}

.author--name {
  grid-area: name;
  padding: 0;
  align-self: flex-end;
  text-align: left;
}

.author--url {
  grid-area: url;
  padding: 0;
  align-self: flex-start;
  text-align: left;
}

.author--icons {
  display: grid;
  grid-area: icons;
  grid-gap: calc(var(--pad) * 2 / 3);
  grid-template-columns: 1fr;
}

blockquote {
  display: inline-block;
}

blockquote :first-child {
  padding-top: 0;
}

.post-body.e-content blockquote {
  display: block;
  position: relative;
  z-index: 3;
  padding: calc(var(--pad) * 1.5);
  margin: 0 auto calc(var(--pad) * 2);
  left: auto;
  right: auto;
  width: auto;
  text-align: left;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  background: var(--secondary-background);
  border-radius: calc(var(--border-radius) * 2);
}
.post-body.e-content blockquote p:first-child, .post-body.e-content blockquote .radio-input:first-child, .post-body.e-content blockquote label:first-child {
  padding-top: 0;
}
.post-body.e-content blockquote p:last-child, .post-body.e-content blockquote .radio-input:last-child, .post-body.e-content blockquote label:last-child {
  padding-bottom: 0;
}
.post-body.e-content blockquote code {
  background: var(--background);
}
.post-body.e-content blockquote kbd {
  background: var(--background);
}
.post-body.e-content blockquote ul {
  padding-left: 33px;
}
.post-body.e-content blockquote ol {
  padding-left: clamp(30px, 4.5vw, 55px);
}
.post-body.e-content blockquote ol:last-child {
  padding-bottom: 0;
}
.post-body.e-content blockquote p ~ ol, .post-body.e-content blockquote .radio-input ~ ol, .post-body.e-content blockquote label ~ ol,
.post-body.e-content blockquote p ~ ul,
.post-body.e-content blockquote .radio-input ~ ul,
.post-body.e-content blockquote label ~ ul {
  margin-top: -22px;
  padding-bottom: 6px;
}

blockquote.quote {
  display: block;
  position: relative;
  padding: 0 0 var(--pad) 0;
  text-align: left;
}
blockquote.quote p:last-child, blockquote.quote .radio-input:last-child, blockquote.quote label:last-child {
  padding-bottom: 0;
}

blockquote.twitter-tweet {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(var(--pad), 3vw, var(--pad) * 2) !important;
}
blockquote.twitter-tweet img {
  width: 100%;
  margin: 0;
  border-radius: var(--border-radius);
}
blockquote.twitter-tweet p:first-child:before, blockquote.twitter-tweet .radio-input:first-child:before, blockquote.twitter-tweet label:first-child:before {
  display: block;
  position: relative;
  width: clamp(60px, 6vw, 70px);
  height: 70px;
  margin-right: var(--pad);
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-label='Twitter' role='img' viewBox='0 0 512 512'%3E%3Cpath fill='%23009fe3' d='m458 140q-23 10-45 12 25-15 34-43-24 14-50 19a79 79 0 00-135 72q-101-7-163-83a80 80 0 0024 106q-17 0-36-10s-3 62 64 79q-19 5-36 1s15 53 74 55q-50 40-117 33a224 224 0 00346-200q23-16 40-41'/%3E%3C/svg%3E");
  float: left;
}

@supports (hanging-punctuation: first) {
  q {
    display: inline-block;
    padding: 0 0 0 calc(var(--pad) * 0.8);
  }
}
q::before {
  content: open-quote;
}
q::after {
  content: close-quote;
}

button,
.button {
  --button-color: var(--white);
  --button-background: var(--brand);
  --button-hoverColor: var(--white);
  --button-hoverBackground: var(--brand-tone);
  --button-activeColor: var(--brand-tint);
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  padding: calc(var(--pad) * 0.5) var(--pad);
  margin: 0;
  color: var(--button-color);
  background: var(--button-background);
  border-radius: var(--border-radius);
  border: 3px solid var(--color);
  box-shadow: var(--shadow-shallow);
  line-height: 1 !important;
  text-align: center;
  text-decoration: none;
  outline-offset: 3px;
}
button:link, button:visited,
.button:link,
.button:visited {
  color: var(--button-color);
  background: var(--button-background);
  text-decoration: none;
}
button:hover,
.button:hover {
  background: var(--button-hoverBackground);
  color: var(--button-hoverColor);
  top: 3px;
  box-shadow: none;
}
button:focus, button:focus-visible,
.button:focus,
.button:focus-visible {
  background: var(--brand);
  outline: 3px solid var(--brand);
  outline-offset: var(--outline-active-offset);
  box-shadow: none;
}
button:hover:focus,
.button:hover:focus {
  background: var(--button-hoverBackground);
  box-shadow: var(--shadow--depth-1);
  outline-offset: var(--outline-active-offset);
}
button:active,
.button:active {
  background: var(--button-hoverBackground);
  color: var(--button-activeColor);
  text-decoration: none !important;
  border-color: var(--button-background);
}
button:disabled, button:disabled:focus, button:disabled:hover, button:disabled:active,
.button:disabled,
.button:disabled:focus,
.button:disabled:hover,
.button:disabled:active {
  background: var(--secondary-background);
  color: var(--secondary-color);
  text-align: center;
  cursor: unset;
  outline: none;
  text-decoration: none !important;
}

.collection--weeknote h1 {
  padding-top: calc(var(--pad) * 4);
}

aside.calendar {
  padding: calc(var(--pad) * 2) 0;
}

.calendar-board {
  display: inline-block;
  background: light-dark(var(--gray-500), var(--gray-600));
  border: 3px solid light-dark(var(--black), var(--gray-800));
  box-shadow: 0 6px light-dark(var(--black), var(--gray-800));
  padding: 0 var(--pad);
  transform: rotateY(0deg) rotateZ(-5deg);
}
.calendar-board::before, .calendar-board::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  top: -50px;
  height: 90px;
  width: 24px;
  background: light-dark(var(--gray-300), var(--gray-400));
  border: 3px solid light-dark(var(--black), var(--gray-800));
  box-shadow: 0 3px light-dark(var(--black), var(--gray-800));
  border-radius: calc(var(--border-radius) * 2);
}
@media (max-width: 700px) {
  .calendar-board::before, .calendar-board::after {
    height: 70px;
    top: -40px;
  }
}
.calendar-board::before {
  left: calc(20% - 12px);
}
.calendar-board::after {
  left: calc(80% - 12px);
}

.calendar-sheet {
  display: grid;
  position: relative;
  align-self: center;
  aspect-ratio: 1;
  z-index: 5;
  top: -15px;
  width: clamp(250px, 20vw + 50px, 350px);
  margin: 0 auto var(--pad);
  text-align: center;
  line-height: 1;
  padding: 0;
  background: var(--white);
  border: 3px solid light-dark(var(--black), var(--gray-900));
  box-shadow: 0 18px light-dark(var(--black), var(--gray-900));
}
.calendar-sheet .calendar-month {
  font-size: clamp(55px, 6vw, 75px);
  font-weight: bold;
  text-transform: uppercase;
  padding: var(--pad) !important;
  border-bottom: 3px solid light-dark(var(--black), var(--gray-900));
  background: var(--red-tone);
  color: var(--white);
  align-self: flex-start;
}
.calendar-sheet .calendar-date {
  font-size: clamp(120px, 10vw, 190px);
  font-weight: bold;
  padding: 0 !important;
  background: var(--white);
  color: var(--black);
  align-self: center;
  line-height: 1 !important;
}
.calendar-sheet .calendar-collection {
  font-size: clamp(30px, 4vw, 36px);
  font-family: "Permanent Marker", "Segoe Print", "Marker Felt", Chilanka, TSCu_Comic, casual, cursive;
  text-transform: uppercase;
  text-align: center;
  padding: var(--pad) !important;
  background: var(--white);
  color: var(--red-tone);
  align-self: flex-end;
}

.calendar-title {
  display: block;
  margin-top: calc(var(--pad) * 4);
  text-align: center;
}

.card {
  background: var(--secondary-background);
  border: var(--border-width) solid var(--color);
  border-radius: calc(var(--border-radius) * 2);
  padding: var(--pad);
}

.chiplet {
  padding: calc(var(--pad) * 0.4) calc(var(--pad) * 0.6);
  border: 2px solid var(--color);
  border-radius: 10px;
  box-shadow: var(--shadow-shallow);
  background: var(--brand);
  font-weight: bold;
  color: var(--white);
}

.chiplet-cyan {
  background: var(--cyan);
  color: var(--white);
}

.chiplet-yellow {
  background: var(--yellow);
  color: var(--black);
}

.chiplet-red {
  background: var(--red);
  color: var(--white);
}

.chiplet-green {
  background: var(--green);
  color: var(--white);
}

dd,
dt {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
  font-style: normal;
}

figure dl {
  padding: var(--pad);
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto;
  column-gap: calc(var(--pad) * 2);
  row-gap: var(--pad);
}
@media (min-width: 700px) {
  figure dl {
    grid-template-rows: 1fr;
    grid-template-columns: auto 1fr;
  }
}

dl#exif h2,
dl#exif div {
  padding: var(--pad) !important;
}

div#esc-entries[data-show=all] article.eurovision {
  display: block;
}
div#esc-entries[data-show=sf1] article.eurovision {
  display: none;
}
div#esc-entries[data-show=sf1] article.eurovision[data-semifinal="1"] {
  display: block;
}
div#esc-entries[data-show=sf2] article.eurovision {
  display: none;
}
div#esc-entries[data-show=sf2] article.eurovision[data-semifinal="2"] {
  display: block;
}
div#esc-entries[data-show=final] article.eurovision[data-final=true] {
  display: block;
}
div#esc-entries[data-show=final] article.eurovision[data-final=false] {
  display: none;
}

article.eurovision {
  margin-bottom: calc(var(--pad) * 2);
}

.speech-bubble--eurovision {
  width: auto;
  display: grid !important;
  padding: var(--pad);
  align-items: center;
  grid-gap: 0 var(--pad);
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "img h3" "img p";
}
.speech-bubble--eurovision :is(p, .radio-input, label, h1, h2, h3, h4, h5, h6) {
  padding: 0 !important;
}
.speech-bubble--eurovision svg {
  grid-area: img;
  padding: calc(var(--pad) * 0.5) 0;
  max-width: 60px;
  max-height: 60px;
  grid-row: 1/3;
}

footer {
  padding-bottom: var(--pad);
}

dl.meta-data {
  grid-area: post-meta;
  display: grid;
  height: 100%;
  grid-gap: var(--pad);
  grid-template-rows: auto auto;
}
@media (min-width: 700px) {
  dl.meta-data {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
dl.meta-data aside {
  padding: var(--pad);
}
dl.meta-data p, dl.meta-data .radio-input, dl.meta-data label, dl.meta-data dl, dl.meta-data dt, dl.meta-data dd {
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.2;
}
dl.meta-data dt, dl.meta-data dd {
  display: block;
  position: relative;
  width: 100%;
}
dl.meta-data dt {
  font-weight: bold;
}
dl.meta-data dd {
  text-transform: capitalize;
}

form *:last-child {
  margin-bottom: 0 !important;
}

search {
  position: -webkit-sticky;
  position: sticky;
  z-index: 100;
  top: 71px;
  padding: calc(var(--pad) * 2) var(--pad) 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
search form {
  box-shadow: var(--shadow-deep);
}
search::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(var(--pad) * -7);
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 71px + var(--pad));
  background: var(--background);
}
@media (min-width: 700px) {
  search {
    max-width: 640px;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
}
@media (min-width: 1100px) {
  search {
    max-width: 900px;
  }
}

fieldset {
  margin-bottom: calc(var(--pad) * 2);
}
fieldset::after {
  content: "";
  clear: both;
  display: table;
}

legend {
  font-size: clamp(22px, 3vw, 30px);
  padding: 0 0 clamp(22px, 3vw, 32px);
  width: 100%;
  padding: 0 0 var(--pad);
  float: left;
  font-weight: bold;
  text-align: center;
}

span.sub-legend {
  display: block;
  text-align: center;
}

legend > span.sub-legend {
  padding-top: 0 !important;
}

label {
  display: block;
  font-weight: 600;
  padding-bottom: var(--pad);
}
label.hidden ~ input {
  margin: 0;
}

.label-hint {
  --labelHint-color: var(--gray-600);
  font-size: clamp(22px, 3vw, 30px);
  padding: 0 0 clamp(22px, 3vw, 32px);
  color: var(--labelHint-color);
  padding-bottom: 0;
  display: block;
}

.gallery {
  display: grid;
  padding: 0 var(--pad);
  margin: calc(var(--pad) * 3) 0;
  gap: calc(var(--pad) * 2) var(--pad);
}
.gallery li {
  display: grid;
}
.gallery.gallery-tilt li {
  transform: rotate(-1deg);
}
.gallery.gallery-tilt li:nth-of-type(2n) {
  transform: rotate(2deg);
}
.gallery.gallery-tilt li:nth-of-type(3n) {
  transform: rotate(1deg);
}
.gallery.gallery-tilt li:nth-of-type(4n) {
  transform: rotate(-2deg);
}
.gallery a {
  width: 100%;
  height: 100%;
}
@media (min-width: 700px) {
  .gallery {
    padding: 0 calc(var(--pad) * 6);
    gap: calc(var(--pad) * 2);
  }
  .gallery.gallery-2, .gallery.gallery-3, .gallery.gallery-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .gallery {
    gap: calc(var(--pad) * 3);
  }
  .gallery.gallery-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery.gallery-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery.gallery-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

hr {
  border-radius: var(--border-radius);
  border: 1px solid var(--secondary-borderColor);
}

hr + p, hr + .radio-input, hr + label {
  padding-top: calc(var(--pad) * 2);
}

span.interaction-icon {
  display: inline-block;
  position: relative;
  content: "";
  height: 10px;
  width: 10px;
  margin-right: 7px;
  padding: 0;
  background: var(--color);
}
@media (min-width: 700px) {
  span.interaction-icon {
    height: 15px;
    width: 15px;
  }
}
span.interaction-icon.interaction-icon--large {
  height: 30px;
  width: 30px;
  padding: 0;
  margin: 0;
}
span.interaction-icon.like, span.interaction-icon.likes, span.interaction-icon.like-of {
  top: 1px;
  aspect-ratio: 1.162;
  clip-path: shape(from 92.51% 8.71%, curve to 56.27% 8.71% with 82.52% -2.9%/66.26% -2.9%, line to 50% 16%, line to 43.73% 8.71%, curve to 7.49% 8.71% with 33.74% -2.9%/17.48% -2.9%, curve to 7.49% 50.82% with -2.5% 20.32%/-2.5% 39.22%, line to 49.8% 100%, line to 49.99% 99.78%, line to 50.17% 100%, line to 92.49% 50.82%, curve to 92.51% 8.71% with 102.5% 39.2%/102.5% 20.32%, close);
}
span.interaction-icon.repost, span.interaction-icon.reposts, span.interaction-icon.repost-of {
  top: 2px;
  aspect-ratio: 0.895;
  clip-path: shape(from 2.28% 16.17%, curve to 2.04% 16.4% with 2.2% 16.24%/2.12% 16.32%, curve to 0.75% 18.11% with 1.5% 16.89%/1.06% 17.48%, curve to 0.68% 18.29% with 0.72% 18.17%/0.71% 18.23%, curve to 0.68% 22.73% with 0.01% 19.71%/0.01% 21.31%, curve to 0.75% 22.91% with 0.71% 22.79%/0.72% 22.85%, curve to 2.04% 24.61% with 1.06% 23.54%/1.5% 24.12%, curve to 2.29% 24.85% with 2.12% 24.7%/2.2% 24.78%, curve to 2.54% 25.09% with 2.38% 24.93%/2.45% 25.02%, line to 21.42% 39.57%, curve to 25.81% 41.03% with 22.64% 40.51%/24.2% 41.03%, curve to 32.55% 34.99% with 29.5% 41.03%/32.55% 38.3%, curve to 30.2% 30.42% with 32.55% 33.23%/31.69% 31.56%, line to 25.15% 26.54%, line to 77.07% 26.54%, curve to 86.51% 34.99% with 82.25% 26.55%/86.51% 30.36%, line to 86.51% 49.47%, curve to 93.26% 55.51% with 86.51% 52.78%/89.55% 55.51%, curve to 100% 49.47% with 96.96% 55.51%/100% 52.78%, line to 100% 34.99%, curve to 77.07% 14.48% with 99.98% 23.74%/89.64% 14.49%, line to 25.15% 14.48%, line to 30.2% 10.61%, curve to 32.55% 6.03% with 31.69% 9.46%/32.55% 7.79%, curve to 25.81% 0% with 32.55% 2.72%/29.5% 0%, curve to 21.42% 1.45% with 24.2% 0%/22.64% 0.51%, line to 2.53% 15.93%, curve to 2.28% 16.17% with 2.44% 16%/2.37% 16.09%, close, move to 67.46% 93.5%, curve to 67.45% 93.97% with 67.45% 93.66%/67.45% 93.81%, curve to 74.19% 100% with 67.45% 97.28%/70.49% 100%, curve to 78.58% 98.54% with 75.8% 100%/77.36% 99.48%, line to 97.46% 84.07%, curve to 97.72% 83.82% with 97.56% 83.99%/97.63% 83.9%, curve to 97.96% 83.6% with 97.8% 83.75%/97.88% 83.67%, curve to 99.25% 81.88% with 98.5% 83.1%/98.94% 82.52%, curve to 99.32% 81.7% with 99.28% 81.83%/99.29% 81.76%, curve to 99.32% 77.27% with 99.99% 80.29%/99.99% 78.68%, curve to 99.25% 77.09% with 99.29% 77.21%/99.28% 77.14%, curve to 97.96% 75.38% with 98.94% 76.46%/98.5% 75.88%, curve to 97.71% 75.14% with 97.88% 75.3%/97.8% 75.22%, curve to 97.46% 74.91% with 97.62% 75.06%/97.55% 74.98%, line to 78.58% 60.43%, curve to 74.19% 58.97% with 77.36% 59.49%/75.8% 58.97%, curve to 67.45% 65% with 70.49% 58.97%/67.45% 61.69%, curve to 69.8% 69.58% with 67.45% 66.76%/68.31% 68.44%, line to 74.85% 73.45%, line to 22.93% 73.45%, curve to 13.49% 65% with 17.75% 73.45%/13.49% 69.64%, line to 13.49% 50.52%, curve to 6.74% 44.49% with 13.49% 47.21%/10.45% 44.49%, curve to 0% 50.52% with 3.04% 44.49%/0% 47.21%, line to 0% 65%, curve to 22.93% 85.52% with 0.02% 76.25%/10.36% 85.5%, line to 74.85% 85.52%, line to 69.8% 89.39%, curve to 67.46% 93.5% with 68.44% 90.43%/67.6% 91.91%, close);
}
span.interaction-icon.link, span.interaction-icon.links, span.interaction-icon.mention-of {
  aspect-ratio: 1;
  clip-path: shape(from 39.42% 81.75%, line to 56.61% 64.55%, curve to 56.61% 48.68% with 61% 60.17%/61% 53.06%, curve to 56.61% 38.09% with 53.69% 45.75%/53.69% 41.02%, curve to 67.2% 38.09% with 59.54% 35.17%/64.27% 35.17%, curve to 67.2% 75.13% with 77.42% 48.32%/77.42% 64.91%, line to 50% 92.33%, curve to 12.96% 92.33% with 39.77% 102.56%/23.19% 102.56%, line to 7.67% 87.04%, curve to 7.67% 50% with -2.56% 76.81%/-2.56% 60.23%, curve to 18.25% 50% with 10.59% 47.08%/15.33% 47.08%, curve to 18.25% 60.58% with 21.18% 52.92%/21.18% 57.66%, curve to 18.25% 76.46% with 13.87% 64.97%/13.87% 72.07%, line to 23.54% 81.75%, curve to 39.42% 81.75% with 27.93% 86.13%/35.03% 86.13%, close, move to 92.33% 12.96%, line to 87.04% 7.67%, curve to 50% 7.67% with 76.81% -2.56%/60.23% -2.56%, line to 32.8% 24.87%, curve to 32.8% 61.91% with 22.58% 35.09%/22.58% 51.68%, curve to 43.39% 61.91% with 35.73% 64.83%/40.46% 64.83%, curve to 43.39% 51.32% with 46.31% 58.98%/46.31% 54.25%, curve to 43.39% 35.45% with 39% 46.94%/39% 39.83%, line to 60.58% 18.25%, curve to 76.46% 18.25% with 64.97% 13.87%/72.07% 13.87%, line to 81.75% 23.54%, curve to 81.75% 39.42% with 86.13% 27.93%/86.13% 35.03%, curve to 81.75% 50% with 78.82% 42.34%/78.82% 47.08%, curve to 92.33% 50% with 84.67% 52.92%/89.41% 52.92%, curve to 92.33% 12.96% with 102.56% 39.77%/102.56% 23.19%, close);
}
span.interaction-icon.bookmark, span.interaction-icon.bookmarks, span.interaction-icon.bookmark-of {
  aspect-ratio: 0.692;
  clip-path: shape(from 50% 75.59%, line to 9.09% 99.09%, curve to 0.02% 96.15% with 5.47% 101.17%/0.02% 99.36%, line to 0% 96.15%, line to 0% 13.79%, curve to 19.92% 0% with 0% 6.2%/8.95% 0%, line to 80.08% 0%, curve to 100% 13.79% with 91.05% 0%/100% 6.2%, line to 100% 96.15%, curve to 90.52% 98.87% with 100% 99.28%/94.57% 101.42%, close);
}
span.interaction-icon.reply, span.interaction-icon.replies, span.interaction-icon.in-reply-to {
  top: 2px;
  aspect-ratio: 0.976;
  clip-path: shape(from 51.28% 80.36%, line to 76.55% 80.36%, curve to 92.98% 74.07% with 82.67% 80.48%/88.58% 78.21%, curve to 100% 58.27% with 97.37% 69.92%/99.9% 64.23%, line to 100% 22%, curve to 76.55% 0% with 99.74% 9.6%/89.25% -0.24%, line to 23.45% 0%, curve to 7.02% 6.3% with 17.33% -0.11%/11.42% 2.15%, curve to 0% 22.1% with 2.63% 10.44%/0.1% 16.13%, line to 0% 58.37%, curve to 7.03% 74.16% with 0.1% 64.33%/2.63% 70.02%, curve to 23.45% 80.46% with 11.43% 78.3%/17.34% 80.57%, move to 23.14% 79.49%, line to 23.14% 97.73%, curve to 24.57% 99.8% with 23.17% 98.63%/23.73% 99.44%, curve to 27.11% 99.44% with 25.42% 100.16%/26.41% 100.02%, line to 51.52% 79.49%);
}

span.arrow {
  font-weight: 900;
}

.data-up span.arrow {
  color: light-dark(var(--green), var(--green-tint));
}

.data-down span.arrow {
  color: light-dark(var(--red-tone), var(--red));
}

a.social-icon {
  display: grid;
  align-items: center;
  justify-items: flex-start;
  grid-gap: var(--pad);
  grid-template-columns: 20px 1fr;
  position: relative;
}
a.social-icon svg.social-icon {
  display: block;
  max-height: 20px;
  max-width: 20px;
  width: 100%;
  height: 100%;
}
a.social-icon svg.social-icon path {
  fill: var(--gray-600);
}
a.social-icon:hover svg path,
a.social-icon:hover p,
a.social-icon:hover .radio-input,
a.social-icon:hover label {
  fill: var(--brand);
  background: var(--background);
  color: var(--brand);
}
a.social-icon:focus svg path,
a.social-icon:focus p,
a.social-icon:focus .radio-input,
a.social-icon:focus label {
  fill: light-dark(var(--white), var(--black));
  background: var(--brand);
  color: light-dark(var(--white), var(--black));
}
a.social-icon:active svg path,
a.social-icon:active p,
a.social-icon:active .radio-input,
a.social-icon:active label {
  fill: light-dark(var(--white), var(--black));
  background: var(--brand);
  color: light-dark(var(--white), var(--black));
}

p > img, .radio-input > img, label > img,
figure,
.composite-image {
  display: block;
  position: relative;
  box-sizing: border-box;
  --width: 100%;
  width: var(--w);
  max-width: 100%;
  margin: calc(var(--pad) * 2) 0;
  padding: 0;
}
@media (min-width: 700px) {
  p > img, .radio-input > img, label > img,
  figure,
  .composite-image {
    --w: 720px;
    --container: 610px;
    --m: calc(calc(var(--w) - var(--container)) / 2 * -1);
    max-width: unset;
    margin: calc(var(--pad) * 3) var(--m) calc(var(--pad) * 3);
  }
}
@media (min-width: 1100px) {
  p > img, .radio-input > img, label > img,
  figure,
  .composite-image {
    --w: 1100px;
    --container: 870px;
  }
}

img.hero {
  border: none;
  border-radius: unset;
}

p > img, .radio-input > img, label > img,
figure img,
figure picture {
  z-index: 100;
  border: 3px solid var(--color);
  border-radius: calc(var(--border-radius) * 2);
  padding: 0;
  overflow: hidden;
}
p > img.no-styles, .radio-input > img.no-styles, label > img.no-styles,
figure img.no-styles,
figure picture.no-styles {
  background: none;
  border: none;
}
p > img.fit-to-container, .radio-input > img.fit-to-container, label > img.fit-to-container,
figure img.fit-to-container,
figure picture.fit-to-container {
  width: 100%;
  margin: 0;
}

picture img {
  border: none;
}

figure:has(figcaption) img:first-child,
figure:has(figcaption) picture:first-child {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
figure:has(figcaption) img:nth-child(n+2),
figure:has(figcaption) picture:nth-child(n+2) {
  border-radius: 0;
  border-top: 0;
}
figure:has(figcaption) img,
figure:has(figcaption) picture {
  border-bottom: 0;
}

p + figure, .radio-input + figure, label + figure {
  margin-top: var(--pad);
}

figure img,
.composite-image img {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 0;
}
figure img,
figure picture source,
figure picture img,
.composite-image img,
.composite-image picture source,
.composite-image picture img {
  border-radius: calc(var(--border-radius) * 2);
}

figcaption {
  display: block;
  position: relative;
  width: 100%;
  z-index: 999;
  padding: var(--pad);
  margin: 0 0 var(--pad) 0;
  line-height: 1.25;
  text-align: left;
  font-size: clamp(18px, 3vw, 24px);
  background: var(--secondary-background);
  color: var(--color);
  border: 3px solid var(--color);
  border-bottom-left-radius: calc(var(--border-radius) * 2);
  border-bottom-right-radius: calc(var(--border-radius) * 2);
}
figcaption p, figcaption .radio-input, figcaption label {
  padding: 0 0 var(--pad) 0;
  line-height: 1.25;
  text-align: left;
  font-size: clamp(18px, 3vw, 24px);
}
figcaption p::last-child, figcaption .radio-input::last-child, figcaption label::last-child {
  padding-bottom: 0;
}

picture .background {
  z-index: 1;
  aspect-ratio: 2/1;
}
picture .background.cover {
  object-fit: cover;
}
picture .background.fill {
  object-fit: fill;
}

div.overlay {
  display: grid;
  position: absolute;
  justify-items: center;
  align-items: center;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--border-radius) * 2);
  background: none;
}
div.overlay.overlay--eurovision {
  padding: var(--pad);
  border-radius: calc(var(--border-radius) * 2) calc(var(--border-radius) * 2) 0 0;
}

.overlay-5 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.overlay-10 {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.overlay-20 {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.overlay-50 {
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
}

img.overlay {
  all: unset;
  position: relative;
  display: block;
  width: clamp(200px, 60%, 600px);
}

img.app-icon {
  grid-area: icon;
  margin: 0;
  max-height: 57px;
  max-width: 57px;
  border-radius: var(--border-radius);
  border: 3px solid var(--color);
}
@media (min-width: 700px) {
  img.app-icon.large {
    max-height: 104px;
    max-width: 104px;
  }
}

img.image--16-9 {
  aspect-ratio: 16/9;
  object-fit: cover;
}

input[type=text],
input[type=url],
input[type=password],
input[type=email],
input[type=search] {
  --placeholder-color: var(--secondary-color);
  --placeholder-hover: var(--brand);
  --placeholder-focus: light-dark(var(--gray-300), var(--gray-800));
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  line-height: 1;
  padding: var(--pad);
  margin-bottom: calc(var(--pad) * 2);
  background: var(--background);
  color: var(--color);
  border: var(--border-width) solid var(--color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-shallow);
  outline-offset: 3px;
}
input[type=text]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder {
  color: var(--placeholder-color);
}
input[type=text]:hover,
input[type=url]:hover,
input[type=password]:hover,
input[type=email]:hover,
input[type=search]:hover {
  transition: color 0.3s;
}
input[type=text]:hover::placeholder,
input[type=url]:hover::placeholder,
input[type=password]:hover::placeholder,
input[type=email]:hover::placeholder,
input[type=search]:hover::placeholder {
  color: var(--placeholder-hover);
}
input[type=text]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=search]:focus {
  caret-color: var(--brand);
  outline: none;
  top: 3px;
  box-shadow: none;
}
input[type=text]:focus::placeholder,
input[type=url]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=search]:focus::placeholder {
  color: var(--placeholder-focus);
}
input[type=text]:invalid,
input[type=url]:invalid,
input[type=password]:invalid,
input[type=email]:invalid,
input[type=search]:invalid {
  caret-color: var(--red);
}
input[type=text]:invalid:not(:focus),
input[type=url]:invalid:not(:focus),
input[type=password]:invalid:not(:focus),
input[type=email]:invalid:not(:focus),
input[type=search]:invalid:not(:focus) {
  outline: 3px solid var(--red);
  color: var(--red);
}

.kanban {
  display: grid;
}
@media (min-width: 700px) {
  .kanban {
    grid-auto-flow: column;
  }
  .kanban.col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .kanban.col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.kanban ul {
  padding: 0;
}
.kanban ul:nth-of-type(n+2) {
  border-top: 1px solid var(--secondary-borderColor);
}
@media (min-width: 700px) {
  .kanban ul:nth-of-type(n+2) {
    border-top: none;
    border-left: 1px solid var(--secondary-borderColor);
  }
}
.kanban h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-family: "Permanent Marker", "Segoe Print", "Marker Felt", Chilanka, TSCu_Comic, casual, cursive;
  padding: var(--pad) calc(var(--pad) * 0.5) !important;
  text-align: center;
  border-bottom: 1px solid var(--secondary-borderColor);
}
.kanban li {
  list-style: none;
  font-size: clamp(18px, 3vw, 24px);
  margin: var(--pad);
}
.kanban li:before {
  display: none;
}

.key-value--heading {
  font-size: clamp(27px, 6.4vw, 40px);
  text-align: left;
  padding: calc(var(--pad) * 4) 0 var(--pad) !important;
}
.key-value--heading.key-value--heading--large {
  font-size: clamp(45px, 6vw, 75px);
  padding: calc(var(--pad) * 8) 0 0 !important;
}
.key-value--heading.key-value--heading--small {
  font-size: clamp(24px, 5.6vw, 35px);
  padding: 0 0 var(--pad) !important;
}

.key-value {
  padding: 0;
  margin: 0;
}
.key-value.key-value--app-list {
  max-width: 600px;
  margin: 0 auto calc(var(--pad) * 3) auto;
  border: 3px solid var(--color);
  background: var(--secondary-background);
  border-radius: calc(var(--border-radius) * 2);
  box-shadow: var(--shadow-deep);
}

.key-value--item {
  display: grid;
  padding: var(--pad) 0;
  border-top: 3px solid;
  border-color: var(--color);
  gap: calc(var(--pad) * 0.5) var(--pad);
}
.key-value--item.key-value--no-border {
  border: none;
  padding: 0 0 calc(var(--pad) * 2);
}
.key-value--item.key-value--with-description {
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto;
}
.key-value--item.key-value--with-value {
  grid-template-columns: 1fr auto !important;
  grid-template-rows: auto;
}
.key-value--item.key-value--with-value.key-value--with-value--large {
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto;
}
.key-value--item.key-value--with-description.key-value--with-value {
  grid-template-columns: 1fr auto !important;
  grid-template-rows: auto;
}
.key-value--item.key-value--with-description.key-value--with-value.key-value--with-value--large {
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto auto;
}
.key-value--item.key-value--goal {
  border: 3px solid var(--color);
  grid-template-columns: 1fr auto !important;
  grid-template-rows: auto auto auto;
}
.key-value--item.key-value--item--app-list {
  padding: var(--pad);
  grid-template-columns: 57px 1fr 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  border: 0;
}
.key-value--item.key-value--item--app-list .span--two-columns {
  grid-column: 1/3;
}
.key-value--item.key-value--item--app-list:has(.span--two-columns) {
  border-top: 3px solid var(--color);
  font-weight: 600;
}
.key-value--item.key-value--item--app-sheet {
  padding: 0;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(3, auto) repeat(2, 1fr);
  align-items: center;
  border: 0;
  grid-gap: 0;
}
.key-value--item.key-value--item--app-sheet .key-value--value--app-icon {
  grid-row: 1/4;
}
.key-value--item.key-value--item--app-sheet .key-value--value:nth-child(2), .key-value--item.key-value--item--app-sheet .key-value--key:nth-child(2) {
  padding: var(--pad);
}
.key-value--item.key-value--item--app-sheet .key-value--value:nth-child(4), .key-value--item.key-value--item--app-sheet .key-value--key:nth-child(4) {
  padding-top: var(--pad);
  font-size: clamp(24px, 5.6vw, 35px);
}
.key-value--item.key-value--item--app-sheet .key-value--value:nth-child(8), .key-value--item.key-value--item--app-sheet .key-value--key:nth-child(8) {
  padding-bottom: var(--pad);
}
.key-value--item.key-value--item--app-sheet .key-value--value:nth-child(n+9), .key-value--item.key-value--item--app-sheet .key-value--key:nth-child(n+9) {
  padding: var(--pad);
  border-top: 3px solid var(--black);
}
.key-value--item.key-value--search .key-value--key {
  padding: var(--pad) var(--pad) 0;
}
.key-value--item.key-value--search .key-value--description {
  padding: 0 var(--pad) var(--pad);
}
.key-value--item.key-value--search .key-value--label {
  padding: var(--pad);
}
.key-value--item.key-value--with-image {
  grid-template-rows: auto auto;
  grid-gap: 0;
}
.key-value--item.key-value--with-image .key-value--image {
  margin: auto;
  grid-row: 1/5;
  grid-column: 1/2;
}
.key-value--item.key-value--with-image .key-value--label {
  border-top: 3px solid var(--color);
}
.key-value--item.key-value--with-spacing {
  padding: 0;
  border: 0;
  margin-bottom: var(--pad);
}
.key-value--item .full-span {
  grid-column: 1/-1;
}
.key-value--item .full-height {
  grid-row: 1/-1;
}

a.key-value--link {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1; /* Make sure the link spans all columns */
  align-items: center;
  overflow: hidden;
}
a.key-value--link:link, a.key-value--link:visited {
  text-decoration: none !important;
}
a.key-value--link:link .key-value--key, a.key-value--link:visited .key-value--key {
  color: var(--brand);
  font-weight: bold;
}
a.key-value--link:hover {
  text-decoration: none !important;
}
a.key-value--link:hover .key-value--key {
  text-decoration: underline;
}
a.key-value--link:hover .key-value--description,
a.key-value--link:hover .key-value--label {
  color: var(--color);
}
a.key-value--link:focus * {
  color: var(--color--inverse) !important;
}
a.key-value--link:active, a.key-value--link:active * {
  text-decoration: none;
  color: var(--color--inverse) !important;
}
a.key-value--link.key-value--card-link {
  border: 3px solid var(--color);
  border-radius: calc(var(--border-radius) * 2);
}

.key-value--key {
  font-weight: 900;
}

.key-value--value {
  max-width: 60ch;
}

.key-value--key,
.key-value--value {
  padding: 0;
  text-align: left;
}

.key-value--description:last-child,
.key-value--description *:last-child,
.key-value--label:last-child,
.key-value--label *:last-child {
  padding: 0;
}

.key-value--label {
  border-bottom: 3px solid var(--color);
  font-weight: 600;
  padding: 0 0 calc(var(--pad) * 2);
  border-color: var(--color);
}

.key-value--image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

fieldset.radios {
  padding: 15px 10px 10px;
  margin-bottom: calc(var(--pad) * 2);
}
@media (min-width: 700px) {
  fieldset.radios {
    padding: 20px;
  }
}
fieldset.radios div.radio-input {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 700px) {
  fieldset.radios div.radio-input {
    float: left;
    clear: none;
    width: 50%;
  }
  fieldset.radios div.radio-input:nth-of-type(3), fieldset.radios div.radio-input:nth-of-type(4) {
    margin-bottom: 0px;
  }
}
fieldset.radios::after {
  content: "";
  clear: both;
  display: table;
}

input[type=radio] {
  position: absolute;
  z-index: 1;
  top: -2px;
  left: -2px;
  width: 44px;
  height: 44px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
input[type=radio] ~ label {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0px 20px;
  cursor: pointer;
  touch-action: manipulation;
  font-weight: 600;
}
input[type=radio] ~ label::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--background);
  border: 2px solid var(--color);
  box-shadow: var(--shadow-shallow);
}
input[type=radio] ~ label::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--color);
}
input[type=radio]:focus + label::before {
  border-width: 4px;
  box-shadow: 0 0 0 3px var(--brand);
}
input[type=radio]:hover + label::before {
  box-shadow: 0 0 0 3px var(--brand);
  background: var(--background);
  border-width: 2px;
}
input[type=radio]:checked + label::before {
  box-shadow: none;
}
input[type=radio]:checked + label::after {
  border: 12px solid var(--brand);
}
input[type=radio] ~ .label-hint {
  padding-right: 15px;
  padding-left: 15px;
}

.radio-input {
  display: block;
  position: relative;
  min-height: 40px;
  padding: 0;
  margin-bottom: 30px;
  clear: left;
  padding-left: 40px;
}
.radio-input:last-child, .radio-input:last-of-type {
  margin-bottom: 0;
}

.speech-bubbles--webmentions {
  grid-area: webmentions;
}

.speech-bubbles {
  display: grid;
  grid-gap: 0 var(--pad);
  grid-template-rows: auto auto auto;
}

.speech-bubble {
  position: relative;
  display: inline-block;
  clear: both;
  padding: calc(var(--pad) * 0.5) var(--pad);
  margin-bottom: calc(var(--pad) * 0.5);
  border-radius: 15px;
  color: var(--text-color);
  background: var(--speechBubble-background);
  text-align: left;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.speech-bubble :is(h1, h2, h3, h4, h5, h6) {
  font-size: clamp(32px, 3vw, 40px);
  padding: var(--pad) !important;
  text-align: left;
  font-weight: bold;
}
.speech-bubble a:link, .speech-bubble a:visited {
  color: var(--speechBubble-linkColor);
}
.speech-bubble a:hover {
  color: var(--speechBubble-linkColor-hover);
}
.speech-bubble a:focus {
  color: var(--speechBubble-linkColor-focus);
  background: var(--speechBubble-linkBackground);
}
.speech-bubble:last-child {
  margin-bottom: 0;
}
.speech-bubble:last-child:before, .speech-bubble:last-child:after {
  content: "";
  position: absolute;
}
.speech-bubble:before {
  z-index: 2;
  bottom: -2px;
  height: 15px;
  -webkit-transform: translate(0, -2px);
}
.speech-bubble:after {
  z-index: 3;
  bottom: -2px;
  background: var(--background);
  width: 10px;
  height: 20px;
  -webkit-transform: translate(-30px, -2px);
}

a.speech-bubble:focus:hover :is(h1, h2, h3, h4, h5, h6) {
  color: var(--speechBubble-linkColor-focus);
}
a.speech-bubble:focus, a.speech-bubble:hover {
  outline-width: 3px !important;
}
a.speech-bubble:last-child {
  margin-bottom: 0;
}
a.speech-bubble:last-child:before, a.speech-bubble:last-child:after {
  content: "";
  position: absolute;
}
a.speech-bubble img.speech-bubble--image {
  border-top-right-radius: calc(var(--border-radius));
  border-top-left-radius: calc(var(--border-radius));
}
a.speech-bubble:has(img.speech-bubble--image) {
  padding: 0;
}
a.speech-bubble:has(img.speech-bubble--image) :is(h1, h2, h3, h4, h5, h6) {
  padding: calc(var(--pad) * 0.5) var(--pad) calc(var(--pad) * 0.5) var(--pad);
}
a.speech-bubble:has(:not(img.speech-bubble--image)) {
  padding: 0;
}

img.speech-bubble {
  padding: 0;
  border-radius: calc(var(--border-radius) * 2);
}

.speech-bubbles--from-them {
  grid-template-columns: auto 3fr;
  grid-template-areas: ". author" "photo content";
}
.speech-bubbles--from-them .speech-bubbles--author {
  text-align: left;
}
.speech-bubbles--from-them.speech-bubbles--no-photo {
  grid-template-columns: auto;
  grid-template-areas: "date" "author" "content";
}
.speech-bubbles--from-them.speech-bubbles--with-webmentions {
  grid-template-columns: auto 3fr;
  grid-template-areas: ". author" "photo content" ". webmentions";
}
.speech-bubbles--from-them.speech-bubbles--with-webmentions.speech-bubbles--no-photo {
  grid-template-columns: auto;
  grid-template-areas: "author" "content" "webmentions";
}
@media (min-width: 700px) {
  .speech-bubbles--from-them {
    grid-template-columns: auto 3fr 1fr;
    grid-template-areas: "date date date" ". author ." "photo content .";
  }
  .speech-bubbles--from-them.speech-bubbles--no-photo {
    grid-template-columns: 3fr 1fr;
    grid-template-areas: "author ." "content .";
  }
  .speech-bubbles--from-them.speech-bubbles--with-webmentions {
    grid-template-columns: auto 3fr 1fr;
    grid-template-areas: "date date date" ". author ." "photo content ." ". webmentions .";
  }
  .speech-bubbles--from-them.speech-bubbles--with-webmentions.speech-bubbles--no-photo {
    grid-template-columns: 3fr 1fr;
    grid-template-areas: "author ." "content ." "webmentions .";
  }
}

.speech-bubbles--from-me {
  grid-template-columns: 3fr auto;
  grid-template-areas: "author ." "content photo";
}
.speech-bubbles--from-me.speech-bubbles--no-photo {
  grid-template-columns: auto;
  grid-template-areas: "author" "content";
}
.speech-bubbles--from-me.speech-bubbles--with-webmentions {
  grid-template-columns: 3fr auto;
  grid-template-areas: "author ." "content photo" "webmentions .";
}
.speech-bubbles--from-me.speech-bubbles--with-webmentions.speech-bubbles--no-photo {
  grid-template-columns: auto;
  grid-template-areas: "author" "content" "webmentions";
}
@media (min-width: 700px) {
  .speech-bubbles--from-me {
    grid-template-columns: 1fr 3fr auto;
    grid-template-areas: "date date date" ". author ." ". content photo";
  }
  .speech-bubbles--from-me.speech-bubbles--no-photo {
    grid-template-columns: 1fr 3fr;
    grid-template-areas: ". author" ". content";
  }
  .speech-bubbles--from-me.speech-bubbles--with-webmentions {
    grid-template-columns: 1fr 3fr auto;
    grid-template-areas: "date date date" ". author ." ". content photo" ". webmentions .";
  }
}

.speech-bubbles--from-them .speech-bubble {
  --text-color: var(--black);
  --speechBubble-background: light-dark(var(--gray-100), var(--gray-300));
  --speechBubble-linkColor: var(--black);
  --speechBubble-linkColor-hover: var(--brand);
  --speechBubble-linkColor-focus: var(--white);
  --speechBubble-linkBackground: light-dark(var(--brand), var(--brand-tone));
  float: left;
}
.speech-bubbles--from-them .speech-bubble:before {
  left: -7px;
  border-bottom-right-radius: 16px 14px;
  border-left: 20px solid var(--speechBubble-background);
}
.speech-bubbles--from-them .speech-bubble:after {
  left: 20px;
  border-bottom-right-radius: 10px;
}

.speech-bubbles--from-me .speech-bubble {
  --text-color: var(--white);
  --speechBubble-background: light-dark(var(--brand), var(--brand-tone));
  --speechBubble-linkColor: var(--white);
  --speechBubble-linkColor-hover: var(--white);
  --speechBubble-linkColor-focus: light-dark(var(--brand), var(--brand-tone));
  --speechBubble-linkBackground: var(--white);
  float: right;
}
.speech-bubbles--from-me .speech-bubble:before {
  right: -7px;
  border-bottom-left-radius: 16px 14px;
  border-right: 20px solid var(--speechBubble-background);
}
.speech-bubbles--from-me .speech-bubble:after {
  right: -40px;
  border-bottom-left-radius: 10px;
}

.speech-bubbles--author {
  grid-area: author;
  padding: calc(var(--pad) * 2) var(--pad) calc(var(--pad) * 0.5) var(--pad);
}

.speech-bubbles--from-me .speech-bubbles--author {
  text-align: right;
}

.speech-bubbles--content {
  grid-area: content;
}

.speech-bubbles--speaker {
  align-content: flex-end;
  grid-area: photo;
}
.speech-bubbles--speaker .u-photo {
  z-index: 100;
  position: sticky;
  top: auto;
  bottom: var(--pad);
}

.u-photo {
  width: 50px;
  height: 50px;
  background: var(--gray-300);
  border-radius: 100%;
}
@media (min-width: 768px) {
  .u-photo.large {
    width: 100px;
    height: 100px;
  }
}

.speech-bubbles--from-me .u-photo {
  padding-top: 5px;
}

ol .speech-bubble, ul .speech-bubble {
  padding-left: calc(var(--pad) * 3);
}
@media (min-width: 700px) {
  ol .speech-bubble, ul .speech-bubble {
    padding-left: calc(var(--pad) * 4);
  }
}

.collection--list.content,
.collection--list.post-title {
  display: grid;
  position: relative;
  width: 100%;
  max-width: 450px;
  padding: 26px;
  background: #fff linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 0) 0 26px/100% 26px;
  border: 3px solid var(--color);
}
.collection--list.content h1, .collection--list.content li,
.collection--list.post-title h1,
.collection--list.post-title li {
  font-size: 26px !important;
  padding-bottom: 26px !important;
}
@media (min-width: 700px) {
  .collection--list.content,
  .collection--list.post-title {
    max-width: 500px;
    padding: 32px;
    background: #fff linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 0) 0 32px/100% 32px;
  }
  .collection--list.content h1, .collection--list.content li,
  .collection--list.post-title h1,
  .collection--list.post-title li {
    font-size: 32px !important;
    padding-bottom: 32px !important;
  }
}
@media (min-width: 1100px) {
  .collection--list.content,
  .collection--list.post-title {
    max-width: 650px;
    padding: 44px;
    background: #fff linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 0) 0 44px/100% 44px;
  }
  .collection--list.content h1, .collection--list.content li,
  .collection--list.post-title h1,
  .collection--list.post-title li {
    font-size: 44px !important;
    padding-bottom: 44px !important;
  }
}
.collection--list.content .list-header,
.collection--list.post-title .list-header {
  width: 100%;
}
.collection--list.content .list-title,
.collection--list.post-title .list-title {
  color: var(--red-tone);
  line-height: 1;
}
.collection--list.content .list-body,
.collection--list.post-title .list-body {
  padding: 0;
}
.collection--list.content .list-item,
.collection--list.post-title .list-item {
  text-align: left !important;
  color: var(--black);
  line-height: 1;
}
.collection--list.content .list-item:last-child,
.collection--list.post-title .list-item:last-child {
  padding: 0;
}
.collection--list.content .list-title,
.collection--list.content .list-item,
.collection--list.post-title .list-title,
.collection--list.post-title .list-item {
  font-family: "Permanent Marker", "Segoe Print", "Marker Felt", Chilanka, TSCu_Comic, casual, cursive;
}
.collection--list.content ol .list-item,
.collection--list.post-title ol .list-item {
  margin-left: calc(var(--pad) * 3);
}
@media (min-width: 700px) {
  .collection--list.content ol .list-item,
  .collection--list.post-title ol .list-item {
    margin-left: calc(var(--pad) * 4);
  }
}
@media (min-width: 1100px) {
  .collection--list.content ol .list-item,
  .collection--list.post-title ol .list-item {
    margin-left: calc(var(--pad) * 5);
  }
}
.collection--list.content .list-item--done,
.collection--list.post-title .list-item--done {
  text-decoration: line-through;
  text-decoration-style: wavy;
  text-decoration-thickness: 5px;
  text-decoration-color: var(--red-tone);
}
.collection--list.content .list-item--align-right,
.collection--list.post-title .list-item--align-right {
  text-align: right;
  transform: rotate(-5deg);
}
.collection--list.content .list-item--secondary,
.collection--list.post-title .list-item--secondary {
  color: var(--red-tone);
}

@media (min-width: 700px) {
  .list-title.list {
    margin: calc(var(--pad) * 4) auto;
  }
}

.global-navigation {
  animation: global-navigation ease-out both;
  animation-timeline: scroll(block root);
  animation-range: 0px 200px;
  animation-duration: 1ms;
  display: flex;
  position: --webkit-sticky;
  position: sticky;
  z-index: 1000;
  box-sizing: border-box;
  justify-self: center;
  width: 100%;
  top: var(--pad);
  margin: 0 auto;
  padding: 0 var(--pad);
  max-width: 100%;
}
@media (min-width: 700px) {
  .global-navigation {
    max-width: 640px;
  }
}
@media (min-width: 1100px) {
  .global-navigation {
    max-width: 900px;
  }
}

/* This is the main menu bar */
.navigation {
  animation: navigation ease-in both;
  animation-timeline: scroll(block root);
  animation-range: 0px 50px;
  animation-duration: 1ms;
  display: flex;
  padding: calc(var(--pad) * 0.4) calc(var(--pad) * 0.5) calc(var(--pad) * 0.6) var(--pad);
  margin: 0;
  align-items: center;
  width: 100%;
  gap: var(--pad);
  justify-content: space-between !important;
  background: linear-gradient(to right, var(--background--translucent) 0px, transparent 100%);
  border: 3px solid var(--color);
  border-radius: calc(var(--border-radius) * 2);
  backdrop-filter: blur(500px) saturate(500%);
  box-shadow: var(--shadow-deep);
}

.navigation--wordmark {
  display: block;
  justify-self: start;
  z-index: 1000;
  margin: 0;
  padding: 0;
  font-size: 32px;
  line-height: 32px;
  margin-bottom: -5px;
  border-radius: calc(var(--border-radius) * 1.25);
}

.navigation--wordmark--link {
  position: relative;
  display: inline-block;
  font-size: 32px;
  line-height: 32px;
  font-weight: 900 !important;
}
.navigation--wordmark--link:link, .navigation--wordmark--link:visited {
  text-decoration: none;
}
.navigation--wordmark--link:hover {
  text-decoration: underline;
}
.navigation--wordmark--link:hover:focus {
  text-decoration: underline;
  outline-offset: 3px;
}
.navigation--wordmark--link:focus {
  outline: 3px solid var(--brand);
}

.navigation--links {
  display: flex;
  justify-self: end;
  z-index: 1000;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  grid-column: -2/-1;
}

.navigation--links-item {
  line-height: 32px;
  margin-inline-start: calc(var(--pad) * 0.5);
}
.navigation--links-item:first-of-type {
  margin: 0;
}

.navigation--icon {
  display: grid;
  height: 50px;
  width: 50px;
  padding: 10px;
  margin: 0;
  box-sizing: border-box;
  align-content: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: calc(var(--border-radius) * 1.25);
}
.navigation--icon svg {
  width: 20px;
  transform-origin: center;
  transition: 0.2s all;
}
.navigation--icon svg path {
  fill: var(--button-color);
}
.navigation--icon:hover svg path {
  fill: var(--button-hoverColor);
}
.navigation--icon:active svg path {
  fill: var(--brand-tint);
}
.navigation--icon:focus svg path {
  fill: var(--button-hoverColor);
}

/* This is the menu page */
.navigation--menu {
  display: grid;
  grid-template-rows: auto;
}

.navigation--section {
  display: grid;
}

.navigation--section--header {
  text-align: left;
}

ul.navigation--section--links {
  padding: 0;
  margin: 0;
}

li.navigation--section--link {
  padding: 0;
}

.music,
.game {
  display: grid;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}
.music svg,
.game svg {
  width: 100%;
  max-width: 300px;
}

@media (prefers-reduced-motion: no-preference) {
  svg.jiggle:hover {
    animation: jiggle 0.2s infinite;
  }
  svg.rise-and-fall:hover {
    animation: rise-and-fall 0.75s infinite alternate-reverse;
  }
  svg.bounce:hover {
    animation: rise-and-fall 0.25s infinite alternate-reverse;
  }
}
svg#gameboy {
  --gb-power: rgb(74,159,101);
  --gb-shell--stroke: light-dark(rgb(40,40,40), rgb(175,175,175));
  --gb-shell--fill: light-dark(rgb(50,50,50), rgb(220,220,220));
  --gb-lens--fill-1: light-dark(rgb(20,20,20), rgb(170,170,170));
  --gb-lens--fill-2: light-dark(rgb(180,180,180), rgb(150,150,150));
  --gb-lens--fill-3: light-dark(rgb(65,65,65), rgb(205,205,205));
  --gb-lens--fill-4: light-dark(rgb(0,0,0), rgb(220,220,220));
  --gb-dpad--fill-1: light-dark(rgb(15,15,15), rgb(215,215,215));
  --gb-dpad--fill-2: light-dark(rgb(20,20,20), rgb(155,155,155));
  --gb-dpad--stroke: light-dark(rgb(40,40,40), rgb(190,190,190));
  --gb-start-select--fill: light-dark(rgb(15,15,15), rgb(170,170,170));
  --gb-start-select--stroke: light-dark(transparent, rgb(255,255,255));
  --gb-abxy--fill-1: light-dark(rgb(120,120,120), rgb(255,255,255));
  --gb-abxy--fill-2: light-dark(rgb(50,50,50), rgb(210,210,210));
  --gb-abxy--stroke: light-dark(transparent, rgb(225,225,225));
  --gb-shared-fill-black: light-dark(rgb(0,0,0), rgb(170,170,170));
  --gb-shared-fill-grey: light-dark(rgb(130,130,130), rgb(210,210,210));
  --gb-shared-fill-dark-grey: light-dark(rgb(50,50,50), rgb(225,225,225));
  --gb-shared-stroke: light-dark(rgb(40,40,40), rgb(210,210,210));
}

.post-it.yellow {
  --post-it--top: hsl(51, 100%, 48.5%);
  --post-it--body: hsl(51, 100%, 50%);
  --post-it--corner: hsl(51, 100%, 70%);
}

.post-it.green {
  --post-it--top: hsl(212, 69%, 64%);
  --post-it--body: hsl(212, 69%, 62%);
  --post-it--corner: hsl(212, 70%, 74%);
}

.post-it.cyan {
  --post-it--top: hsl(70, 78%, 68%);
  --post-it--body: hsl(70, 73%, 66%);
  --post-it--corner: hsl(70, 100%, 73%);
}

.post-it.magenta {
  --post-it--top: hsl(327, 76%, 59%);
  --post-it--body: hsl(327, 70%, 56%);
  --post-it--corner: hsl(327, 100%, 75%);
}

.note.content,
.collection--note.post-title {
  display: block;
  position: relative;
  justify-self: center;
  width: 275px;
}
@media (min-width: 700px) {
  .note.content,
  .collection--note.post-title {
    width: 450px;
  }
}
@media (min-width: 1100px) {
  .note.content,
  .collection--note.post-title {
    width: 638px;
  }
}

.post-it {
  display: grid;
  position: relative;
  align-content: center;
  transform: rotate(2deg);
  padding: 60px var(--pad) var(--pad) !important;
  outline-offset: 0;
  height: 275px;
  align-self: center;
  font-size: clamp(23px, 4.5vw, 44px);
  font-family: "Permanent Marker", "Segoe Print", "Marker Felt", Chilanka, TSCu_Comic, casual, cursive;
  color: var(--black);
  line-height: 1.1;
  background: var(--post-it--body);
  border: 3px solid var(--color);
  --corner-fold-size: 50px;
  --corner-fold-size--border: calc(var(--corner-fold-size)/2 + 3px);
  clip-path: polygon(0 0px, 0 0, 100% 0, 100% var(--corner-fold-size), 100% calc(100% - var(--corner-fold-size)), calc(100% - var(--corner-fold-size)) 100%, 0 100%, 0 100%);
}
.post-it::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 60px;
  background: var(--post-it--top);
}
.post-it::after {
  display: block;
  position: absolute;
  content: "";
  width: var(--corner-fold-size);
  height: var(--corner-fold-size);
  background: linear-gradient(135deg, var(--post-it--corner) var(--corner-fold-size--border), var(--color) var(--corner-fold-size--border), var(--color) 100%);
  border: 3px solid var(--color);
  bottom: -3px;
  right: -3px;
}
@media (min-width: 700px) {
  .post-it {
    --corner-fold-size: 70px;
    --corner-fold-size--border: 42px;
    height: 300px;
    padding: 72px calc(var(--pad) * 1.5) calc(var(--pad) * 1.5) !important;
  }
  .post-it::before {
    height: 72px;
  }
}
@media (min-width: 1100px) {
  .post-it {
    --corner-fold-size: 80px;
    --corner-fold-size--border: 49px;
    height: 425px;
    padding: 102px calc(var(--pad) * 2) calc(var(--pad));
  }
  .post-it::before {
    height: 102px;
  }
}

.polaroid {
  display: inline-block;
  position: relative;
  z-index: 0;
  background: linear-gradient(145deg, rgb(250, 250, 255), rgb(245, 245, 250));
  text-decoration: none;
  border: 3px solid var(--color);
  padding: var(--pad);
  width: auto;
  margin: auto;
}

.gallery .polaroid {
  max-width: 300px;
}

.polaroid img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  max-width: 300px;
  border: 3px solid var(--color);
}

#post-content .polaroid img {
  max-height: 70vh;
  max-width: 300px;
}
@media (min-width: 700px) {
  #post-content .polaroid img {
    width: 500px;
    max-width: 500px;
  }
}
@media (min-width: 1100px) {
  #post-content .polaroid img {
    width: 600px;
    max-width: 600px;
  }
}

.photo--title {
  text-align: center;
  color: var(--black) !important;
  font-size: clamp(26px, 2vw + 6px, 32px);
  font-family: "Permanent Marker", "Segoe Print", "Marker Felt", Chilanka, TSCu_Comic, casual, cursive;
  line-height: 1.2;
  padding: var(--pad) 0 0 0 !important;
}

progress[value] {
  position: relative;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 600px;
  padding: 0;
  margin: var(--pad) 0;
  height: 36px;
}
progress[value]::-webkit-progress-bar {
  background: var(--secondary-background);
  border: 3px solid var(--color);
  border-radius: 1000px;
  padding: 4px;
  overflow: hidden;
}
progress[value]::-webkit-progress-value {
  border: 3px solid var(--color);
  border-radius: 1000px;
  background: var(--brand);
}

.progress--stretch {
  display: grid;
  max-width: 600px;
  grid-template-columns: 1fr 1fr;
  grid-gap: calc(var(--pad) * 0.5);
}

.totaliser {
  max-width: 600px;
  margin-top: calc(var(--pad) * 2);
  padding: var(--pad);
}
.totaliser progress[value]::-webkit-progress-bar {
  background: var(--white);
}

.skip-link {
  --skiplink-color: light-dark(var(--white), var(--black));
  --skiplink-background: var(--brand);
  z-index: 999999;
  display: block;
  width: 100%;
  text-align: left;
}
.skip-link:focus, .skip-link:hover {
  background: var(--skiplink-background);
  color: var(--skiplink-color);
}
.skip-link p, .skip-link label, .skip-link .radio-input {
  color: var(--background);
  padding: var(--pad);
}

@media (max-width: 699px) {
  .mobile-overflow {
    overflow-x: auto;
  }
  .mobile-overflow table {
    width: unset;
  }
}

table {
  table-layout: fixed;
  font-size: clamp(18px, 3vw, 24px);
  width: 100%;
  margin-bottom: calc(var(--pad) * 2);
  border-spacing: 0;
  border-collapse: separate;
  border-top-left-radius: calc(var(--border-radius) * 2);
  border-top-right-radius: calc(var(--border-radius) * 2);
  border: 3px solid var(--color);
  /* Apply a border to the right of all but the last column */
  /* Apply a border to the bottom of all the head */
  /* Apply a border to the bottom of all but the last row */
}
@media (min-width: 1100px) {
  table {
    margin-bottom: 30px;
    width: 1100px;
    margin-right: -115px;
    margin-left: -115px;
  }
}
table::after {
  content: unset !important;
}
table:has(caption) {
  border-bottom: 0;
}
table tr {
  border-bottom: 1px solid var(--color);
}
table th, table td {
  padding: var(--pad);
  vertical-align: top;
}
table th:first-child, table td:first-child {
  border-left: none;
}
table thead,
table tfoot {
  text-align: left;
}
table th:not(:last-child), table td:not(:last-child) {
  border-right: 1px solid var(--secondary-borderColor);
}
table > thead > tr:last-child > th, table > thead > tr:last-child > td {
  border-bottom: 3px solid var(--color);
}
table > thead > tr:not(:last-child) > th, table > thead > tr:not(:last-child) > td, table > tbody > tr:not(:last-child) > th, table > tbody > tr:not(:last-child) > td, table > tfoot > tr:not(:last-child) > th, table > tfoot > tr:not(:last-child) > td, table > tr:not(:last-child) > td, table > tr:not(:last-child) > th, table > thead:not(:last-child), table > tbody:not(:last-child), table > tfoot:not(:last-child) {
  border-bottom: 1px solid var(--secondary-borderColor);
}

caption {
  display: table-caption;
  caption-side: bottom;
  padding: var(--pad);
  text-align: left;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--color);
  background: var(--secondary-background);
  border: 3px solid var(--color);
  border-bottom-left-radius: calc(var(--border-radius) * 2);
  border-bottom-right-radius: calc(var(--border-radius) * 2);
}

figure table {
  width: 100%;
  margin: 0;
}
figure table:nth-child(n+2) {
  border-radius: 0;
}
figure table:nth-last-child(2) {
  border-bottom: 0;
}

figure table + figcaption {
  width: 100%;
  max-width: unset;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

article.interaction {
  padding: var(--pad) 0;
}

.interactions.counts {
  display: block;
  text-align: right;
  line-height: 1;
  padding: 0 var(--pad);
}

.interactions .replies {
  padding: calc(var(--pad) * 2) 0 calc(var(--pad) * 3);
}

footer aside.interactions {
  grid-area: webmentions;
}

.h-entry.list .interactions.counts,
.h-entry.note .interactions.counts,
.h-entry.photo .interactions.counts {
  padding: var(--pad) var(--pad) 0;
}

.interaction-count {
  display: inline-block;
  margin: 0 0 calc(var(--pad) * 2);
  padding: 0 0 0 calc(var(--pad) * 2);
}

.replies .counts {
  display: grid;
  grid-gap: var(--pad);
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .replies .counts {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
}

.interactions .counts .count {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-items: end;
  align-items: center;
}
.interactions .counts .count * {
  line-height: 1;
}

.u-photo.count {
  display: inline-block;
  border: 3px solid var(--color);
}
.u-photo.count:nth-of-type(n+2) {
  margin-left: -20px;
}

.submit-webmention {
  display: grid;
  grid-area: wmForm;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: auto auto;
  grid-template-areas: "label questionmark questionmark" "input input button";
  grid-gap: var(--pad);
}

.submit-webmention label.label {
  grid-area: label;
  padding: 0;
  line-height: 1;
}

.submit-webmention input {
  grid-area: input;
  margin: 0;
}

.submit-webmention button {
  grid-area: button;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  aspect-ratio: 1/1;
  padding: 12px;
  height: 100%;
}
.submit-webmention button svg {
  width: 40px;
}

.submit-webmention a {
  grid-area: questionmark;
  text-align: right;
  line-height: 1;
}

body#four-oh-four {
  --header-height: 70px;
  --page-height: calc(100vh - var(--header-height));
}
body#four-oh-four #content {
  display: grid;
  padding: 0 var(--pad);
  margin: 0;
  min-height: var(--height);
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "img" "text";
}
@media (min-width: 700px) {
  body#four-oh-four #content {
    grid-template-columns: 1fr 2fr;
    grid-template-areas: ".      img" "text   text";
  }
}
@media (min-width: 1100px) {
  body#four-oh-four #content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(var(--page-height), auto);
    grid-template-areas: "img text";
  }
}
body#four-oh-four .text {
  grid-area: text;
  align-self: center;
  justify-self: center;
  text-wrap: balance;
  text-wrap: pretty;
}
@media (min-width: 700px) {
  body#four-oh-four .text {
    margin-left: 100px;
  }
}
body#four-oh-four .image {
  display: grid;
  grid-area: img;
  width: 100%;
  height: 100%;
  align-content: center;
}
@media (max-width: 700px) {
  body#four-oh-four .image {
    padding-top: calc(var(--pad) * 3);
  }
}
body#four-oh-four .image img,
body#four-oh-four .image svg {
  padding: 0;
  margin: 0;
  width: 100%;
  max-height: calc(50vh - var(--header-height));
}
@media (min-width: 700px) {
  body#four-oh-four .image img,
  body#four-oh-four .image svg {
    max-height: var(--page-height);
  }
}

body#home {
  --header-height: 70px;
  --page-height: calc(100vh - var(--header-height));
}
body#home #content {
  display: grid;
  padding: 0 var(--pad);
  margin: 0;
  min-height: var(--height);
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "hello" "me";
}
@media (min-width: 700px) {
  body#home #content {
    grid-template-columns: 1fr 2fr;
    grid-template-areas: "hello  hello" ".      me";
  }
}
@media (min-width: 1100px) {
  body#home #content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(var(--page-height), auto);
    grid-template-areas: "hello me";
  }
}
body#home .hello {
  grid-area: hello;
  align-self: center;
  justify-self: center;
}
@media (min-width: 700px) {
  body#home .hello {
    margin-left: 100px;
  }
}
body#home .portrait {
  display: grid;
  grid-area: me;
  width: 100%;
  height: 100%;
  align-content: end;
}
body#home .portrait img,
body#home .portrait svg {
  padding: 0;
  margin: 0;
  width: 100%;
  max-height: calc(50vh - var(--header-height));
}
@media (min-width: 700px) {
  body#home .portrait img,
  body#home .portrait svg {
    max-height: var(--page-height);
  }
}

body#loop section#page-content > section {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  body#loop section#page-content > section {
    grid-gap: var(--pad);
    grid-template-columns: 1fr 3fr;
  }
}

body[id$=blogpost] section.post-body ul > li::before,
body[id$=photo] section.post-body ul > li::before,
body[id$=now] section.post-body ul > li::before {
  position: absolute;
  content: "—";
  left: var(--pad);
}
body[id$=blogpost] header.post-title[class^=collection--],
body[id$=photo] header.post-title[class^=collection--],
body[id$=now] header.post-title[class^=collection--] {
  margin: calc(var(--pad) * 4) auto;
  text-align: center;
}

header.post-title.collection--blogpost {
  margin: calc(var(--pad) * 4) auto 0 !important;
  text-align: center;
}

section.from-me + footer.interactions,
section.from-them + footer.interactions {
  margin-bottom: calc(var(--pad) * 4);
}

article#post-content.share,
article#post-content.reply {
  margin: calc(var(--pad) * 4) auto 0;
}
@media (min-width: 700px) {
  article#post-content.share,
  article#post-content.reply {
    margin: calc(var(--pad) * 6) auto 0;
  }
}

body#podcast section {
  padding-top: 75px;
  padding-bottom: 50px;
}
body#podcast section#podcasts {
  padding: 0;
}
body#podcast img.featured {
  margin: 0;
  padding: 0;
  width: unset;
  max-width: 200px;
  width: 100%;
  margin: 0 0 30px 0;
}
@media (min-width: 700px) {
  body#podcast img.featured {
    max-width: 300px;
    margin: 100px 0 30px 0;
  }
}
body#podcast section#pride-on {
  padding-top: 0;
  padding-bottom: 100px;
}
body#podcast section#pride-on p, body#podcast section#pride-on label, body#podcast section#pride-on .radio-input {
  color: var(--white);
}
body#podcast section#pride-on div.container {
  padding-top: 15px;
  padding-bottom: 15px;
  background: var(--magenta);
  background-image: url("/images/podcasts/pride-on-arrows.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body#podcast section#pride-on div.container::after {
  content: "";
  clear: both;
  display: table;
}
body#podcast section#pride-on div.pod-description {
  max-width: 65ch;
  float: left;
  margin: 50px 30px;
}
body#podcast section#pride-on div.pod-description p:last-child, body#podcast section#pride-on div.pod-description label:last-child, body#podcast section#pride-on div.pod-description .radio-input:last-child {
  padding-bottom: 0;
}
body#podcast section#pride-on img {
  width: 100%;
  max-width: 300px;
  margin: 0 0 30px 0;
}
@media (min-width: 700px) {
  body#podcast section#pride-on img {
    margin-top: 100px;
  }
}
body#podcast section#pride-on p.link, body#podcast section#pride-on label.link, body#podcast section#pride-on .link.radio-input {
  margin-top: 20px;
}
body#podcast section#pride-on p.link a, body#podcast section#pride-on label.link a, body#podcast section#pride-on .link.radio-input a {
  display: inline-block;
}
body#podcast section#pride-on p.link a:link, body#podcast section#pride-on label.link a:link, body#podcast section#pride-on .link.radio-input a:link {
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--white);
  padding: 10px 25px;
}
body#podcast section#pride-on p.link a:visited, body#podcast section#pride-on label.link a:visited, body#podcast section#pride-on .link.radio-input a:visited {
  color: var(--black);
  text-decoration: none;
}
body#podcast section#pride-on p.link a:hover, body#podcast section#pride-on label.link a:hover, body#podcast section#pride-on .link.radio-input a:hover {
  color: var(--magenta);
  outline: 2px solid var(--white);
  outline-offset: 2px !important;
  background: var(--white);
}
body#podcast section#pride-on p.link a:focus, body#podcast section#pride-on label.link a:focus, body#podcast section#pride-on .link.radio-input a:focus {
  outline: 2px solid var(--white);
  outline-offset: 0px;
  border: 2px solid var(--magenta);
  color: var(--magenta);
  background: var(--white);
}
body#podcast section#pride-on p.link a:active, body#podcast section#pride-on label.link a:active, body#podcast section#pride-on .link.radio-input a:active {
  outline-offset: 4px !important;
}
body#podcast footer#site-footer section.container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
