/* =====================================
   GENERAL
===================================== */
html {
  scroll-behavior: smooth;
}

body {
  background-color: rgb(33, 37, 41);
}

h1,
p,
label {
  color: #fff;
}

section,
#podcast,
#about,
#michael {
  scroll-margin-top: 80px;
}

.brand-highlight {
  color: red;
}

/* =====================================
   HERO
===================================== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero > img {
  display: block;
  width: 100%;
  height: auto;
}

/* Desktop scroll cue is hidden by default so mobile remains unchanged. */
.hero-scroll-cue {
  display: none;
}

/* =====================================
   SOCIAL ICONS
===================================== */
.social-icons {
  position: absolute;
  right: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.65rem;
  margin: 0;
  list-style: none;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  color: #fff;
  font-size: 1.15rem;
  text-decoration: none;
  border-radius: 50%;
  transition: color 0.2s ease, background-color 0.2s ease,
    transform 0.2s ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  color: #fff;
  background-color: #dc3545;
  transform: translateY(-2px) scale(1.06);
  outline: none;
}

/* =====================================
   CONTACT FORM
===================================== */
.contact-card {
  background-color: #212529;
  border: 1px solid #dc3545;
  border-radius: 0.5rem;
}

/* =====================================
   DESKTOP CINEMATIC HERO
===================================== */
@media (min-width: 992px) {
  .hero {
    height: calc(100svh - 56px);
    min-height: 520px;
    background-color: #000;
  }

  .hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 24%;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  }

  .social-icons {
    z-index: 2;
  }

  .hero-scroll-cue {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 1.1rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
    transition: color 0.2s ease;
  }

  .hero-scroll-cue i {
    font-size: 1rem;
    animation: hero-bounce 1.8s ease-in-out infinite;
  }

  .hero-scroll-cue:hover,
  .hero-scroll-cue:focus-visible {
    color: #dc3545;
    outline: none;
  }
}

@keyframes hero-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue i {
    animation: none;
  }
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 576px) {
  .social-icons {
    right: 0.5rem;
    bottom: 0.5rem;
    gap: 0.15rem;
    padding: 0.35rem 0.45rem;
  }

  .social-icons a {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 1rem;
  }
}


/* =====================================
   NOW PLAYING / EPISODES PAGE
===================================== */
.episodes-page {
  min-height: 100vh;
}

.episodes-masthead {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(220, 53, 69, 0.22), transparent 42%),
    #111;
  border-bottom: 1px solid rgba(220, 53, 69, 0.45);
}

.episodes-masthead::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dc3545, transparent);
}

.episodes-masthead h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.episodes-intro {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: #dc3545;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.latest-episode-section {
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.latest-episode {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #181b1e;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.28);
}

.latest-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.75rem;
}

.latest-copy h2 {
  margin: 0.7rem 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.latest-copy > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.episode-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.episode-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  color: #fff;
  background: #dc3545;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.improv-badge {
  background: rgba(220, 53, 69, 0.16);
  border: 1px solid rgba(220, 53, 69, 0.6);
}

.episode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.episode-library {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 0.65rem;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
}

.section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.episode-card {
  display: flex;
  min-width: 0;
  background: #181b1e;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.85rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.episode-card:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 53, 69, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.episode-card-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: clamp(1.25rem, 3vw, 1.7rem);
}

.episode-card .episode-badge {
  margin-top: 0.85rem;
}

.episode-card h2 {
  margin: 0.7rem 0 0.8rem;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.episode-card p {
  flex-grow: 1;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.improv-callout {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(220, 53, 69, 0.2), transparent 32%),
    #111;
  border-top: 1px solid rgba(220, 53, 69, 0.3);
  border-bottom: 1px solid rgba(220, 53, 69, 0.3);
}

.improv-callout-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.improv-callout-inner > div {
  max-width: 760px;
}

.improv-callout h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
}

.improv-callout p:last-child {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.improv-icon {
  color: rgba(220, 53, 69, 0.7);
  font-size: clamp(3.5rem, 9vw, 7rem);
}

/* =====================================
   NOW PLAYING RESPONSIVE
===================================== */
@media (max-width: 991.98px) {
  .latest-episode {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 767.98px) {
  .episodes-masthead {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .latest-episode {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .latest-art {
    max-width: 420px;
    margin: 0 auto;
  }

  .latest-copy {
    padding: 0 0.25rem 0.5rem;
  }

  .episode-grid {
    grid-template-columns: 1fr;
  }

  .episode-actions .btn {
    flex: 1 1 100%;
  }

  .improv-callout-inner {
    align-items: flex-start;
  }

  .improv-icon {
    display: none;
  }
}

@media (max-width: 420px) {
  .episodes-masthead h1 {
    font-size: 2.45rem;
  }

  .latest-copy h2 {
    font-size: 1.8rem;
  }

  .episode-card-body {
    padding: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .episode-card {
    transition: none;
  }

  .episode-card:hover {
    transform: none;
  }
}


/* =====================================
   VIDEO STORE V3 — SHELF ORDER
   Desktop order: left-to-right, bottom-to-top
===================================== */
.shelf-year {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.shelf-year:first-of-type {
  margin-top: 1.5rem;
}

.shelf-year-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.shelf-year-heading h3 {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.shelf-year-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18));
}

.shelf-year-line:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,.18), transparent);
}

.video-shelf-stack {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.video-shelf-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 1.15rem;
}

.video-shelf-row::after {
  content: "";
  position: absolute;
  left: -.35rem;
  right: -.35rem;
  bottom: 0;
  height: 8px;
  border-radius: 2px 2px 6px 6px;
  background:
    linear-gradient(to bottom, #5b3a27 0 35%, #2e1c13 36% 100%);
  box-shadow:
    0 4px 10px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.13);
}

.tape-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  width: fit-content;
  margin-bottom: .35rem;
  color: #dc3545;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.featured-tape {
  margin-top: .85rem;
  margin-bottom: 0;
}

.episode-card h3 {
  margin: .6rem 0 .8rem;
  color: #fff;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  line-height: 1.18;
}

.episode-card {
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.store-open-banner {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(220,53,69,.16), transparent 30%),
    #17191b;
  border-top: 1px solid rgba(255,255,255,.08);
}

.store-open-inner {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.store-open-inner > i {
  flex: 0 0 auto;
  color: rgba(220,53,69,.78);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
}

.store-open-inner h2 {
  margin-bottom: .55rem;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
}

.store-open-inner p:last-child {
  margin-bottom: 0;
  color: rgba(255,255,255,.7);
}

/* On phones/tablets, conventional newest-to-oldest reading is easier.
   The CSS reverses the visual shelf stack per year without changing the
   underlying accessible document order. */
@media (max-width: 767.98px) {
  .video-shelf-stack {
    flex-direction: column;
  }

  .video-shelf-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .video-shelf-row::after {
    left: 0;
    right: 0;
  }

  .store-open-inner {
    align-items: flex-start;
  }

  .store-open-inner > i {
    display: none;
  }
}


/* =====================================
   VIDEO STORE V4 — PLATFORM BUTTON POLISH
===================================== */
.platform-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.platform-links a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.55rem;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.platform-links a i {
  flex: 0 0 1.35rem;
  width: 1.35rem;
  color: #fff;
  font-size: 1.12rem;
  text-align: center;
  transition: color 0.2s ease;
}

.platform-links a span {
  color: inherit;
  font-weight: 700;
}

.platform-links a:hover,
.platform-links a:focus-visible {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.07);
  border-color: rgba(220, 53, 69, 0.65);
  transform: translateX(4px);
  outline: none;
}

.platform-links a:hover i,
.platform-links a:focus-visible i {
  color: #dc3545;
}

@media (max-width: 767.98px) {
  .platform-links {
    gap: 0.95rem;
  }

  .platform-links a {
    min-height: 48px;
    padding: 0.78rem 0.9rem;
  }

  .platform-links a i {
    font-size: 1.18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-links a {
    transition: none;
  }

  .platform-links a:hover,
  .platform-links a:focus-visible {
    transform: none;
  }
}


/* =====================================
   VIDEO STORE V5 — NOW PLAYING FLOW
===================================== */
.episodes-masthead {
  padding-bottom: 0;
  border-bottom: 0;
}

.episodes-masthead::after {
  display: none;
}

.episodes-masthead > .container:first-child {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.episodes-masthead .latest-episode-section {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.episodes-masthead .latest-episode {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.featured-tape-badge {
  gap: 0.45rem;
}

.featured-to-shelves-divider {
  height: 1px;
  width: 100%;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(220, 53, 69, 0.35) 12%,
      #dc3545 50%,
      rgba(220, 53, 69, 0.35) 88%,
      transparent 100%
    );
  box-shadow: 0 0 18px rgba(220, 53, 69, 0.16);
}

#video-shelves {
  padding-top: clamp(3rem, 6vw, 5rem);
}

@media (max-width: 767.98px) {
  .episodes-masthead > .container:first-child {
    padding-bottom: 1.5rem;
  }

  .episodes-masthead .latest-episode-section {
    padding-bottom: 2.5rem;
  }

  .episodes-masthead .latest-episode {
    margin-top: 1rem;
  }

  #video-shelves {
    padding-top: 2.5rem;
  }
}


/* =====================================
   VIDEO STORE V6 — DESKTOP NOW PLAYING FIT
   Tightens the featured tape on shorter desktop screens
   without changing the mobile layout.
===================================== */
@media (min-width: 992px) {
  .episodes-masthead > .container:first-child {
    padding-top: clamp(2.6rem, 5vh, 4.5rem);
    padding-bottom: clamp(1rem, 2.5vh, 2rem);
  }

  .episodes-masthead h1 {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    line-height: 0.95;
  }

  .episodes-intro {
    max-width: 720px;
    margin-top: 0.75rem;
    line-height: 1.55;
  }

  .episodes-masthead .latest-episode-section {
    padding-bottom: clamp(2rem, 4vh, 3.5rem);
  }

  .episodes-masthead .latest-episode {
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-top: clamp(0.75rem, 2vh, 1.5rem);
    padding: clamp(1rem, 2vw, 1.6rem);
  }

  .latest-art {
    align-self: start;
  }

  .latest-art img {
    width: min(100%, 390px);
    max-height: 42vh;
    margin: 0 auto;
    object-fit: cover;
  }

  .latest-copy h2 {
    margin: 0.5rem 0 0.7rem;
    font-size: clamp(1.8rem, 3.1vw, 3rem);
    line-height: 1.02;
  }

  .latest-copy > p {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .episode-actions {
    gap: 0.5rem;
    margin-top: 0.9rem;
  }

  .episode-actions .btn-lg {
    padding: 0.55rem 0.85rem;
    font-size: 0.95rem;
  }

  .episode-details-grid {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .episode-detail-block {
    padding: 0.85rem 1rem;
  }

  .episode-detail-block ul,
  .episode-detail-block p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.45;
  }
}

/* Common laptop heights: compress a little more. */
@media (min-width: 992px) and (max-height: 850px) {
  .episodes-masthead > .container:first-child {
    padding-top: 1.8rem;
    padding-bottom: 0.6rem;
  }

  .episodes-masthead h1 {
    font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  }

  .episodes-intro {
    max-width: 680px;
    margin-top: 0.55rem;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .episodes-masthead .latest-episode-section {
    padding-bottom: 1.6rem;
  }

  .episodes-masthead .latest-episode {
    margin-top: 0.5rem;
    gap: 1.5rem;
    padding: 0.95rem;
  }

  .latest-art img {
    max-height: 34vh;
    width: min(100%, 320px);
  }

  .latest-copy h2 {
    margin: 0.4rem 0 0.55rem;
    font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  }

  .latest-copy > p {
    font-size: 0.91rem;
    line-height: 1.42;
  }

  .episode-meta {
    margin-top: 0.45rem;
    font-size: 0.75rem;
  }

  .episode-actions {
    margin-top: 0.65rem;
  }

  .episode-actions .btn-lg {
    padding: 0.45rem 0.7rem;
    font-size: 0.88rem;
  }

  .episode-details-grid {
    gap: 0.6rem;
    margin-top: 0.7rem;
  }

  .episode-detail-block {
    padding: 0.65rem 0.8rem;
  }

  .episode-detail-block ul,
  .episode-detail-block p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .detail-label {
    margin-bottom: 0.4rem;
    font-size: 0.72rem;
  }
}

/* Extra-short desktop/laptop browser windows. */
@media (min-width: 992px) and (max-height: 700px) {
  .episodes-masthead > .container:first-child {
    padding-top: 1.25rem;
    padding-bottom: 0.35rem;
  }

  .episodes-masthead h1 {
    font-size: 2.7rem;
  }

  .episodes-intro {
    max-width: 760px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .episodes-masthead .latest-episode {
    grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1.55fr);
  }

  .latest-art img {
    width: min(100%, 260px);
    max-height: 30vh;
  }

  .episode-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* V7 Mobile Featured Tape First */
@media (max-width: 767.98px) {
  .latest-episode {
    display: flex;
    flex-direction: column;
  }

  .latest-copy {
    order: 1;
  }

  .latest-art {
    order: 2;
    margin-top: 1.5rem;
  }

  .latest-art img {
    max-width: 280px;
    margin: 0 auto;
  }
}


/* =====================================
   FEATURED TAPE CLEANUP — SINGLE DETAILS PANEL
===================================== */
.featured-episode-details {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .featured-episode-details {
    max-width: 100%;
  }
}


/* =====================================
   SITE FOOTER
===================================== */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.footer-links-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.footer-link-group {
  min-width: 150px;
}

.footer-group-label {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
}

.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-icons a {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  padding: 0.4rem;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-icons a:hover,
.footer-icons a:focus-visible {
  color: #fff;
  opacity: 0.72;
  transform: translateY(-2px);
}

.return-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0.15rem 0 0.85rem;
}

.return-to-top:hover,
.return-to-top:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.82rem;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 575.98px) {
  .footer-links-wrap {
    gap: 1.35rem;
  }

  .footer-icons {
    gap: 0.7rem;
  }

  .footer-icons a {
    font-size: 1.1rem;
    padding: 0.48rem;
  }
}
