/**
 * Background colors for use in layouts.
 *
 * @see au_admin_ux_bootstrap_layouts_class_options_alter()
 */
.background--dark {
  background-color: #363434; }

.background--grey-transparent {
  background-color: rgba(52, 61, 70, 0.8); }

.background--light {
  background-color: #fbfaf8; }

.background--secondary {
  background-color: #f5f4f2; }

.background--light-grey {
  background-color: #f1f1f2; }

.background--menu {
  background-color: #777; }

.background--primary {
  background-color: #bca270; }

.background--primary-light {
  background-color: #efede8; }

.background--primary-transparent {
  background-color: rgba(188, 162, 112, 0.9); }

.content-card {
  display: flex;
  flex-direction: column;
  background-color: #fbfaf8;
  padding: 15px;
  margin-bottom: 0; }
  @media screen and (min-width: 767px) {
    .content-card {
      flex-direction: row;
      background-color: #fff;
      padding: 0;
      margin-bottom: 10px;
      max-height: 292px; } }

.content-card__image {
  flex: 1 0 auto; }

.content-card__content {
  padding: 20px 0;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1; }
  @media screen and (min-width: 767px) {
    .content-card__content {
      padding: 20px; } }
  .content-card__content .heading {
    font-size: 28px; }

.content-card__title {
  margin-top: 10px; }

.content-card__link {
  margin: 15px 0;
  text-transform: uppercase; }
  .content-card__link a {
    color: #bca270; }

.content-card--right {
  flex-direction: row-reverse; }

.content-card-small .content-card {
  margin-bottom: 30px; }
  .content-card-small .content-card__content {
    font-size: 1.4rem; }
    @media screen and (min-width: 767px) {
      .content-card-small .content-card__content {
        display: flex;
        flex-direction: column;
        justify-content: center; } }
    .content-card-small .content-card__content .heading {
      font-size: 2.3rem; }
    .content-card-small .content-card__content p {
      line-height: 2.1rem;
      margin-bottom: 2.1rem; }
  .content-card-small .content-card__link {
    margin: 0;
    font-weight: 500; }
