﻿/* COLORS */
/* ---- PASTELS ---- */
/* ---- OTHER COLORS ---- */
.real-stories-wrapper .content-wrapper {
  box-sizing: border-box;
  padding: 40px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 26px;
  /* COLORS */
  /* ---- PASTELS ---- */
  /* ---- OTHER COLORS ---- */
}
.real-stories-wrapper .content-wrapper.yellow {
  background-color: #ffcc00;
}
.real-stories-wrapper .content-wrapper.pink {
  background-color: #ff6699;
}
.real-stories-wrapper .content-wrapper.blue {
  background-color: #0099cc;
}
.real-stories-wrapper .content-wrapper.blue h4 {
  color: #fff;
}
.real-stories-wrapper .content-wrapper.blue p {
  color: #fff;
}
.real-stories-wrapper .content-wrapper.green {
  background-color: #009933;
}
.real-stories-wrapper .content-wrapper.green h4 {
  color: #fff;
}
.real-stories-wrapper .content-wrapper.green p {
  color: #fff;
}
.real-stories-wrapper .content-wrapper.purple {
  background-color: #663399;
}
.real-stories-wrapper .content-wrapper.purple h4 {
  color: #fff;
}
.real-stories-wrapper .content-wrapper.purple p {
  color: #fff;
}
.real-stories-wrapper .content-wrapper.red {
  background-color: #ff0033;
}
.real-stories-wrapper .content-wrapper.orange {
  background-color: #ff6600;
}
.real-stories-wrapper .content-wrapper.pastel-bisque {
  background-color: #ffe5bf;
}
.real-stories-wrapper .content-wrapper .real-story-item {
  flex: 0 0 31%;
  text-decoration: none;
}
.real-stories-wrapper .content-wrapper .real-story-item .real-story-picture {
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  width: 100%;
  height: 300px;
  background: no-repeat center center;
  background-size: cover;
}
.real-stories-wrapper .content-wrapper .real-story-item .real-story-content {
  box-sizing: border-box;
  padding: 20px 20px;
  border-radius: 0 0 24px 24px;
}
.real-stories-wrapper .content-wrapper .real-story-item .real-story-content h4 {
  color: #fff;
}
.real-stories-wrapper .content-wrapper .real-story-item .real-story-content p {
  color: #003399;
}

@media screen and (max-width: 768px) {
  .real-stories-wrapper .content-wrapper {
    display: block;
    padding: 10px 10px;
  }
  .real-stories-wrapper .content-wrapper .real-story-item {
    margin-bottom: 20px;
    display: block;
  }
}
