.theme--dark .section__decoration {
  background: center/cover no-repeat url("/images/coming_soon-black.svg");
}

.grid {
  display: grid;
  grid-gap: 30px;
}
.grid img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (min-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }
}
@media only screen and (min-width: 980px) {
  .grid__info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 980px) {
  .grid__info--center {
    justify-content: center;
  }
}
.grid__info-content {
  max-width: 500px;
  margin: 0 auto;
}
.grid__img {
  flex-shrink: 0;
  margin: 0 auto;
  max-width: 500px;
}
@media only screen and (min-width: 980px) {
  .grid__img {
    max-width: 100%;
    margin: 0;
  }
}
.grid__img--order {
  order: 1;
}
@media only screen and (min-width: 980px) {
  .grid__img--order {
    order: -1;
  }
}
.grid__img--first {
  order: -1;
}
@media only screen and (min-width: 980px) {
  .grid__img--first {
    order: 1;
  }
}
.grid__desktop {
  display: none;
}
@media only screen and (min-width: 980px) {
  .grid__desktop {
    display: block;
  }
}

.twitch__btn {
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 400px;
  padding: 3% 5%;
  border: 1px solid var(--border-primary);
  background-color: var(--bg-btn-primary);
  border-radius: 20px;
  transition: box-shadow 0.3s ease-in-out;
}
@media only screen and (min-width: 980px) {
  .twitch__btn {
    width: 100%;
    max-width: 100%;
  }
}
.twitch__btn:hover, .twitch__btn:focus-visible {
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
}
.twitch__link {
  transition: all 0.3s linear;
  color: primary;
  text-decoration: underline transparent;
}
.twitch__link:hover {
  color: primary;
  text-decoration: underline;
}

.section__button {
  margin-top: 1.5em;
}
.section__decoration {
  display: block;
  position: absolute;
  top: -13px;
  right: -14px;
  width: 128px;
  height: 128px;
  z-index: 1;
  background: center/cover no-repeat url("/images/coming_soon.svg");
}

.person {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  align-items: unset;
  max-width: 600px;
  margin: 25px auto 0;
}
@media screen and (min-width: 320px) {
  .person {
    font-size: calc(
            10px + 12 *
                ((100vw - 320px) / 1600)
        );
  }
}
@media screen and (min-width: 1920px) {
  .person {
    font-size: 22px;
  }
}
@media only screen and (min-width: 980px) {
  .person {
    max-width: 100%;
  }
}
.person__img {
  max-width: 25%;
  min-width: 75px;
  margin-right: 0.8em;
  align-self: flex-start;
  flex-shrink: 0;
}
@media only screen and (min-width: 980px) {
  .person__img {
    min-width: 150px;
    max-width: 33%;
  }
}
.person__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 100%;
}
.person__details {
  font-size: 9px;
}
@media screen and (min-width: 320px) {
  .person__details {
    font-size: calc(
            9px + 6 *
                ((100vw - 320px) / 1600)
        );
  }
}
@media screen and (min-width: 1920px) {
  .person__details {
    font-size: 15px;
  }
}
@media only screen and (min-width: 980px) {
  .person__details {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
}
.person__description {
  font-size: 12px;
  font-style: italic;
  margin-bottom: 15px;
}
@media screen and (min-width: 320px) {
  .person__description {
    font-size: calc(
            12px + 6 *
                ((100vw - 320px) / 1600)
        );
  }
}
@media screen and (min-width: 1920px) {
  .person__description {
    font-size: 18px;
  }
}
.person__highlighted {
  color: #f5782e;
}
.person__name {
  font-weight: 600;
}

.section__title + .section__button {
  margin-top: 0;
}
