/**
 * @file
 * Spotlight styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.spotlight {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 73.0625rem) {
  .spotlight {
    flex-direction: column;
  }
}
.spotlight picture {
  display: inline-block;
  width: 48.8%;
}
@media screen and (max-width: 73.0625rem) {
  .spotlight picture {
    width: 100%;
  }
}
.spotlight picture img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.spotlight__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 51.2%;
  padding: 2rem 0 3rem 7%;
}
@media screen and (max-width: 73.0625rem) {
  .spotlight__content {
    width: 100%;
    padding: 2rem 0;
  }
}
.spotlight__content .spotlight__title {
  margin-bottom: 1.375rem;
}
.spotlight__content .spotlight__description p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #003366;
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 73.0625rem) {
  .spotlight__content .spotlight__description p {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
.spotlight__content .green-button {
  border-width: 1px;
}

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