.results-display {
  position: relative;
}

.results-display-container {
  position: relative;
  z-index: 1;
}

.results-display-background {
  background: linear-gradient(45deg, var(--green-gradient-primary) 0%, var(--green-gradient-secondary) 100%);
  -webkit-border-top-right-radius: var(--rounded-lg);
  -moz-border-top-right-radius: var(--rounded-lg);
  border-top-right-radius: var(--rounded-lg);
  height: 65%;
  left: 0;
  position: absolute;
  top: 2rem;
  width: 100%;
}

.results-main__illustration {
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  max-width: 350px;
}

.results-main__illustration::before {
  content: '';
  display: block;
  padding-top: 120.3%;
}

.results-main__txt {
  position: relative;
  margin-top: -10%;
}

.results-main__title {
  color: #000;
}

.results-display__card {
  background: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.1); 
  box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.1);
  overflow: hidden;
}

.results-display__card > * {
  margin-top: 1.5rem;
}

.results-card__txt,
.results-card__topics {
  padding: 0 1.5rem;
}

.results-card__txt > * {
  margin-top: 1rem;
}

.results-card__txt > :first-child {
  margin-top: 0;
}

.results-card__txt > :last-child {
  margin-bottom: 0;
}

.results-card__type {
  color: var(--green);
  font-size: 1rem;
  font-weight: 600;
  line-height: 22px;
}

.results-card__new-tag {
  background: var(--purple);
  padding: .25em .5em;
  border-radius: 4px;
  color: #fff;
  font-size: .75em;
  margin: 0 0 0 .5em;
  text-transform: uppercase;
}

.results-card__title {
  color: #000;
}

.results-card__topics {
  list-style: none;
  margin-top: 2rem;
}

.results-card__topics > :first-child {
  margin-top: 0;
}

.results-card__topics > :last-child {
  margin-bottom: 0;
}

.results-topics__item {
  margin-top: 1.5rem;
  padding-right: 8%;
}

.results-topics__item > :first-child {
  margin-top: 0;
}

.results-topics__item > :last-child {
  margin-bottom: 0;
}

.results-topics__title {
  color: #000;
  font-size: 2rem;
  line-height: 1;
}

.results-topics__description {
  margin-top: .25rem;
}

.results-topics__description > :first-child {
  margin-top: 0;
}

.results-topics__description > :last-child {
  margin-bottom: 0;
}

.results-card__video {
  display: flex;
}

.card-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.results-card__photo-image {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.results-card__photo::before {
  content: '';
  display: block;
  padding-top: 80%;
  width: 100%;
}

.results-card__tabs {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 0 auto;
  max-width: 700px;
}

.results-card__tab-button {
  background: transparent;
  border-top: solid var(--robin-blue) 6px;
  border-radius: 0;
  color: var(--robin-blue);
  flex: 1;
  font-weight: 500;
  justify-content: center;
  margin: 0 0 0 .5rem;
  padding: .5rem 0 0 0;
  text-align: center;
  transition: all ease .3s;
}

.results-card__tab-button:focus,
.results-card__tab-button:hover,
.results-card__tab-button:active {
  background-color: transparent;
  color: var(--green);
  border-color: var(--green);
}

.results-card__tab-button--is-active {
  color: var(--green);
  border-color: var(--green);
}

.results-display-press-background {
  background: linear-gradient(45deg, var(--green-gradient-primary) 0%, var(--green-gradient-secondary) 100%);
  -webkit-border-top-right-radius: var(--rounded-lg);
  -moz-border-top-right-radius: var(--rounded-lg);
  border-top-right-radius: var(--rounded-lg);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.results-display__press {
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.results-display__press > :first-child {
  margin-top: 0;
}

.results-display__press > :last-child {
  margin-bottom: 0;
}

.results-display-press__section-title {
  color: #000;
  margin-top: 0;
}

.results-display-press__section-description {
  margin-top: 1rem;
}

.results-display-press__section-description > *:first-child {
  margin-top: 0;
}

.results-display-press__section-description > *:last-child {
  margin-bottom: 0;
}

.results-display-press__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -2rem;
  margin-top: 0;
}

.results-display-press__item {
  margin-left: 2rem;
  margin-top: 2rem;
}

.results-display-press__item img {
  max-width: 180px !important;
}

.results-display-cta-section__title {
  color: #000000;
  margin: 0;
}

.results-display-cta-section__cta {
  margin: 1.5rem 0 0 0;
}


@media(min-width: 768px) {
  
  .results-display__main {
    align-items: center;
    display: flex;
  }
  
  .results-main__illustration {
    flex-basis: 48%;
  }
  
  .results-main__txt {
    flex-basis: 52%;
    margin-top: -4%; {# half of negative margin on .results-display__card #}
  }
  
  .results-display__card {
    display: flex;
    margin-top: -8%;
  }
  
  .results-display__card > * {
    flex: 1;
    flex-shrink: 0;
    width: 33.33%;
    margin-left: 3rem;
  }
  
  .results-card__txt,
  .results-card__topics {
    align-self: center;
    margin-top: 0;
    padding: 3rem 0;
  }
  
  .results-card__txt {
    flex: 1.2;
  }
  
  .results-card__title {
    font-size: 2rem;
    line-height: 1.4;
    padding-right: 3rem;
  }
  
  .results-card__cta {
    margin-top: 2rem;
  }
  
  .results-card__photo,
  .results-card__video {
    margin-right: -1px;
    margin-top: 0;
  }
  
  .results-card__photo::before {
    min-height: 500px;
  }
  
  .results-display__press {
    padding: 9rem 0;
  }
  
  .results-display-press__txt {
    max-width: 590px;
  }
  
  .results-display-press__list {
    justify-content: flex-start;
    margin-top: 3rem;
  }
  
  .results-display-press__item {
    flex: 1;
  }
  
  .results-display-press__item img {
    max-width: 150px !important;
  }
  
}