.creator {
  padding-block: 120px;
  background: #fbf6f0;
}

.creator__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1560px;
  margin-inline: auto;
}

.creator__heading-row {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.creator__line {
  flex: 1 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 14, 17, 0) 0%, rgba(27, 14, 17, 0.35) 100%);
}

.creator__heading-row .creator__line:last-child {
  transform: scaleX(-1);
}

.creator__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: 0.8px;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(73.9deg, #1b0e11 7.4%, #d0ab89 52%, #1b0e11 103.2%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* bio card */

.creator__card {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px;
  border: 1px solid #efe3d8;
  border-radius: 30px;
  background: #f3e8df;
}

.creator__bio {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
  gap: 30px;
}

.creator__bio-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.creator__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  color: #262626;
}

.creator__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  height: 32px;
  padding: 8px 16px;
  border-radius: 36px;
  background: #be946e;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.creator__bio-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
}

.creator__quote {
  display: flex;
  gap: 16px;
  padding: 30px;
  border-radius: 20px;
  background: #fef9f5;
}

.creator__quote-icon {
  flex-shrink: 0;
  width: 27px;
  height: 27px;
}

.creator__quote-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
}

.creator__photo {
  flex-shrink: 0;
  align-self: stretch;
  width: 447px;
  border-radius: 300px 300px 20px 20px;
  overflow: hidden;
  max-height: 610px;
}

.creator__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.creator__highlights {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-shrink: 0;
  width: 436px;
}

.creator__highlight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.creator__highlight img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.creator__highlight-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-black);
}

.creator__highlight-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
}

/* journey / timeline */

.creator__journey {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.creator__journey-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.creator__journey-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: var(--color-black);
}

.creator__journey-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-muted);
}

.creator__timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.creator__timeline-dot {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #be946e;
}

.creator__timeline-dot img {
  width: 30px;
  height: 30px;
}

.creator__timeline-items {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.creator__timeline-items::after{
  content: "";
  position: absolute;
  height: 1px;
  background: #E8CBB0;
  z-index: 0;
  width: 79%;
  top: 31px;
}

.creator__timeline-item {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.creator__timeline-item-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-black);
}

.creator__timeline-item-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
}

@media (max-width: 1680px) {
  .creator {
    padding-block: 90px;
  }

  .creator__title {
    font-size: 32px;
    white-space: normal;
  }

  .creator__card {
    flex-wrap: wrap;
    padding: 40px;
  }

  .creator__photo {
    width: 320px;
  }

  .creator__highlights {
    width: 100%;
  }
}

@media (max-width: 960px) {
    .creator__timeline-items::after{
    display: none;
  }
  .creator__card {
    flex-direction: column;
    align-items: stretch;
  }

  .creator__photo {
    width: 100%;
    height: 460px;
    align-self: auto;
  }

  .creator__highlights {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .creator__highlight {
    flex: 1 0 240px;
  }

  .creator__timeline-items {
    flex-wrap: wrap;
  }

  .creator__timeline-item {
    flex-basis: calc(50% - 15px);
  }

  .creator__timeline-track {
    grid-template-columns: repeat(2, 1fr);
    background-size: calc(50% - 30px) 1px;
    background-repeat: repeat-x;
  }
}

@media (max-width: 640px) {
  .creator {
    padding-block: 60px;
  }

  .creator__title {
    font-size: 24px;
  }

  .creator__card {
    padding: 24px;
  }

  .creator__journey-title {
    font-size: 28px;
  }

  .creator__timeline-items {
    flex-direction: column;
  }

  .creator__timeline-item {
    flex-basis: auto;
  }

  .creator__timeline-track {
    grid-template-columns: repeat(4, 1fr);
    background-size: calc(100% - 60px) 1px;
    background-repeat: no-repeat;
  }
}
