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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
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,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

/* 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;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background-color: #1a1b1e;
  color: #eee;
  font-family: Arial, Helvetica, sans-serif;
  padding: 2rem;
}

.button-9 {
  appearance: button;
  backface-visibility: hidden;
  background-color: #405cf5;
  border-radius: 6px;
  border-width: 0;
  box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset,
    rgba(50, 50, 93, 0.1) 0 2px 5px 0, rgba(0, 0, 0, 0.07) 0 1px 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue",
    Ubuntu, sans-serif;
  font-size: 100%;
  height: 44px;
  line-height: 1.15;
  margin: 12px 0 0;
  outline: none;
  overflow: hidden;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-transform: none;
  transform: translateZ(0);
  transition: all 0.2s, box-shadow 0.08s ease-in;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  display: flex;
  align-items: center;
  margin: auto;
}

.button-9:disabled {
  cursor: default;
}

a {
  color: #405cf5;
  text-decoration: none;
}

.button-9:focus {
  box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset,
    rgba(50, 50, 93, 0.2) 0 6px 15px 0, rgba(0, 0, 0, 0.1) 0 2px 2px 0,
    rgba(50, 151, 211, 0.3) 0 0 0 4px;
}

.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.podcast-list > li > a {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #eee;
  outline: solid 1px #eee;
  border-radius: 0.5rem;
  width: 180px;
  transition: 0.3s;
  text-decoration: none;
}

.podcast-list > li > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline-color: #fff;
}

.podcast-list > li > a:active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ddd;
  outline-color: #ddd;
  transform: scale(0.98);
}

.podcast-list > li > a > span {
  text-align: center;
  width: 100%;
}

.episodes {
  margin: 1rem 0;
}

.episodes > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: solid 1px #aaa;
  padding: 1.5rem 1rem;
}

.episodes > div > a {
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
}
