.brand-story {
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr);
  gap: 1.5rem;
  align-items: stretch;
  margin: 0 8vw 8rem;
}

.story-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border: 1px solid rgba(19, 42, 43, .2);
}

.brand-story article {
  min-height: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(19, 42, 43, .2);
}

.brand-story article:last-child {
  border-bottom: 0;
}

.brand-story .story-location {
  background: #0d5158;
  color: #fff;
}

.story-top {
  width: 3.2rem;
  flex: 0 0 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
}

.brand-story span {
  font-size: .72rem;
  letter-spacing: .18em;
  opacity: .6;
}

.story-icon {
  color: #c89a4a;
  font-style: normal;
  font-size: 1.45rem;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(200, 154, 74, .22);
}

.story-icon.family {
  max-width: 3.2rem;
  font-size: .52rem;
  line-height: 1.5;
  letter-spacing: .16em;
  text-align: right;
}

.story-icon.laurel {
  font-size: 2rem;
  transform: rotate(-12deg);
}

.brand-story h3 {
  max-width: 24ch;
  margin: 0 0 .45rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.15rem, 1.45vw, 1.55rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.brand-story p {
  max-width: 46ch;
  margin: 0;
  font-size: .9rem;
  line-height: 1.48;
  opacity: .78;
}

.story-location p {
  opacity: .82;
}

.story-image {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .brand-story {
    grid-template-columns: 1fr;
    margin: 0 6vw 5rem;
  }

  .brand-story article {
    border-bottom: 1px solid rgba(19, 42, 43, .2);
  }

  .brand-story article:last-child {
    border-bottom: 0;
  }

  .brand-story h3,
  .brand-story p {
    max-width: 32ch;
  }

  .story-image img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}
