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

/* 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,
figure,
blockquote,
dl,
dd {
  margin-block-end: 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;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  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-family: inherit;
  font-size: inherit;
}

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

.content-grid {
  --padding-inline: 1rem;
  --narrow-max-width: 640px;
  --content-max-width: 960px;
  --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;
}

.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;
}

:root {
  --color-white: white;
  --color-black: black;
}

body {
  background: var(--color-black);
  color: var(--color-white);
  margin: 1rem auto;
  line-height: 1.6;
  font-size: 1rem;
  font-family: "Spiegel", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1,
h2 {
  font-family: "Tabac Glam G4";
  text-transform: uppercase;
  letter-spacing: 2px;
}

header img {
  width: 50rem;
  margin: 4rem auto;
}

section {
  text-align: center;
  margin-bottom: 4rem;
}

.bkg {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100lvh;
  z-index: -1;
  background: url("./images/ARCN2_Insert_BG_01A.jpg") no-repeat center center;
  background-size: cover;
}

.episode h3 {
  font-style: italic;
  font-weight: lighter;
  margin-top: 2rem;
}

.episode p {
  margin-top: 0.5rem;
}

.bonus-features h3 {
  margin-top: 2rem;
  font-family: "Tabac Glam G4";
  font-weight: lighter;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.bonus-features ul {
  margin-top: 0.5rem;
  list-style: none;
  padding: 0;
}

#disc-four li {
  padding-block: 0.5rem;
}

#disc-four li:first-child {
  margin-top: 1.5rem;
}

.table {
  margin-bottom: 3rem;
  text-align: left;
}

.table dt::after {
  content: "";
  margin-right: 0.5rem;
}

.table dl {
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 1rem;
}

.table dd {
  margin: 0;
  font-size: 1rem;
}

.table dt {
  font-size: 0.75rem;
}

.table dl > div {
  margin: 0 0 0.5rem;
}

.table dd:not(:last-child)::after {
  content: "";
  margin-right: 0.5rem;
}

@media screen and (min-width: 18.875rem) {
  .table .span-2 {
    grid-column: span 2;
  }

  .table .span-2 div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.table p {
  text-align: center;
}

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

footer .copyright {
  text-align: center;
  max-width: 600px;
  margin-bottom: 1rem;
}

/*# sourceMappingURL=style.css.map */
