/**
 * Awards Timeline — ships as style.css.
 *
 * From theme root (rsi-rcm): `npm run compile:blocks`.
 *
 * @package Rsi_Rcm
 */
/* stylelint-disable-next-line wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-disable wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-enable wrap-rem-on-px/wrap-rem-on-px */
/*
USAGE:
font-size: fluid(12, 62); : from rem(12)@380px to  rem(62)@1440px
gap: fluid(10, 33, 992);  : from rem(10)@991px to  rem(33)@1440px
margin-right: fluid(32, 65, 320, 2560);  : from rem(32)@320px to  rem(65)@2560px
*/
/*
AUTOFILL

USAGE:
@include mixin.autofill(background-color, text-color);
@include mixin.autofill;

Note: Call this mixin in the wrapper or container to where you intend to manipulate the
      default chrome autofill styles for input, textarea and select elements.
*/
/* stylelint-disable */
/* stylelint-enable */
/**
 * Awards Timeline — ships as style.css.
 *
 * From theme root (rsi-rcm): `npm run compile:blocks`.
 *
 * @package Rsi_Rcm
 */
.l-h1-v1 {
  font-size: 3.8125rem;
  font-weight: 700;
  line-height: 1;
}

.l-h1-v2 {
  font-size: 3.3125rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width:1199px) {
  .l-h1-v2 {
    font-size: 8.4375rem;
    font-weight: 700;
    line-height: 1;
  }
}
.l-h2-v1 {
  font-size: 2.4375rem;
  font-weight: 400;
  line-height: 1.2;
}

@media screen and (min-width:1199px) {
  .l-h2-v1 {
    font-size: 3.8125rem;
    font-weight: 400;
    line-height: 1;
  }
}
.l-h2-v2 {
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (min-width:1199px) {
  .l-h2-v2 {
    font-size: 3.8125rem;
    font-weight: 500;
    line-height: 1;
  }
}
.l-h2-v3 {
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (min-width:1199px) {
  .l-h2-v3 {
    font-size: 3.0625rem;
    font-weight: 700;
    line-height: 1.2;
  }
}
.l-h3 {
  font-size: 2.4375rem;
  font-weight: 700;
  line-height: 1.2;
}

.l-h4 {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (min-width:1199px) {
  .l-h4 {
    font-size: 1.9375rem;
    font-weight: 700;
    line-height: 1.2;
  }
}
.l-body-lg {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.l-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.l-body-sm {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
}

.l-button {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03rem;
}

.l-eyebrow {
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1.2;
}

section.section.section--awards-timeline {
  background: var(--white);
  padding: 5rem 0;
}
@media screen and (min-width:1199px) {
  section.section.section--awards-timeline {
    padding: 8.4375rem 0 7.5rem;
  }
}
section.section.section--awards-timeline .rsi.awards-timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 65.5rem;
  margin-inline: auto;
}
@media screen and (min-width:1199px) {
  section.section.section--awards-timeline .rsi.awards-timeline {
    gap: 3.8125rem;
  }
}
section.section.section--awards-timeline .awards-timeline__header {
  text-align: center;
}
section.section.section--awards-timeline .awards-timeline__heading {
  margin: 0;
  color: var(--medium-purple);
  font-size: 2.4375rem;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width:1199px) {
  section.section.section--awards-timeline .awards-timeline__heading {
    font-size: 3.8125rem;
    font-weight: 400;
    line-height: 1;
  }
}
section.section.section--awards-timeline .awards-timeline__content {
  --default-gap: 40px;
  --desktop-gap: 88px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (min-width:1199px) {
  section.section.section--awards-timeline .awards-timeline__content {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--desktop-gap);
  }
}
section.section.section--awards-timeline .awards-timeline__featured {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 2rem 1.75rem;
  border-radius: 1rem;
  background: #f9f9f9;
}
@media screen and (min-width:1199px) {
  section.section.section--awards-timeline .awards-timeline__featured {
    width: calc(55.5% - var(--desktop-gap) / 2);
    padding: 2.5rem;
  }
}
section.section.section--awards-timeline .awards-timeline__featured-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  max-width: 5.5rem;
}
section.section.section--awards-timeline .awards-timeline__featured-logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 5.5rem;
  object-fit: contain;
}
section.section.section--awards-timeline .awards-timeline__featured-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
section.section.section--awards-timeline .awards-timeline__featured-title {
  margin: 0;
  color: var(--medium-purple);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.2;
}
section.section.section--awards-timeline .awards-timeline__featured-description {
  margin: 0;
  color: #4c4c4c;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  line-height: 1.2;
}
section.section.section--awards-timeline .awards-timeline__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}
@media screen and (min-width:1199px) {
  section.section.section--awards-timeline .awards-timeline__list {
    width: calc(50.2% - var(--desktop-gap) / 2);
    padding: 0.1875rem 2rem 0 0;
  }
}
section.section.section--awards-timeline .awards-timeline__item {
  padding-left: 1.5rem;
  position: relative;
}
section.section.section--awards-timeline .awards-timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.1875rem;
  display: block;
  width: 0.125rem;
  height: 100%;
  background: var(--light-purple);
  opacity: 0.95;
}
section.section.section--awards-timeline .awards-timeline__item-label {
  display: block;
  color: #4c4c4c;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  line-height: 1.2;
}

/*# sourceMappingURL=style.css.map */
