*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  background: #0d0d0d;
  color: #ddd;
  font-size: 17px;
  line-height: 1.65;
}

/* ── Hero ── */
.hero {
  text-align: center;
}

.hero-img {
  margin: auto;
  margin-top: 2vh;
  max-height: 70vh;
  max-width: 100%;
  display: block;
  object-position: top;
  filter: grayscale(30%) brightness(0.7);
}

.hero-inner {
  position: relative;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ee2323;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgb(0, 0, 0);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1rem;
  color: #aaa;
}

/* ── Issue Sections ── */

.section {
  margin: auto;
}

#youtube-embed {
  max-width: 900px;
  margin: 3rem auto 4rem;
  padding: 0 1.25rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.issue {
  padding: 2.5rem 1.25rem;
  border-bottom: 1px solid #1e1e1e;
  margin-top: 3rem;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.issue-img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(100%);
}

h2 {
  font-size: 3rem;
  line-height: 1.2;
  color: #ee2323;
  margin-bottom: 0.75rem;
}

.issue-text p {
  margin-bottom: 0.75rem;
}
.issue-text p:last-child {
  margin-bottom: 0;
}

blockquote {
  border-left: 3px solid #ee2323;
  padding: 0.5rem 1rem;
  margin: 0.75rem 0 0;
  font-style: italic;
  color: #777;
}

.issues-list {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.issues-list li {
  margin-bottom: 0.4rem;
}

/* ── Closing ── */
.closing {
  padding: 3.5rem 1.25rem;
  border-top: 1px solid #1e1e1e;
}

.closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.closing-img {
  width: 100%;
  max-width: 400px;
  display: block;
  object-fit: cover;
  filter: grayscale(100%);
}

.closing-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ee2323;
  margin-bottom: 0.5rem;
}

.closing-text h2 {
  color: #fff;
}

.closing-text p {
  color: #888;
}

/* ── Footer ── */
footer {
  color: #fff;
  text-align: center;
  margin: auto;
  margin-top: 19rem;
  padding: 1.5rem 1rem;
  font-weight: 700;
  font-size: 2rem;
  max-width: 100rem;
}

footer a {
  color: #fff;
}

.footer-img {
  width: 80px;
  opacity: 0.25;
  display: block;
  margin: 0 auto 0.75rem;
  filter: grayscale(100%);
}

/* ── Desktop ── */
@media (min-width: 680px) {
  .hero h1 {
    font-size: 5rem;
    margin-top: -40vh;
    margin-bottom: 40vh;
  }

  .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .issue-img {
    flex: 0 0 360px;
    width: 360px;
    height: 360px;
  }

  .issue-text {
    flex: 1;
  }

  .issue.alt .container {
    flex-direction: row-reverse;
  }

  .closing-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .closing-img {
    flex: 0 0 380px;
    width: 380px;
  }

  .closing-text {
    flex: 1;
  }
}
