body.page-socials {
  padding-bottom: var(--padding-bottom);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  body.page-socials {
    min-height: 100dvh;
    padding-bottom: 0;

    &::before {
      pointer-events: none;
      content: "";
      position: fixed;
      z-index: 1;
      inset: 0;
      background-image: var(--bg-image);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      filter: grayscale(100%);
      opacity: 0.2;
    }
  }
}

.socials {
  position: relative;
  z-index: 2;
  min-height: inherit;
}

.featured-video {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 3px solid #9b772f;
  transition: all 0.15s;
}

.featured-video img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.featured-video:hover {
  border-color: #fff;
}

.featured-video:hover img {
  filter: grayscale(100%);
}

.general-links {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.general-links .button-link {
  height: auto;
  min-height: 50px;
}

.social-media-block {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.networks__item-icon {
  width: 50px;
  height: 50px;
  border: 3px solid #8b631f;
  transition: all 0.15s;
}

.networks__item span {
  transition: all 0.15s;
}

.networks__item:hover .networks__item-icon {
  background-color: #231f20;
  color: #9b772f;
}

.networks__item:hover span {
  color: #fff;
}
