:root {
  --black: #202020;
  --white: #f2f2f2;
  --gray: #bababa;
  --dark-gray: #777;
  --main: #263650;
  --main-tinted: #2e3f58;
  --link: #1a6ce6;
  --link-visited: #663096;
  --highlight: var(--yellow);
  --highlight-shadow: #205e5f;
  --yellow: #ffc600;
  --teal: #15d7db;
  --red-accent: #bb0015;
  --serif: 'Kameron', serif;
  --sans: 'Poppins', sans-serif;
}

html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  background: var(--main);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--black);
  min-height: 100vh;
  min-width: 100vw;
  display: grid;
  grid-template-rows: min-content 1fr repeat(2, min-content);
  grid-template-areas:
    "header"
    "content"
    "cta"
    "footer";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
}

p {
  margin: 0;
}

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

a:focus,
a:hover {
  text-decoration: underline;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.07);
}

a:active {
  color: var(--highlight);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.27);
}

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

a:focus {
  outline: 1px dashed var(--main);
}

svg {
  fill: currentColor;
  pointer-events: none;
}

.italic {
  font-style: italic;
}

.container {
  margin: 0 3vw;
}

nav {
  background-color: var(--main);
  border-bottom: 2px solid var(--highlight);
  position: fixed;
  min-width: 100vw;
  z-index: 1;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

nav .container {
  display: grid;
  grid-template-areas: "nav-left nav-menu";
  justify-content: space-between;
}

.nav__logo {
  grid-area: nav-left;
  max-width: 75px;
  align-self: center;
  text-align: center;
  line-height: 0.9;
  margin: 3px 0;
}

.nav__logo a,
.nav__logo a:hover,
.nav__logo a:visited {
  color: var(--highlight);
  text-shadow: 1px 2px 0 var(--black);
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
}

.nav__menu {
  margin: 0;
  padding: 0;
  grid-area: nav-menu;
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(8, min-content);
  align-items: center;
  list-style: none;
}

#nav__button {
  grid-area: nav-menu;
  justify-self: end;
  border: none;
  padding: 10px;
  margin: 0;
  background-color: var(--main);
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.1em;
}

#nav__button:hover {
  cursor: pointer;
}

#nav__button:focus {
  outline: none;
}

.nav__menu li {
  display: flex;
}

.nav__menu a {
  display: block;
  padding: 15px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--white);
  border-top: 4px solid transparent;
}

.nav__menu li a:hover {
  background-color: var(--main-tinted);
  border-top: 4px solid var(--yellow);
  border-radius: 2px;
}

.nav__menu--current a {
  background-color: var(--main-tinted);
  border-top: 4px solid var(--yellow);
  border-radius: 2px;
}

.nav__menu a:focus {
  outline: 1px dashed var(--highlight);
}

.nav__menu svg {
  width: 18px;
  vertical-align: sub;
}

[aria-controls="menu-list"] {
  display: none;
}

header {
  padding-top: 58px;
  margin-bottom: 5vh;
  background-image: linear-gradient(
    to bottom,
    rgba(38, 54, 80, 0.95),
    rgba(38, 54, 80, 0.95)),
    url("/img/code-bg.jpg");
  background-size: cover;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  min-height: 87vh;
  color: var(--white);
  text-align: center;
  letter-spacing: 2.5px;
  grid-area: header;
  display: grid;
  grid-gap: 5px;
  grid-template-areas: "title" "headline" "player" "scroll";
  justify-items: center;
  align-items: center;
  position: relative;
}

header:after {
  content: "";
  position: absolute;
  top: 100%;
  border-top: 30px solid var(--highlight);
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-radius: 2px;
}

header h1 {
  grid-area: title;
  margin-top: 3vh;
  text-transform: uppercase;
  line-height: 75%;
  font-size: 5.5rem;
  color: var(--highlight);
  text-shadow: 2px 3px 3px var(--black);
  /* transform: translateY(-20px);
  transition: translateY 1s ease-out 1s; */
}

header h2 {
  grid-area: headline;
  padding: 0 15vw;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 130%;
  text-shadow: 0px 4px 4px var(--black);
}

header .press-play {
  grid-area: player;
  display: grid;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  padding: 1vh 2vw;
  margin: 0 25vw;
  box-shadow: 1px 2px 3px var(--black);
}

header .press-play h3 {
  font-weight: normal;
  letter-spacing: normal;
  font-size: 1.5rem;
}

header svg {
  grid-area: scroll;
  margin-bottom: 2vh;
}

main {
  padding-top: 58px;
  grid-area: content;
}

section {
  margin-bottom: 5vh;
}

.more__button {
  padding: 8px 10px;
  margin-top: 2px;
  border: none;
  border-radius: 2px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  /* text-transform: uppercase; */
  font-size: 1rem;
  font-weight: 100;
}

.more__button--light {
  background-color: var(--white);
  color: var(--main);
}

.more__button--dark {
  background-color: var(--main);
  color: var(--white);
}

.section__header {
  margin: 0 auto;
  padding: 20px;
  color: var(--white);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  font-size: 3em;
  text-transform: uppercase;
}

.section__header--primary {
  padding: 20px 20px 0 20px;
}

.section__header--secondary {
  padding: 0;
  font-family: var(--sans);
  font-size: 1.8em;
  font-weight: normal;
  text-transform: none;
}

.view-as-list {
  margin-bottom: 20px;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
}

.view-as-list a {
  margin: 0 0.5vw;
}

.view-as-list h3 {
  display: inline-block;
}

.view-as-list svg {
  margin: 0 10px;
  vertical-align: top;
  transform: rotate(-90deg);
  width: 40px;
  color: var(--white);
}

.content__box {
  margin: 0 10vw;
  background: var(--main-tinted);
  box-shadow: 2px 4px 4px var(--black);
  border-radius: 4px;
  color: var(--white);
  line-height: 150%;
  display: grid;
  grid-template-columns: 1fr 3vw;
  grid-template-rows: repeat(2, min-content) 2vh;
}

.content__box p {
  padding: 3vh 3vw 1vh 3vw;
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.content__box a {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  justify-self: end;
  align-self: start;
}

.archives {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
  padding: 2vh 2vw;
  background-color: var(--white);
  border-radius: 2px;
}

.archive__episode {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  grid-template-columns: 33% 1fr;
  grid-template-areas:
    "image title"
    "desc desc";
  border-radius: 1px;
  background-color: rgba(255,255,255,0.9);
  padding: 2vh 2vw;
}

.archive__img {
  grid-area: image;
}

.archive__meta {
  grid-area: title;
  padding: 5px 20px;
  align-self: center;
}

.archive__desc {
  grid-area: desc;
}

.episodes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  margin-bottom: 20px;
}

.episode {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 1px;
  align-items: start;
  background-color: rgba(255,255,255,0.9);
  padding: 3px;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}

.episode:hover {
  background-color: rgba(255,255,255,1);
}

.episode__img {
  width: 100%;
  border-radius: 2px;
}

.episode__details {
  display: grid;
  grid-template-rows: fit-content;
  justify-items: start;
  align-items: start;
  align-content: space-between;
  margin: 7px;
}

.episode__details a:visited {
  color: var(--main);
}

.episode__details a:last-child:visited {
  color: var(--gray);
}

.episode__title  {
  color: var(--black);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  margin: 0 0 5px 0;
}

.episode__desc,
.episode__date {
  margin: 5px 0;
}

.episode__date {
  font-weight: 100;
}

.episode__details .more__button {
  justify-self: end;
}

.category__boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  margin-bottom: 20px;
}

.border__box {
  background-color: var(--yellow);
  padding: 4px;
  border-radius: 1px;
}

.category__box {
  display: block;
  min-height: 107px;
  width: 100%;
  background-color: var(--white);
  color: var(--main);
  border: 2px solid var(--main);
  border-radius: 3px;
  padding: 3px;
  font-size: 2em;
  font-weight: 700;
  -webkit-transition: background-color 0.1s ease-out;
  transition: background-color 0.1s ease-out;
}

.category__box:hover,
.category__box:visited:hover {
  background-color: var(--main);
  color: var(--white);
  text-decoration: none;
}

.category__box:visited {
  color: var(--main);
}

.category__box:visited:active,
.category__box:active {
  color: var(--highlight);
}

.post,
.page {
  margin: 0 3vw;
  background-color: rgba(255,255,255,1);
  display: grid;
  grid-gap: 10px;
  grid-template-rows: auto;
}

.post__img {
  width: 100%;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  margin-bottom: 0;
}

.post__title,
.page__title  {
  margin: 5vh 1vw 0 1vw;
  color: var(--black);
  text-align: center;
}

.page__subtitle {
  margin: 0 auto;
  max-width: 75%;
  text-align: center;
}

.page__subtitle--emphasized {
  color: var(--red-accent);
}

.page__subtitle--deemphasized {
  color: var(--dark-gray);
}

.post__date {
  font-weight: 100;
  margin: 5px 0;
  text-align: center;
}

.post__content,
.page__content {
  padding: 3vh 7vw;
  line-height: 1.67;
  font-size: 20px;
}

.post__content p,
.page__content p {
  margin: 0 0 30px 0;
}

.post__player iframe,
.post__player.inactive h3 {
  max-width: 65%;
  margin: 0 auto;
  display: block;
}

.post__player.inactive h3 {
  padding: 1vh 2vw;
  text-align: center;
  color: var(--red-accent);
  border: 2px solid var(--red-accent);
  border-radius: 8px;
}

.post__content h4 {
  text-align: center;
  margin: 10vh 0;
}

.post__content ol li,
.post__content ul li {
  margin: 3vh 3vw;
}

.post__content img {
  display: flex;
  margin: 0 auto;
  max-width: 70vw;
}

hr {
  margin: 0 30px;
  border: 0;
  border-top: 1px solid var(--white);
}

.hr--short {
  margin: 0 25vw;
}

.hr--short--tall-margins {
  margin: 10vh 25vw 0vh;
}

.pager {
  padding: 0;
  margin: 20px 35px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  list-style: none;
}

.pager__button a {
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--main);
  color: white;
  padding: 10px;
  border-radius: 2px;
  -webkit-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.pager__button a:hover {
  background-color: var(--highlight);
  color: var(--black);
}

.pager__button a:active {
  background-color: var(--highlight-shadow);
  color: var(--white);
}

#share__header {
  margin: 5vh 0 2vh 0;
  text-align: center;
  font-family: var(--sans);
  text-transform: uppercase;
  transition: all 100ms ease-in-out;
}

#share__block .share__icons {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#share__block .share__icons li {
  list-style: none;
  margin: 2vh 2vw;
}

.share__icons a {
  display: block;
  color: var(--main);
  transition: all 100ms ease-in-out;
}

.share__icons a:hover {
  color: var(--highlight);
}

.share__icons svg {
  width: 30px;
}

.share__header--highlighted {
  transform: scale(1.5);
  letter-spacing: 2px;
  color: var(--main);
}

.share__svg--highlighted {
  transform: scale(1.5);
}

#search__form {
  margin-top: 5vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}

#search__form__group {
  position: relative;
}

#search__box {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 275px;
  border: none;
  border-bottom: 1px solid var(--highlight-shadow);
}

#search__box:focus {
  outline: none;
}

#search__form__group label {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

#search__box:focus ~ label,
#search__box:valid ~ label {
  top: -20px;
  font-size: 14px;
  color: var(--main);
}

.search__form--bar {
  position: relative;
  display: block;
  width: 275px;
}

.search__form--bar:before,
.search__form--bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: var(--main);
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.search__form--bar:before {
  left: 50%;
}

.search__form--bar:after {
  right: 50%;
}

#search__box:focus ~ .search__form--bar:before,
#search__box:focus ~ .search__form--bar:after {
  width: 50%;
}

.search__form--highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

#search__box:focus ~ .search__form--highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from { background:var(--highlight); }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:var(--highlight); }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:var(--highlight); }
  to 	{ width:0; background:transparent; }
}

#search__button {
  border: none;
  padding: 5px;
  margin-left: 2px;
  background: none;
  font-size: 30px;
}

#search__button:focus,
#search__button:hover {
  cursor: pointer;
  color: var(--link);
}

#search__button:focus {
  outline: 1px dotted var(--main);
}

#search__button:active {
  color: var(--highlight);
}

#search__term {
  color: var(--link);
  font-weight: 700;
}

#archive__table {
  border-collapse: collapse;
  padding: 0 20vw;
}

#archive__table tr:hover,
#archive__table tr:hover a {
  background-color: var(--main);
  color: var(--white);
}

#archive__table td {
  font-size: 1.0rem;
  vertical-align: top;
  border-bottom: 1px solid var(--white);
}

#archive__table tr .archive__table__date {
  font-size: 0.9rem;
  white-space: nowrap;
  padding-left: 5px;
}

.archive__table__link {
  padding-right: 5px;
  padding-left: 20px;
}

.subscribe {
  max-width: 90vw;
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.subscribe__on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px;
}

.subscribe__img {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  max-width: 200px;
}

/* .subscribe__img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
} */

.subscribe__img.inactive {
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
}

.subscribe_feed-url {
  text-align: center;
  padding-bottom: 6vh;
}

.contact__methods {
  padding: 0 10vw;
  margin-bottom: 5vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.contact__method {
  padding: 0 2vw;
  max-width: 30vw;
  display: grid;
  justify-items: center;
  align-items: start;
}

.contact__method a {
  font-size: 3em;
  color: var(--main);
}

.contact__method a:hover {
  text-shadow: 2px 2px 2px var(--main-tinted);
}

.contact__method p {
  text-align: center;
}

.contact__form-area {
  margin: 5vh 2vw;
  display: grid;
  grid-gap: 2vh;
  justify-content: center;
  justify-items: center;
  align-items: center;
}

.contact__method svg,
.contact__form-area svg {
  width: 50px;
  color: var(--main);
}

.contact__form-area p {
  text-align: center;
}

#contact-form {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-gap: 2vh;
}

.form__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#contact-form input,
#contact-form textarea {
  margin: 0 1vw;
  padding: 1vh 1vw;
  outline: 0;
  border: 0;
  border-radius: 2px;
  background-color: var(--white);
  font-family: var(--sans);
}

#contact-form textarea {
  height: 21vh;
  max-width: 85vw;
}

#contact-form button {
  margin: 0 auto;
  padding: 1vh 2vw;
  outline: 0;
  border: 0;
  border-radius: 2px;
  font-size: 0.8em;
  background-color: var(--main);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

#contact-form button:hover,
#contact-form button:focus {
  cursor: pointer;
  background-color: var(--gray);
  color: var(--main);
}

#contact-form input:focus,
#contact-form textarea:focus,
#mailing-list-form input:focus {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px var(--gray);
  outline: 0 none;
}

.cta {
  margin: 0;
  min-width: 100vw;
  grid-area: cta;
  background-color: var(--main-tinted);
  color: var(--white);
}

.cta .container {
  margin: 0 3vw;
  padding-top: 5vh;
  display: grid;
  grid-gap: 1vw;
  grid-template-columns: 1fr 1fr 1fr;
}

.cta h3 {
  font-family: var(--sans);
  padding: 0 1vw 2vh 1vw;
  text-shadow: 2px 3px 1px var(--main);
}

.cta h3 ~ * {
  padding-left: 2vw;
}

.cta p {
  margin-bottom: 3vh;
}

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

.cta__nav li {
  padding-bottom: 1vh;
}

.cta__nav a {
  text-transform: uppercase;
  color: var(--white);
}

.cta__nav .svg-search {
  width: 16px;
  vertical-align: sub;
}

.cta .subscribe {
  margin: 0;
  padding-left: 0;
}

.cta__subscribe img {
  max-width: 100px;
  margin: 1vh 1vw;
}

.cta a:focus,
.cta__nav a:focus,
.cta__subscribe .subscribe a:focus {
  outline: 1px dashed var(--highlight);
}

#mailing-list-form {
  display: flex;
  flex-wrap: nowrap;
  padding: 0 1vw 0 0;
}

#mailing-list-form input {
  padding: 1vh 1vw;
  outline: 0;
  border: 0;
  border-radius: 2px 0 0 2px;
  background-color: var(--white);
  font-family: var(--sans);
}

#mailing-list-form button {
  padding: 1vh 2vw;
  outline: 0;
  border: 0;
  border-radius: 0 2px 2px 0;
  font-family: var(--sans);
  margin-left: -4px;
  background-color: var(--main);
  color: var(--white);
  font-weight: 700;
}

#mailing-list-form button:hover,
#mailing-list-form button:focus {
  cursor: pointer;
  background-color: var(--gray);
  color: var(--main);
}

#mailing-list-form button:active,
#contact-form button:active {
  background-color: var(--highlight);
  color: var(--main);
}

.cta__mailing-list a {
  color: var(--gray);
  font-weight: bold;
}

footer {
  grid-area: footer;
  background-color: var(--main);
  border-top: 2px solid var(--highlight);
}

.footer__copyright {
  font-size: 14px;
  text-align: center;
  margin: 0;
  color: var(--gray);
}

.footer__copyright a,
.footer__copyright a:visited {
  color: var(--gray);
}

.footer__copyright a:hover,
.footer__copyright a:focus {
  color: var(--link);
}

.footer__copyright a:focus {
  outline: 1px dashed var(--highlight);
}

#toTopButton {
  display: none;
  position: fixed;
  bottom: 27px;
  right: 18px;
  z-index: 99;
  border: none;
  background-color: var(--highlight);
  cursor: pointer;
  padding: 3px;
  border-radius: 50%;
  box-shadow: 1px 2px 4px var(--main);
}

#toTopButton:hover {
  background-color: var(--white);
  bottom: 26px;
  right: 17px;
  box-shadow: 0px 1px 4px var(--main);
}

#toTopButton:active {
  background-color: var(--gray);
  bottom: 26px;
  right: 17px;
  box-shadow: none;
}

#toTopButton svg {
  transform: rotate(180deg);
  vertical-align: middle;
}

/* Hide elements visually AND technically */
.hidden {
  display: none;
}

/* Hide elements visually only, i.e. still read by screen readers */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (max-height: 450px) {
  header h1 {
    display: none;
  }
  header svg {
    height: 20px;
    width: 20px;
  }
}

@media (min-width: 1000px) {
  .container {
    margin: 0 10vw;
  }
  header h2 {
    padding: 0 20vw;
  }
  #archive__table {
    padding: 0 40vw;
  }
  .page,
  .post {
    margin: 0 15vw;
  }
  .post__content,
  .page__content {
    padding: 3vh 5vw;
    font-size: 20px;
  }
}

@media (max-width: 720px) {
  nav .container {
    display: block;
  }
  #nav__button {
    float: right;
  }
  [aria-controls="menu-list"] {
    display: block;
  }
  .nav__menu {
    max-height: 0;
    overflow: hidden;
    grid-template-columns: minmax(100px, 100vw);
    transform: rotateX(90deg);
    transition: all 0.5s;
  }
  .nav__menu li {
    border-top: 1px solid var(--main-tinted);
    font-weight: 100;
  }
  .nav__menu a {
    padding: 10px;
    border-bottom: 4px solid transparent;
}
  .nav__menu li a:hover {
    border-bottom: 4px solid var(--yellow);
  }

  .nav__menu--current a {
    border-bottom: 4px solid var(--yellow);
  }
  [aria-expanded="true"] ~ ul {
    max-height: 500px;
    transform: rotateX(0);
  }
  [aria-expanded="false"] .close {
    display: none;
  }
  [aria-expanded="true"] .close {
    display: inline-block;
  }
  [aria-expanded="true"] .open {
    display: none;
  }
  .post__content img {
    max-width: 85vw;
  }
  .contact__methods {
    display: grid;
  }
  .contact__method {
    padding: 2vh 0;
    max-width: 80vw;
  }
  .contact__form-area {
    margin: 5vh auto;
    max-width: 80vw;
  }
  .cta .container {
    margin: 0 10vw;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, min-content);
    justify-items: center;
  }
  .cta h3,
  .cta p,
  .cta__nav li {
    text-align: center;
  }
  .cta__mailing-list__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 500px) {
  header h1 {
    font-size: 4.5rem;
  }
  header h2 {
    font-size: 1.1rem;
    padding: 0 5vw;
  }
  header .press-play {
    margin: 0 2vw;
  }
  header .press-play h3 {
    font-size: 1.2rem;
  }
  .episodes {
    grid-template-columns: 1fr;
  }
  .archive__episode {
    grid-template-rows: repeat(3, min-content);
    grid-template-columns: 1fr;
    grid-template-areas: "image" "title" "desc";
    padding: 10px;
  }
  .archive__meta {
    padding: 0;
  }
  .category__box {
    font-size: 1.6em;
    min-height: 85px;
  }
  .page__title  {
    margin: 5vh 1vw 0 1vw;
  }
  .post__content,
  .page__content {
    padding: 1vh 5vw;
    font-size: 16px;
  }
  .post__content ol li,
  .post__content ul li {
    margin: 2vh 1vw;
  }
  .pager {
    margin: 5vh 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    grid-row-gap: 20px;
    justify-items: center;
    align-content: space-around;
  }
  .pager__button a {
    padding: 6px;
  }
  #share__block .share__icons li {
    margin: 1vh 7vw;
  }
  .share__icons svg {
    width: 25px;
  }
}
