.interview {
  padding-block: 80px 112px;
}
@media (max-width: 980px) {
  .interview {
    padding-bottom: 80px;
  }
}

/*===================================================
 PROFILE
===================================================*/
.interview-profile {
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  gap: 3%;
  position: relative;
}
@media (max-width: 980px) {
  .interview-profile {
    padding-inline: 16px;
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.interview-profile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background-color: var(--color-primary);
}
@media (max-width: 980px) {
  .interview-profile::after {
    width: 100%;
  }
}

.interview-profile__body {
  width: 70%;
  flex-shrink: 0;
  padding: 72px;
  box-sizing: border-box;
  border: 1px solid #ff5858;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
@media (max-width: 1023px) {
  .interview-profile__body {
    padding: 60px;
  }
}
@media (max-width: 980px) {
  .interview-profile__body {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .interview-profile__body {
    padding: 32px;
  }
}

.interview-profile__title {
  width: fit-content;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 600;
  font-style: italic;
  line-height: 100%;
  background: linear-gradient(90deg, #ff5858 0%, #f09819 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .interview-profile__title {
    font-size: 32px;
  }
}

.interview-profile__name {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #ff5858;
}

.interview-profile__person {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.04em;
}

.interview-profile__position {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.04em;
}

.interview-profile__text {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .interview-profile__text {
    font-size: 14px;
  }
}

.interview-profile__img {
  flex-grow: 1;
}
@media (max-width: 980px) {
  .interview-profile__img {
    width: 100%;
  }
}
.interview-profile__img img {
  aspect-ratio: 300/375;
}

/*===================================================
 INTERVIEW
===================================================*/
.interview-article {
  margin-top: 80px;
}
@media (max-width: 980px) {
  .interview-article {
    padding-inline: 12px;
  }
}

.interview-article__title {
  width: fit-content;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 600;
  font-style: italic;
  line-height: 100%;
  background: linear-gradient(90deg, #ff5858 0%, #f09819 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .interview-article__title {
    font-size: 32px;
  }
}

.interview-article__cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media (max-width: 980px) {
  .interview-article__cards {
    margin-top: 24px;
    gap: 32px;
  }
}

.interview-article__card {
  padding-left: 9%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
@media (max-width: 768px) {
  .interview-article__card {
    padding-left: 36px;
    gap: 12px;
  }
}
.interview-article__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 7%;
  height: 1px;
  background-color: var(--color-primary);
}
@media (max-width: 768px) {
  .interview-article__card::before {
    width: 20px;
  }
}

.interview-article__subtitle {
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0.04em;
}

.interview-article__text {
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

/*===================================================
 SCHEDULE
===================================================*/
.interview-schedule {
  margin-top: 80px;
}
@media (max-width: 980px) {
  .interview-schedule {
    padding-inline: 12px;
  }
}

.interview-schedule__title {
  width: fit-content;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 600;
  font-style: italic;
  line-height: 100%;
  background: linear-gradient(90deg, #ff5858 0%, #f09819 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .interview-schedule__title {
    font-size: 32px;
  }
}

.interview-schedule__box {
  margin-top: 40px;
  padding: 72px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid var(--color-primary);
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
@media (max-width: 1023px) {
  .interview-schedule__box {
    margin-top: 24px;
    padding: 60px;
  }
}
@media (max-width: 768px) {
  .interview-schedule__box {
    padding: 24px;
  }
}

.interview-schedule__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  position: relative;
}
.interview-schedule__list::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 18px;
  width: 1px;
  height: var(--line-height);
  background: linear-gradient(180deg, #f09819 0%, #ff5858 51%, #66a6ff 100%);
}

.interview-schedule__item {
  padding-left: 40px;
  display: flex;
  gap: 24px;
  position: relative;
}
@media (max-width: 1023px) {
  .interview-schedule__item {
    flex-direction: column;
    gap: 12px;
  }
}
.interview-schedule__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background-color: var(--color-primary);
}
.interview-schedule__item:nth-child(1)::before, .interview-schedule__item:nth-child(2)::before, .interview-schedule__item:nth-child(3)::before {
  background-color: #f09819;
}
.interview-schedule__item:nth-child(1) .interview-schedule__head, .interview-schedule__item:nth-child(2) .interview-schedule__head, .interview-schedule__item:nth-child(3) .interview-schedule__head {
  color: #f09819;
}
.interview-schedule__item:nth-child(4)::before, .interview-schedule__item:nth-child(5)::before {
  background-color: #ff5858;
}
.interview-schedule__item:nth-child(4) .interview-schedule__head, .interview-schedule__item:nth-child(5) .interview-schedule__head {
  color: #ff5858;
}
.interview-schedule__item:nth-child(6)::before, .interview-schedule__item:nth-child(7)::before {
  background: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
}
.interview-schedule__item:nth-child(6) .interview-schedule__head, .interview-schedule__item:nth-child(7) .interview-schedule__head {
  background: linear-gradient(180deg, #89f7fe 0%, #66a6ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.interview-schedule__head {
  width: 25%;
  box-sizing: border-box;
  flex-shrink: 0;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .interview-schedule__head {
    font-size: 21px;
  }
}
@media (max-width: 1023px) {
  .interview-schedule__head {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .interview-schedule__head {
    font-size: 18px;
  }
}

.interview-schedule__body {
  flex-grow: 1;
  line-height: 200%;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .interview-schedule__body {
    width: 100%;
    font-size: 14px;
  }
}/*# sourceMappingURL=interview.css.map */