@charset "UTF-8";
/* makes sizing simpler */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* remove default spacing */
/* force styling of type through styling, rather than elements */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
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;
}

/* dark mode user-agent-styles */
/* improves punctuation in supported browsers */
/* smoooooth scrolling since we use a lot of anchor tags to navigate */
html {
  color-scheme: dark light;
  hanging-punctuation: first last;
  scroll-behavior: smooth;
}

/* min body height */
body {
  min-height: 100svh;
  line-height: 1;
}

/* responsive images/videos */
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

/* improve readability with max-width on paragraphs and lists */
/* prevent orphans in supported browsers */
p,
li {
  text-wrap: pretty;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}

.screen-reader-text:focus {
  background-color: #f7f7f7;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #007acc;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.skip-link {
  left: -9999rem;
  top: 2.5rem;
  z-index: 999999999;
  text-decoration: underline;
}

.skip-link:focus {
  display: block;
  left: 6px;
  top: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: normal;
  padding: 15px 23px 14px;
  z-index: 100000;
  right: auto;
}

.visually-hidden:not(:focus):not(:active),
.form-allowed-tags:not(:focus):not(:active) {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* 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;
  }
}
:root {
  --color-gold: #FECF4E;
  --color-ghibli-blue: #2495D4;
  --color-primary: var(--color-gold);
  --color-secondary: var(--color-ghibli-blue);
  --color-black: #151515;
  --color-gray-10: #1F1F1F;
  --color-gray-25: #323232;
  --color-gray-50: #7C7C83;
  --color-gray-75: #b0b0bb;
  --color-white: #FFFFFF;
}

:root {
  --font-size--h1: 2.027rem;
  --font-size--h2: 1.802rem;
  --font-size--h3: 1.602rem;
  --font-size--h4: 1.424rem;
  --font-size--h5: 1.266rem;
  --font-size--h6: 1.125rem;
  --font-size--p: 1rem;
  --font-size--bigger: var(--font-size--h5);
  --font-size--big: var(--font-size--h6);
  --font-size--small: 0.889rem;
  --font-size--smaller: 0.79rem;
}

h1 {
  font-size: var(--font-size--h1);
}

h2 {
  font-size: var(--font-size--h2);
}

h3 {
  font-size: var(--font-size--h3);
}

h4 {
  font-size: var(--font-size--h4);
}

h5 {
  font-size: var(--font-size--h5);
}

h6 {
  font-size: var(--font-size--h6);
}

/* Improved heading in supported browsers */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  font-weight: 500;
}

big {
  font-size: var(--font-size--big);
}

small,
sup,
sub {
  font-size: var(--font-size-small);
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

dd {
  margin-left: 20px;
}

kbd,
tt {
  font-family: courier;
  font-size: 12px;
}

ins {
  text-decoration: underline;
}

del,
strike,
s {
  text-decoration: line-through;
}

dt {
  font-weight: bold;
}

address,
cite,
var {
  font-style: italic;
}

pre {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

strong {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

.wp-block-image {
  margin-bottom: 2rem;
}
.wp-block-image img {
  max-height: 30rem;
  width: auto;
  margin: 0 auto;
}

h2.wp-block-heading {
  font-size: 1.5rem;
}

.wp-block-separator {
  margin: 2rem 0;
  border-top: 1px solid var(--color-primary);
  max-width: 6rem;
}

.wp-block-embed {
  margin-block: 2rem;
  border-radius: 0.25rem;
  overflow: hidden;
}

.display-inline-block {
  display: inline-block;
}

.d-none {
  display: none;
}

.hidden-sm-down {
  display: none;
}
@media screen and (min-width: 48rem) {
  .hidden-sm-down {
    display: initial;
  }
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: "Matter", Arial, Helvetica, sans-serif;
  font-weight: 300;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

q {
  display: inline;
  font-style: italic;
}

q:before {
  content: '"';
  font-style: normal;
}

q:after {
  content: '"';
  font-style: normal;
}

.button, input[type=submit] {
  background-color: var(--color-ghibli-blue);
  border: 0.0125rem solid var(--color-ghibli-blue);
  border-radius: 0.25rem;
  color: var(--color-white);
  cursor: pointer;
  display: inline-block;
  font-size: var(--font-size--smaller);
  font-weight: 500;
  height: 2.5rem;
  letter-spacing: 0.1rem;
  line-height: 2.5rem;
  padding: 0 1rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.2s ease background-color, 0.2s ease color;
  white-space: nowrap;
  position: relative;
  text-shadow: none;
}
.button:hover, input[type=submit]:hover {
  background-color: var(--color-white);
  color: var(--color-ghibli-blue);
}

textarea,
input[type=text],
input[type=button],
input[type=submit],
input[type=reset],
input[type=search],
input[type=password] {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  appearance: textfield;
}

input,
input[type=text],
input[type=search],
input[type=password],
select {
  background-color: var(--color-dark-gray);
  border: 0.125rem solid var(--color-light-gray);
  border-radius: 0.25rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: 0.2s ease all;
  white-space: nowrap;
}
input:hover, input:focus,
input[type=text]:hover,
input[type=text]:focus,
input[type=search]:hover,
input[type=search]:focus,
input[type=password]:hover,
input[type=password]:focus,
select:hover,
select:focus {
  border-color: var(--color-white);
  color: var(--color-white);
}

figcaption {
  font-size: var(--font-size--smaller);
  padding-block: 0.5rem;
  opacity: 0.5;
}

a {
  text-decoration-skip-ink: auto;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

a:not(.button) {
  color: var(--color-white);
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 2px;
}

.content-grid {
  --padding-inline: 1rem;
  --narrow-max-width: 640px;
  --content-max-width: 1120px;
  --breakout-max-width: 1280px;
  --content-size: calc((var(--content-max-width) - var(--narrow-max-width)) / 2);
  --breakout-size: calc((var(--breakout-max-width) - var(--content-max-width)) / 2);
  display: grid;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-size)) [content-start] minmax(0, var(--content-size)) [narrow-start] min(100% - var(--padding-inline) * 2, var(--narrow-max-width)) [narrow-end] minmax(0, var(--content-size)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}

.content-grid > :not(.breakout, .full-width),
.full-width > :not(.breakout, .full-width) {
  grid-column: content;
}

.content-grid > .narrow {
  grid-column: narrow;
}

.content-grid > .breakout {
  grid-column: breakout;
}

.content-grid > .full-width {
  grid-column: full-width;
  display: grid;
  grid-template-columns: inherit;
}

/**************************\
  Basic Modal Styles
\**************************/
.modal {
  position: relative;
  z-index: 999;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #1F1F1F;
  max-width: 640px;
  max-height: 100vh;
  border-radius: 0.5rem;
  box-sizing: border-box;
  overflow-y: auto;
}
@media screen and (min-width: 45rem) {
  .modal__container {
    max-height: calc(100vh - 8rem);
  }
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-gold);
  padding: 1rem;
}

.modal__title {
  font-weight: 600;
  font-size: var(--font-size--h3);
  color: var(--color-black);
  box-sizing: border-box;
}
.modal__title img {
  height: 3rem;
}

.modal__close {
  background: transparent;
  border: 0;
  height: 3rem;
  width: 3rem;
  font-size: var(--font-size--bigger);
  color: var(--color-black);
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  color: var(--color-white);
  padding: 2rem;
}
.modal__content h3 {
  color: var(--color-gold);
  font-size: var(--font-size--h5);
  margin-bottom: 1rem;
}
.modal__content b {
  font-weight: 500;
}
.modal__content p {
  font-size: var(--font-size--small);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.modal__footer {
  margin: 0 2rem 2rem;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

body {
  background-color: var(--color-black);
}

/* Nav Bar */
#primary-header {
  position: sticky;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
}

#primary-header .content {
  height: 4.5rem;
  justify-content: space-between;
}

#primary-navigation__button {
  background-color: var(--color-black);
  border: 0.0125rem solid var(--color-black);
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}

#primary-navigation__button svg {
  height: 1rem;
}

#primary-navigation__button path {
  fill: white;
}

#primary-navigation__button:hover {
  background-color: var(--color-ghibli-blue);
  border-color: var(--color-ghibli-blue);
}

#primary-navigation {
  background-color: var(--color-black);
  position: fixed;
  z-index: 98;
  transform: translateY(0);
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s transform;
  border-bottom: 0px solid var(--color-gold);
  border-left: 0px solid var(--color-gold);
  top: 4rem;
  bottom: 0;
  right: 0;
  transform: translateX(100%);
  width: 240px;
}

#primary-navigation.is-active {
  transform: translateX(0);
  border-left-width: 2px;
}

#primary-navigation ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
  padding: 1rem;
  list-style: none;
  gap: 1rem;
}

#primary-navigation ul .button {
  background-color: var(--color-black);
  border: 0.0125rem solid var(--color-black);
  color: white;
  font-size: 1rem;
}

#primary-navigation ul .button:hover {
  color: var(--color-gold);
}

@media screen and (min-width: 960px) {
  #primary-navigation__button {
    display: none;
  }
  #primary-navigation {
    position: sticky;
    height: 4.5rem;
    inset: auto;
    top: 0;
    width: 100%;
    transform: translate(0);
  }
  #primary-navigation ul {
    flex-direction: row;
    align-items: center;
  }
  #primary-navigation.is-active {
    transform: translateY(4rem);
    border-bottom-width: 2px;
    border-left-width: 0;
  }
}
/* Footer */
#primary-footer {
  background-color: var(--color-ghibli-blue);
  color: white;
  padding: 4rem 0;
  font-weight: 300;
}

#primary-footer a {
  color: white;
  text-decoration: none;
}

#primary-footer .site-logos {
  display: flex;
  margin-bottom: 2rem;
  gap: 2rem;
  justify-content: center;
}

#primary-footer .site-logos img {
  height: 4rem;
}

#primary-footer .site-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

#primary-footer .sign-up-form {
  text-align: center;
}

#primary-footer .sign-up-form h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

#primary-footer .social-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
  font-size: 2rem;
  margin: 2rem;
  padding: 0;
}

#primary-footer .site-information {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  font-size: 12px;
}

#primary-footer .site-information .copyright-list {
  text-transform: uppercase;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.5rem;
  gap: 0 1.2rem;
  justify-content: center;
}

.body-grid {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 65rem) {
  .body-grid {
    grid-template-columns: 1fr 350px;
  }
}

.poster-carousel {
  background-color: var(--color-gold);
  padding-block: 1rem;
  margin-block: 1rem;
}
.poster-carousel .card-content {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (min-width: 45rem) {
  .poster-carousel .card-content {
    gap: 1rem;
  }
}
@media screen and (min-width: 70rem) {
  .poster-carousel .card-content {
    grid-template-columns: repeat(8, 1fr);
  }
}
.poster-carousel .poster-item img {
  border-radius: 0.25rem;
  border: 0.125rem solid var(--color-white);
}

.featured-title .about {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 40rem) {
  .featured-title .about {
    grid-template-columns: 1fr 0.5fr;
  }
}
.featured-title .about .synopsis .metadata ul {
  color: var(--color-gray-75);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--font-size--smaller);
  gap: 1rem;
}
.featured-title .about .poster img {
  border-radius: 0.5rem;
  min-width: 12rem;
}
.featured-title .statements {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 65rem) {
  .featured-title .statements {
    grid-template-columns: 1fr 1fr;
  }
}

.statement .attribution {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.statement .author {
  font-size: var(--font-size--big);
  font-weight: 500;
}
.statement .date {
  font-size: var(--font-size--small);
}
.statement cite {
  font-size: var(--font-size--smaller);
  color: var(--color-gray-50);
}

.card {
  background-color: var(--color-gray-10);
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.card--gold {
  background-color: var(--color-gold);
  color: var(--color-black);
}
.card h3 {
  color: var(--color-gold);
}
.card p {
  line-height: 1.25rem;
}
.card blockquote {
  line-height: 1.5rem;
}
.card .card-title {
  font-size: var(--font-size--h6);
  margin-bottom: 1rem;
  font-weight: 500;
}
.card .card-content p {
  line-height: 1.25rem;
}
.card .card-content small.legal {
  display: block;
  margin-top: 1rem;
  font-size: var(--font-size--smaller);
  color: var(--color-gray-50);
}
.card .card-content small.legal a {
  color: var(--color-gray-50);
}
.card .card-details {
  font-size: var(--font-size--small);
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

section .section-title {
  font-size: var(--font-size--h6);
  margin-bottom: 1rem;
  font-weight: 600;
}
section .section-content p {
  line-height: 1.25rem;
}

.billboard {
  background-color: var(--color-black);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-block: 1rem;
  position: relative;
}
.billboard .details {
  background-color: var(--color-black);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.billboard .details .date {
  font-size: var(--font-size--p);
  color: var(--color-gold);
  font-weight: 500;
  text-align: center;
}
.billboard .details .title-treatment img,
.billboard .details .title-treatment svg {
  margin: 0 auto;
  max-height: 8rem;
}
.billboard .details .actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.billboard .details .actions a {
  width: 100%;
}
@media screen and (min-width: 36rem) {
  .billboard .details .actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.metadata .synopsis {
  margin-bottom: 1rem;
}

@media screen and (min-width: 45rem) {
  .billboard .overlay {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0) 50%);
    position: absolute;
    inset: 0;
  }
  .billboard .details {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: transparent;
    margin-inline: 0;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    align-items: flex-start;
  }
  .billboard .details .actions a {
    width: auto;
  }
}
@media screen and (min-width: 65rem) {
  .metadata {
    display: flex;
    flex-direction: column;
  }
  .metadata .synopsis {
    height: 100%;
  }
  .billboard {
    margin-bottom: 0rem;
  }
  .billboard .image img {
    aspect-ratio: 2.5;
    width: 100%;
    object-fit: cover;
  }
}
.rating-block {
  border-radius: 0.25rem;
  display: inline-flex;
  overflow: hidden;
}
.rating-block .rating {
  background-color: var(--color-black);
  color: var(--color-white);
  height: 64px;
  width: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size--h5);
  font-weight: 500;
  text-transform: uppercase;
}
.rating-block .reasons {
  background-color: var(--color-gold);
  color: var(--color-black);
  display: flex;
  align-items: center;
  font-size: var(--font-size--small);
  font-weight: 500;
  padding-inline: 1rem;
}

main {
  margin-bottom: 1rem;
}
main .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 70rem) {
  main .two-column {
    display: flex;
    gap: 1rem;
  }
  main .two-column .schedule {
    width: 100%;
  }
  main .two-column .sidebar {
    max-width: 40%;
  }
}

.schedule .card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block: 1rem;
}

.schedule-item {
  display: flex;
  gap: 1rem;
}
.schedule-item:not(:last-child) {
  padding-bottom: 4rem;
}
.schedule-item .poster {
  display: none;
}
.schedule-item .poster img {
  border-radius: 0.25rem;
  max-width: 10rem;
}
@media screen and (min-width: 40rem) {
  .schedule-item .poster {
    display: block;
  }
}
.schedule-item .card-tag {
  background-color: var(--color-gold);
  color: var(--color-black);
  font-size: var(--font-size--smaller);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  border-radius: 0.25rem;
  padding: 0.25rem 0.35rem;
  margin-bottom: 0.5rem;
}
.schedule-item .card-title {
  font-size: var(--font-size--h5);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.schedule-item .card-subtitle {
  font-size: var(--font-size--small);
  color: var(--color-gray-50);
}
.schedule-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.schedule-item__showtimes__section {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.schedule-item__showtimes__section h3 {
  font-size: var(--font-size--p);
  margin-bottom: 0.5rem;
}
.schedule-item__showtimes__section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: var(--font-size--small);
}

details {
  font-size: var(--font-size--small);
}
details summary {
  cursor: pointer;
  font-size: var(--font-size--p);
  font-weight: 500;
  position: relative;
}
details[open] summary {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sidebar aside {
  font-size: var(--font-size--small);
}

.about-ghibli-fest {
  background-color: var(--color-gold);
  color: var(--color-black);
  padding: 2rem;
}/*# sourceMappingURL=style.css.map */