/* Fern & Wild — about band (clean) */
.fw-about {
  position: relative;
  margin-top: -30%;
  margin-bottom: 0;
  padding: 0 0 8%;
  z-index: 1;
}

.fw-about__row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: stretch;
}

.fw-about__media {
  width: 50%;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.fw-about__media-inner {
  padding: 0 7% 0 26%;
  box-sizing: border-box;
}

.fw-about__figure {
  position: relative;
  display: block;
  width: 100%;
  margin: 0; /* reset UA figure margin (16px 40px) so mobile centering is true */
  vertical-align: top;
  overflow: visible;
}

.fw-about__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  transform: scale(1);
}

.fw-about .fw-m-vertical-text {
  margin: 0;
  font-family: Quicksand, sans-serif;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #615F5E;
  font-size: 18px;
  text-align: left;
  position: absolute;
  left: -15px;
  bottom: 1px;
  transform-origin: 1% 100%;
  transform: rotate(270deg) translateY(0);
  backface-visibility: hidden;
  z-index: 2;
}
.fw-about .fw-m-vertical-text > span,
.fw-about .fw-m-vertical-text > span span {
  opacity: 1;
  color: #615F5E;
}
.fw-about .fw-m-vertical-text svg {
  transform: rotate(90deg);
  transform-origin: 5px 100%;
  overflow: visible;
}
.fw-about .fw-m-vertical-text svg line {
  transform: scaleY(1);
  transform-origin: bottom;
  stroke: #B26B54;
}
.fw-about .fw-m-vertical-text svg path {
  opacity: 1;
  transform: scale(1);
  fill: #B26B54;
}

.fw-about__copy {
  width: 50%;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
}

.fw-about__copy-inner {
  width: 100%;
  height: 100%;
  padding: 0 0 0 15%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.fw-about__content {
  width: 100%;
}

.fw-about__title {
  margin: 0;
  padding: 0 8% 0 0;
  max-width: 100%;
  font-family: 'Earthbound', serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.147;
  letter-spacing: 0.02em;
  color: var(--color-dark-green, #155142);
  box-sizing: border-box;
}

.fw-about__text {
  margin: 16px 0 0;
  padding: 0 12% 0 0;
  font-family: Quicksand, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-dark-green, #155142);
  box-sizing: border-box;
}

.fw-about__text + .fw-about__text {
  margin-top: 12px;
}

.fw-about__offer {
  margin-top: 20px;
  padding: 0 12% 0 0;
  box-sizing: border-box;
}

.fw-about__offer-label {
  margin: 0 0 10px;
  font-family: Quicksand, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-dark-green, #155142);
}

.fw-about__offer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fw-about__offer-list li {
  position: relative;
  margin: 0 0 8px;
  padding: 0 0 0 22px;
  font-family: Quicksand, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-dark-green, #155142);
}

.fw-about__offer-list li:last-child {
  margin-bottom: 0;
}

.fw-about__offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 16px;
  background: url("../images/chevron-right.png") center / contain no-repeat;
}

.fw-about__people {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}

.fw-about__person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  box-sizing: border-box;
}

.fw-about__person--first {
  padding: 0 3% 0 0;
  border-right: 1px solid #f1f1f1;
}

.fw-about__person--second {
  padding: 0 0 0 12%;
}

.fw-about__person img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.fw-about__person-name {
  margin: 13px 0 0;
  font-family: Quicksand, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1d1d1d;
}

.fw-about__person-role {
  margin: 5px 0 0;
  font-family: Quicksand, sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: #1d1d1d;
}

@media only screen and (max-width: 1024px) {
  .fw-about__media-inner {
    padding: 0 0 0 30px;
  }
  .fw-about__copy-inner {
    padding: 8% 0 2% 5%;
    height: auto;
    justify-content: flex-start;
  }
  .fw-about__title {
    padding: 0 10% 0 0;
  }
  .fw-about__text {
    padding: 0 12% 1% 0;
  }
  .fw-about__offer {
    padding: 0 12% 3% 0;
  }
  .fw-about__person--first {
    border-right: none;
  }
  .fw-about .fw-m-vertical-text {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .fw-about {
    margin-top: -58%;
  }
  .fw-about__media,
  .fw-about__copy {
    width: 100%;
  }
  .fw-about__media-inner {
    padding: 0 45px;
    margin: 0 auto;
  }
  .fw-about__figure {
    margin: 0 auto;
  }
  .fw-about__copy-inner {
    /* Equal side padding so the block sits in the middle of the page */
    padding: 9% 11% 8%;
    height: auto;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
  }
  .fw-about__title {
    padding: 5% 0 0;
  }
  .fw-about__text {
    padding: 0;
  }
  .fw-about__offer {
    padding: 0 0 3%;
  }
  .fw-about__person--first,
  .fw-about__person--second {
    padding: 20px 0 0;
  }
}
