.programs-slider {
  margin-bottom: 4em;
}

.featured-program {
  padding: 1em 2em;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--box-shadow-card);
  border-radius: var(--border-radius-large);
}

.featured-program--image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1em auto;
  mix-blend-mode: multiply;
  display: grid;
  align-items: center;
}

.featured-program--title {
  display: block;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  font-size: 1.25em;
  margin: 1em 0 0.5em 0;
  line-height: 1.25;
}
.featured-program--title:visited {
  color: var(--color-secondary);
}

.featured-program--title:hover {
  font-weight: var(--font-weight-bold);
}

.featured-program--excerpt {
  font-size: 0.8em;
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  margin-bottom: 1em;
}

.program-value-chevron {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.program-value-chevron {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.program-value-chevron .points-value {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  min-width: 100px;
  display: block;
  font-size: 1.5em;
}

.program-value-chevron .points-value-text {
  font-size: 0.7em;
}

/* === Program list === */
.program-list {
  margin-bottom: 4em;
  background: #fff;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}
.program-list > div {
  border-bottom: 1px solid var(--color-border);
}
.program-list > div:nth-child(even) {
  background: var(--color-light-bg);
}

.program-list--row {
  display: block;
  padding: 1.5em;
}

.program-list--row:last-child {
  border-bottom: none;
}

.program-list--image {
  max-width: 100px;
  max-height: 100px;
  padding: 1em;
  box-sizing: content-box;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.program-list--title {
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
}

.program-list--excerpt {
  font-size: 0.85em;
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  padding: 1em 0;
}

.program-chevron {
  font-size: 1.3em;
  color: var(--color-secondary);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  text-align: center;
  display: grid;
  align-items: center;
}

.program-chevron:hover,
.program-chevron:hover {
  color: var(--color-primary);
}

/* ===================================== Responsive  ===================================== */
/*--------------------------------------------------------------
#  Tablet
--------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .featured-program--image {
    margin: 0 auto;
  }
  .program-list--row {
    display: grid;
    grid-template-columns: 1fr 1fr 2.5fr 1.5fr;
    grid-gap: 1.5em;
    align-items: center;
    padding: 0;
  }
  .program-list--row .program-value-chevron {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
/*--------------------------------------------------------------
#  Desktop
--------------------------------------------------------------*/
@media screen and (min-width: 1024px) {
  .program-list--row {
    grid-template-columns: 1fr 1fr 3fr 1.5fr;
    grid-gap: 2em;
  }
}

/*# sourceMappingURL=loyalty-programs-archive.css.map */
