.chicnest-story {
  background: rgb(var(--color-background));
  color: rgb(var(--color-text));
}

.chicnest-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
  padding-top: 82px;
  padding-bottom: 82px;
}

.chicnest-story__inner--right .chicnest-story__media {
  order: 2;
}

.chicnest-story__media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #e9e1d5;
}

.chicnest-story__media img,
.chicnest-story__media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.chicnest-story__media img {
  object-fit: cover;
}

.chicnest-story__content {
  max-width: 520px;
}

.chicnest-story__eyebrow {
  margin: 0 0 14px;
  color: rgb(var(--color-light-text));
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.chicnest-story__heading {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.6vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.chicnest-story__description {
  margin-top: 20px;
  color: rgb(var(--color-light-text));
  font-size: 16px;
  line-height: 1.75;
}

.chicnest-story__list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.chicnest-story__list li {
  position: relative;
  padding-left: 27px;
  font-size: 14px;
  line-height: 1.55;
}

.chicnest-story__list li::before {
  position: absolute;
  top: 0.56em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b8060;
  content: "";
}

.chicnest-story__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 12px 25px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.chicnest-story__button:hover {
  background: rgb(var(--color-text));
  color: rgb(var(--color-background));
}

@media screen and (max-width: 749px) {
  .chicnest-story__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .chicnest-story__inner--right .chicnest-story__media {
    order: 0;
  }

  .chicnest-story__heading {
    font-size: 36px;
  }

  .chicnest-story__description {
    font-size: 15px;
  }

  .chicnest-story__button {
    width: 100%;
  }
}
