/* Temporary */
.whatson-container {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.whatson-container h1 {
  text-align: center;
  margin-bottom: 0.75em;
  font-size: 3rem;
  color: #c31f26;
  font-family: "caprica", serif;
}

.whatson-inner {
  padding: 2.5% 5%;
  margin-top: 2.5%;
  margin-bottom: 2.5%;
  width: 100%;
  border: dashed 3px #5a5b5d;
  max-width: 130rem;
}
.whatson-items {
  align-items: stretch;
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.whatson-item {
  border: 1px solid #c31f26;
  border-radius: 2px;
  padding: 1rem;
  flex-grow: 1;
  margin-bottom: 1rem;
  max-width: 60rem;
}
.whatson-eyebrow {
  display: block;
  margin-bottom: 0.1rem;
}
.whatson-location {
  display: block;
  margin-bottom: 1rem;
}
@media (min-width: 500px) {
  .whatson-items {
    align-items: flex-start;
    flex-flow: row;
    flex-wrap: wrap;
  }
  .whatson-item {
    flex-basis: 45%;
    flex-grow: 0;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1000px) {
  .whatson-item {
    flex-basis: 35%;
  }
}

.whatson-item a {
  text-decoration: none;
  color: inherit !important;
  text-transform: none;
}
.whatson-item a:hover,
.whatson-item a:focus {
  text-decoration: underline;
}

.whatson-item[data-featured="1"] {
  background: #c31f26;
  color: rgba(255, 255, 255, 0.8);
}
.whatson-cca {
  border: 1px solid currentColor;
  padding: 0.4rem 1rem;
  margin-top: 0.75rem;
  border-radius: 2px;
}
.whatson-item[data-featured="1"] h2 {
  color: white;
}
.whatson-item[data-featured="1"] .whatson-eyebrow {
  font-weight: bold;
}

.whatson-item:last-of-type {
  margin-right: 0;
}
.whatson-container .whatson-item h2 {
  margin-bottom: 0.25rem;
}
.whatson-container .whatson-item p {
  line-height: 1.4;
  max-width: 30em;
}
.whatson-container .whatson-item img {
  margin-top: 0 !important;
  margin-bottom: 1rem;
  border-radius: 2px;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  display: block;
}
