* { box-sizing: border-box; }

:root {
  --border-radius: 5px;
  --color-grey: #ddd;
  --looser-line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

html {
  scroll-padding-top: 6rem;
}

body {
  background-color: var(--color-page-background);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.4;
  font-family: "Public Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

a {
  color: var(--color-link);
}

img { width: 100%; }

hr {
  border: 0;
  border-top: 1px solid var(--color-grey);
  margin: 3rem 0;
}


/* Utility classes */

.tc { text-align: center; }

.mt1 { margin-top: 1rem; }
.mt2 { margin-top: 2rem; }
.mt4 { margin-top: 4rem; }
.mb0 { margin-bottom: 0rem; }
.mb1 { margin-bottom: 1rem; }
.mb2 { margin-bottom: 2rem; }
.mb3 { margin-bottom: 3rem; }
.mb4 { margin-bottom: 4rem; }

.pt4 { padding-top: 4rem; }
.pb4 { padding-bottom: 4rem; }

.fs20 { font-size: 1.25rem; }
.fs24 { font-size: 1.5rem; }
.fs40 { font-size: 2.5rem; }
@media (max-width: 600px) {
  .fs20 { font-size: 1.125rem; }
  .fs24 { font-size: 1.25rem; }
  .fs40 { font-size: 1.875rem; }
}

.lhtitle { line-height: 1.2; }

.heavy { font-weight: 900; }

.centered {
  margin-right: auto;
  margin-left: auto;
}

.nolink {
  text-decoration: none;
}

.artwork {
  border-radius: var(--border-radius);
}

.color-default, .color-default a { color: var(--color-text) }
.color-secondary { color: var(--color-secondary) }


/* Layout classes */

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.main {
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.background {
  background-color: var(--color-background);
  color: var(--color-background-text);
}
.background a {
  color: var(--color-background-text);
}


/* Forms */
input, select, textarea, button {
  appearance: none;
  border: 1px solid var(--color-grey);
  padding: 0.5rem 0.75rem;
  font: inherit;
  border-radius: 5px;
}

button {
  background-color: var(--color-background-text);
  color: var(--color-background);
  cursor: pointer;
}


/* Header */
.header-wrap {
  margin-bottom: 2rem;
}
.header {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header {
  display: flex;
  column-gap: 2rem;
  align-items: center;
}
.header__logo {
  width: 50%;
}
.header__nav {
  width: 50%;
  text-align: right;
  position: relative;
}
nav a {
  text-decoration: none;
}
nav a.current {
  font-weight: bold;
}

@media (max-width: 700px) {
  .header__nav nav {
    display: none;
    position: absolute;
    background: var(--color-background);
    padding: 0.5rem 1rem 0.5rem 3rem;
    right: -0.5rem;
    top: -0.5rem;
    box-shadow: 0 1px 15px rgb(0 0 0 / 20%);
    border-radius: 5px;
  }
  .header__nav nav.show {
    display: block;
  }
  #navOpen {
    padding-right: 0.5rem;
    display: inline-block;
  }
  .header__logo img {
    width: 19vw;
    height: auto;
  }
  .header__nav a {
    display: block;
    margin: 0.25rem 0;
  }
}
@media (min-width: 701px) {
  #navOpen,
  #navClose {
    display: none;
  }
  .header__logo img {
    width: 120px;
  }
  .header__logo {
    width: 30%;
  }
  .header__nav {
    width: 70%;
  }
  .header__nav nav a {
    margin-left: 0.5rem;
    padding: 0.25rem;
  }

  .header-wrap {
    margin-bottom: 4rem;
  }

}


/* Home */

.hero__description {
  max-width: 600px;
}

.hero .artwork {
  max-width: 240px;
}

.artwork--mini {
  width: 48px;
  border-radius: 3px;
  vertical-align: middle;
}

.home__episode {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.home__episode .episode {
  display: flex;
  column-gap: 1rem;
}
.home__episode .episode a:first-of-type {
  width: 48px;
}


/* App buttons */

a.site-subscribe-link {
  text-align: left;
  transition: border 0.2s, transform 0.2s;
}
a.site-subscribe-link:hover {
  border-color: #777;
  box-shadow: 0px 1px 6px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}
a.site-subscribe-link b {
  line-height: 1.1;
}

/* Player */

.site-player {
  background-color: var(--color-player-background);
  color: var(--color-player);
  border-radius: 5px;
  padding: 1rem;
  margin: 0 auto;
  font-size: 13px;
}

@media (max-width: 401px) {
  .site-player {
    padding: 0.75rem;
  }
}

.site-player-controls {
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.site-player-time {
  flex-grow: 1;
}

.site-player-play, .site-player-pause, .site-player-fastforward, .site-player-rewind, .site-player-volume {
  color: var(--color-player);
}

.site-player-fastforward svg, .site-player-rewind svg, .site-player-volume span svg {
  margin: 0 auto;
  height: 1.35em;
  width: 1.35em;
}

.site-player-progress-bar {
  background-color: var(--color-player);
}

.site-player-speed {
  width: 2.5em;
  color: var(--color-player);
  border-color: var(--color-player);
}

.site-player svg {
  fill: var(--color-player);
}
.site-player-loading svg {
  color: var(--color-player-background);
}

.site-player-progress {
  position: relative;
  overflow: visible;
  width: 100%;
  margin-top: 0.25rem;
  margin-bottom: 0.75em;

  .seek-tooltip {
    opacity: 0;
    color: #fff;
    background-color: #333;
    border-radius: 5px;
    position: absolute;
    z-index: 10;
    padding: 3px 5px 3px 5px;
    top: -2.3em;
    font-family: monospace;
    font-size: 0.65rem;
    font-weight: 500;
    transition: opacity;
    transform: translateX(-50%);
  }
}
.site-player-progress-bar {
  position: relative;
  z-index: 5;
  height: 10px;
  width: 100%;
  cursor: pointer;
  border-radius: 9999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: rgba(255,255,255,0.4);

  & * {
    cursor: pointer;
  }

  > span {
    border-radius: 0 9999px 9999px 0;
    max-width: var(--player-progress);
  }
}

.site-player-progress-bar:before {
  opacity: 0;
}
.site-player-progress-bar:before,
.site-player-progress-bar > span {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0px;
  top: 0px;
  bottom: 0px;
  background-color: var(--color-player);
}

.site-player-progress-bar > span {
  border-radius: 0 9999px 9999px 0;
  max-width: var(--player-progress);
}

.site-player-progress-bar:hover:before {
  max-width: var(--player-progress-hover);
}

@media(hover: hover) and (pointer: fine) {
  .site-player-progress:hover {
    .seek-tooltip {
      opacity: 1.0;
    }
  }

  .site-player-progress-bar:before {
    opacity: 0.5;
    max-width: 0;
    border-radius: 0;
    content: '';
  }
}

.site-player-progress.seeking-by-touch {
  .seek-tooltip {
    opacity: 1.0;
  }
  .site-player-progress-bar:before {
    opacity: 0.5;
    border-radius: 0;
    content: '';
    max-width: var(--player-progress-hover);
  }
}

/* Mailinglist */

.site-newsletter h3 {
  line-height: 1;
  margin-bottom: 1em;
}

.site-newsletter-success svg {
  margin-right: 0.5em;
  height: 1.5em;
  width: 1.5em;
  flex-shrink: 0;
}

.site-newsletter-form.subscribed+.site-newsletter-success {
  padding: 0.6em 0;
  display: flex;
  align-items: center;
}

/* Episodes */

.main .episode {
  display: block;
  margin-bottom: 3rem;
}
.episode__artwork {
  width: 19vw;
  margin-bottom: 1rem;
}
.site-episode-notes {
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: var(--looser-line-height);
}
.site-episode-notes h1,
.site-episode-notes h2,
.site-episode-notes h3,
.site-episode-notes h4,
.site-episode-notes h5,
.site-episode-notes h6 {
  font-size: 1.5rem;
}
.site-episode-notes ul + br, .site-episode-notes ol + br {
  display: none;
}
.site-episode-notes blockquote {
  font-style: italic;
  border-left: 4px solid var(--color-link);
  margin-left: 0;
  padding-left: 1.3em;
}
.site-video-embed {
  margin-top: 2em;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius);
}
.site-episode-transcript cite {
  display: inline-block;
  font-style: normal;
  font-weight: 600;
}
.site-episode-transcript time {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  display: inline-block;
  vertical-align: middle;
  font-size: 0.9rem;
  margin-left: 0.8rem;
}
.site-episode-transcript time a {
  text-decoration: none;
  opacity: 0.6;
}
.site-episode-transcript time a:hover {
  text-decoration: underline;
  opacity: 1;
}
.site-episode-transcript p {
  margin-top: 0;
}
.latest-episode {
  display: flex;
  align-items: center;
}

.latest-episode svg {
  flex-shrink: 0;
  height: 16px;
  width: 16px;
  margin-right: 6px;
  fill: currentColor;
}

.home__episode .latest-episode svg {
  height: 20px;
  width: 20px;
}

@media (min-width: 601px) {
  .main .episode {
    display: flex;
    column-gap: 1.5rem;
  }
  .episode__artwork {
    flex: 0 0 20%;
    width: auto;
  }

  .episode__info {
    flex-grow: 1;
    padding-top: 0.25rem;
  }
}

/* Recommended Shows */

.site-recommended-shows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.site-recommended-shows .site-recommended-show {
  font-weight: 600;
  font-size: 0.7rem;
}

.site-recommended-shows .site-recommended-show .site-recommended-show-artwork {
  display: block;
}

.site-recommended-shows .site-recommended-show .site-recommended-show-details {
  display: flex;
  column-gap: 0.475rem;
  align-items: flex-start;
}

.site-recommended-shows .site-recommended-show .site-recommended-show-title {
  flex: 1 1 0%;
  padding-top: 0.125rem;

  a {
    color: var(--color-text);
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
}

.site-recommended-shows .site-recommended-show .site-recommended-show-links {
  display: flex;
}

.site-recommended-shows .site-recommended-show .site-recommended-show-links a {
  display: flex;
  flex-shrink: 0;
  padding: 4px;
  justify-content: center;
  align-items: center;
  color: var(--color-link);
  border-radius: 3px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;

  svg {
    width: 12px;
    height: auto;
    fill: currentColor;
  }
}

.site-recommended-shows .site-recommended-show .site-recommended-show-links a:hover {
  background: var(--color-background);
}

@media (min-width: 601px) {
  .site-recommended-shows {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .site-recommended-shows .site-recommended-show {
    font-size: 0.8rem;
  }
  .site-recommended-shows .site-recommended-show .site-recommended-show-title {
    padding-top: 0;
  }
}

/* Search */

h1 + .site-episode-search {
  margin-top: -2rem;
  margin-bottom: 2rem;
}
.site-episode-search-input {
  width: 50%;
  position: relative;
}
.site-episode-search .site-episode-search-icon {
  align-items: center;
  bottom: 0;
  display: flex;
  left: 0;
  padding-left: 0.75rem;
  pointer-events: none;
  position: absolute;
  top: 0;
}
.site-episode-search .site-episode-search-icon svg {
  fill: currentColor;
  color: #bbb;
  flex-shrink: 0;
  height: 1.25rem;
  width: 1.25rem;
}
.site-episode-search-input input {
  width: 100%;
  padding-left: 2.5rem;
}

@media (max-width: 600px) {
  .site-episode-search-input {
    width: 90%;
  }
}

/* Episode */

@media (max-width: 600px) {
  .episode-pagination {
    text-align: center;
  }
  .site-episode-notes h1,
  .site-episode-notes h2,
  .site-episode-notes h3,
  .site-episode-notes h4,
  .site-episode-notes h5,
  .site-episode-notes h6 {
    font-size: 1.25rem;
  }
}

/* People */

.site-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2em;
}
.site-people .site-person {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  font-size:  14px;
  align-items: flex-start;
  line-height: 1.4em;
  column-gap: 0.75rem;
}
.site-person .site-person-avatar {
  z-index: -2;
  position: relative;
  width: 96px;
  height: 112px;
  flex-shrink: 0;
}
.site-person .site-person-avatar img {
  border-radius: 100%;
  width: 96px;
  height: 96px;
}
.site-person .site-person-icon svg {
  color: #bbb;
  width: 96px;
  height: 96px;
  fill: currentColor;
}
.site-person-role {
  font-weight: bold;
  line-height: 1;
  color: white;
  background-color: var(--color-link);
  border-radius: 9999px;
  padding: 5px 8px;
}
.site-person .site-person-avatar .site-person-role {
  position: absolute;
  bottom:  0.5rem;
  font-size: 11px;
  left: 50%;
  transform: translateX(-50%);
}
.site-person .site-person-details {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 0.5rem;
}
.site-person .site-person-name {
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-person .site-person-name:hover {
  text-decoration: underline;
}
.site-person .site-person-bio {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-person-links {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  padding-top: 0.25rem;
}
.site-person-links a {
  line-height: 0;
  flex-shrink: 0;
}
.site-person-links a svg {
  fill: currentColor;
  height: 20px;
  width: 20px;
}

/* Individual Person Page  */

.site-person-header {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  margin-bottom: 3rem;
}
.site-person-header h1 {
  margin-top: 0;
  margin-bottom: 0.4em;
}
.site-person-header .site-person-role {
  font-weight: 600;
  font-size: 18px;
  padding: 6px 14px;
}
.site-person-header .site-person-image {
  border-radius: 100%;
  height: 8rem;
  width: 8rem;
}
.site-person-header .site-person-icon svg {
  height: 8rem;
  width: 8rem;
  fill: currentColor;
  color: var(--color-background-text);
  opacity: 0.6;
}
.site-person-metadata {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
}
.site-person-metadata .site-person-links {
  padding-top: 0;
}
.site-person-metadata .site-person-links a svg {
  height: 22px;
  width: 22px;
}
.site-person-subheader {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.person .site-episodes {
  margin-bottom: 4rem;
}

@media all and (max-width: 750px) {
  .site-people {
    gap: 1.2em;
  }
  .site-person .site-person-avatar {
    width: 78px;
    height: 94px;
  }
  .site-person .site-person-avatar img {
    width: 78px;
    height: 78px;
  }
  .site-person .site-person-icon svg {
    width: 78px;
    height: 78px;
  }
  .site-person-header {
    column-gap: 1rem;
  }
  .site-person-header h1 {
    font-size: 24px;
  }
  .site-person-header .site-person-role {
    font-size: 16px;
    padding: 6px 12px;
  }
  .site-person-header .site-person-image {
    height: 5rem;
    width: 5rem;
  }
  .site-person-header .site-person-icon svg {
    height: 5rem;
    width: 5rem;
  }
}

@media all and (max-width: 480px) {
  .site-people {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1em;
  }
}

/* Supporters */

.site-supporters-count {
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.site-supporter {
  line-height: 1em;
  display: flex;
  align-items: center;
  gap: 0 1em;
  margin-bottom: 1em;
}

.site-supporter-image {
  border-radius: 100%;
}

.site-supporter-icon svg {
  color: var(--color-background-text);
  opacity: 0.6;
  fill: currentColor;
}

.site-supporter-image, .site-supporter-icon, .site-supporter-icon svg {
  width: 5rem;
  height: 5rem;
}

.site-supporters-campaign {
  border-bottom: 1px solid var(--color-grey);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
.site-supporters-campaign-name {
  font-weight: bold;
}
.site-supporters-campaign-intro {
  margin: 0.5rem 0 1rem 0;
}
.site-supporters-campaign-button {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--color-grey);
  padding: 0.75rem 1rem;
  font: inherit;
  border-radius: 5px;
  font-weight: 600;
  background-color: var(--color-background-text);
  color: var(--color-background);
}

.site-supporters-goal {
  margin-top: 1rem;
}

.site-supporters-goal-progress {
  margin: 0 0 0.5rem 0;
  border: 2px solid var(--color-background-text);
  border-radius: 9999px;
  overflow: hidden;
}
.site-supporters-goal-progress-bar {
  height: 1.5em;
  background: var(--color-background-text);
  opacity: 0.5;
  border: 3px solid var(--color-background);
  border-radius: 9999px;
}

.site-supporters-goal-description {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5em;
}

.site-supporters-widget {
  text-align: center;
}

.site-supporters-widget > a {
  text-decoration: none;
}

.site-supporters-widget-images {
  display: inline-flex;
  align-items: center;
}

.site-supporters-widget-images img {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  margin-left: -12px;
  border: 3px solid var(--color-background);
}

.site-supporters-widget span {
  display: block;
  font-weight: 400;
  line-height: 1em;
}
.site-supporters-widget span:hover {
  text-decoration: underline;
}

@media all and (max-width: 750px) {
  .site-supporter {
    gap: 0 0.6em;
  }
  .site-supporter-image, .site-supporter-icon, .site-supporter-icon svg {
    height: 4rem;
    width: 4rem;
  }
  .site-supporters-campaign-intro {
    font-size: 0.9rem;
    line-height: 1.5em;
    margin: 0 0 1rem 0;
  }
  .site-button.site-supporters-campaign-button {
    font-size: 0.9rem;
    line-height: 1.2em;
  }
}

@media all and (max-width: 600px) {
  .site-supporters-widget {
    text-align: left;
  }
  .site-supporters-widget > a {
    margin-left: 12px;
  }
  .site-supporters-goal-progress {
    margin: 0 0 0.25rem 0;
  }
}
@media all and (max-width: 480px) {

  .site-supporter-image, .site-supporter-icon, .site-supporter-icon svg {
    height: 3rem;
    width: 3rem;
  }
  .site-supporters-campaign {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .site-supporters-goal {
    margin-top: 0.5rem;
  }
  .site-supporters-goal-progress-text {
    font-size: 0.rem;
  }
  .site-supporters-goal-progress-bar {
    height: 1.2rem;
    border-width: 2px;
  }
  .site-supporters-widget-images img {
    height: 3rem;
    width: 3rem;
  }
}


/* Pages */

.site-page-content {
  line-height: var(--looser-line-height);
}

.floating-player {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  position: sticky;
  top: 0;
}

.floating-player > .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-page-background);
  opacity: 0.5;
  z-index: -1;
}

@media (max-width: 600px) {
  .floating-player {
    padding: 1rem 0;
  }
}

@media (max-width: 600px) {
  .episode__left {
    margin: 0 auto 3rem;
    max-width: 180px;
  }
}

@media (min-width: 601px) {
  .episode__wrap {
    display: flex;
    column-gap: 2rem;
  }
  .episode__left {
    flex: 0 0 22%;
  }
  .episode__left div {
    position: sticky;
    top: 2rem;
  }
}


/* Episode Comments (Bluesky) */

.episode-comments {
  border: 0;
  border-top: 1px solid var(--color-grey);
  margin: 3rem 0;
  padding-top: 3rem;

  a {
    text-decoration: none;
  }

  .episode-comments-headline {
    display: flex;
    align-items: center;
    column-gap: 0.4rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;

    svg {
      display: none;
    }
  }

  .episode-comments-reply-notice {
   font-size: 0.875rem;
   margin-top: 0;

    a {
      text-decoration: underline;
    }
  }

  .episode-comments-reply-link, .episode-comments-link {
    text-decoration: underline;
  }

  .episode-comments-notice {
    background-color: var(--color-background);
    padding: 1.25rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
  }

  .episode-comments-stats {
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text);
    margin-bottom: 1.4rem;
    opacity: 0.8;

    .episode-comments-stat {
      display: inline-flex;
      align-items: center;
      column-gap: 0.25rem;

      svg {
        height: 1rem;
        width: 1rem;

        &.repost {
          transform: rotate(90deg);
        }
      }
    }
  }

  .episode-comments-thread {
    list-style-type: none;
    margin: 0;
    padding: 0;

    ol {
      list-style-type: none;
      padding-left: 1.3rem;
      border-left: 2px solid var(--color-grey);
    }
  }

  .episode-comment {
    margin-bottom: 1.4rem;
  }

  .episode-comment-author {
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
  }
  .episode-comment-author:hover {
    text-decoration: underline;
  }

  .episode-comment-avatar {
    border-radius: 9999px;
    height: 1.2rem;
    width: 1.2rem;
  }

  .episode-comment-displayname {
    font-weight: 600;
    color: var(--color-text);
  }
  .episode-comment-displayname:empty {
    display: none;
  }

  .episode-comment-handle {
    color: var(--color-text);
  }

  .episode-comment-body {
    display: block;
    color: var(--color-text);
    font-size: 1rem;
    white-space: pre-wrap;
  }
}

@media (max-width: 600px) {
  .episode-comments .episode-comments-headline {
    font-size: 1.25rem;
  }
}

/* Footer */

.footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

div.footer__top {
  margin-bottom: 3em;
}

div.footer__bottom {
  padding-top: 2rem;
}

@media (max-width: 600px) {
  .footer > div > .site-newsletter {
    margin-bottom: 3rem;
  }

  .footer__nav a {
    display: block;
  }

  div.footer__top {
    text-align: left;
    margin-bottom: 2em;
  }
}

@media (min-width: 601px) {
  .footer {
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 3rem;
    flex-wrap: wrap;
  }
  .footer__top {
    order: 1;
  }
  .footer__left {
    order: 2;
  }
  .footer__right {
    order: 3;
  }
  .footer > div {
    width: 45%;
  }
  .footer__single > div {
    width: 100%;
    text-align: center;
  }
  div.footer__top {
    width: 100%;
  }
  div.footer__bottom {
    order: 4;
    width: 100%;
    font-size: 0.875em;
  }
  .footer__single > div.footer__right {
    margin-top: 3em;
  }
}

.social-icons {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.75rem;
}

.social-icons a svg {
  fill: currentColor;
  height: 1.5rem;
  width: 1.5rem;
}

.footer__nav a {
  margin-right: 0.5rem;
}

.footer .site-powered-by a {
  font-size: 1em;
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  text-decoration: none;
}

.footer .site-powered-by a span {
  flex-shrink: 0;
}

.footer .site-powered-by svg {
  height: 1.75em;
  fill: currentColor;
}
@media (max-width: 600px) {
  .footer .site-powered-by a {
    font-size: 0.85em;
  }
  .footer .site-powered-by svg {
    height: 1.5em;
  }
}
