:root {
  --color-primary: #2C2E35;
  --color-primary-inverted: #fff;
  --background-color-base: #fff;
  --background-color-base-inverted: #2C2E35;
  --color-base: #2C2E35;
}

.half-width-spotlight {
  position: relative;
  align-items: center;
}
.half-width-spotlight__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(300px, auto) minmax(300px, auto);
}
@media (min-width: 992px) {
  .half-width-spotlight__wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    min-height: 500px;
  }
}
.half-width-spotlight__media {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.half-width-spotlight__content {
  background-color: var(--background-color-base-inverted);
  color: var(--color-primary-inverted);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1200px) {
  .half-width-spotlight__content {
    padding: 100px 60px;
  }
}
@media (min-width: 1400px) {
  .half-width-spotlight__content__inner {
    width: 80%;
    margin: 0 auto;
  }
}
.half-width-spotlight__content .widget__body {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .half-width-spotlight__content .widget__body {
    margin-bottom: 40px;
  }
}
.half-width-spotlight__content .widget__links {
  justify-content: flex-start;
}
.half-width-spotlight__content a:not(.play-button) {
  display: inline-flex;
  padding: 14px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7.5px;
  text-decoration: none;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "GalanoGrotesque-Bold", sans-serif;
  transition: 0.25s ease;
  background: var(--background-color-base);
  color: var(--color-primary);
}
.half-width-spotlight__content a:not(.play-button) {
  font-size: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .half-width-spotlight__content a:not(.play-button) {
    font-size: calc(16px + (2 * (100vw - 390px) / (1050)));
  }
}
@media (min-width: 1440px) and (max-width: 2000px) {
  .half-width-spotlight__content a:not(.play-button) {
    font-size: calc(18px + ((100vw - 1440px) * (18 / 1440)));
  }
}
@media (min-width: 2000px) {
  .half-width-spotlight__content a:not(.play-button) {
    font-size: calc(18px + ((2000px - 1440px) * (18 / 1440)));
  }
}
@media (min-width: 768px) {
  .half-width-spotlight__content a:not(.play-button) {
    padding: 24px 32px;
    border-radius: 10px;
  }
}
.is-tabbing .half-width-spotlight__content a:not(.play-button):focus {
  background: var(--background-color-base-inverted);
  color: var(--color-primary-inverted);
}
@media (hover: hover) {
  .half-width-spotlight__content a:not(.play-button):hover {
    background: var(--background-color-base-inverted);
    color: var(--color-primary-inverted);
  }
}
/*# sourceMappingURL=half-width-spotlight.css.map */