.article,
.back-parent {
  display: flex;
  align-items: flex-start;
}
.article {
  width: 100%;
  position: relative;
  background-color: var(--color-white);
  flex-direction: column;
  padding: var(--padding-100) var(--padding-64);
  box-sizing: border-box;
  gap: var(--gap-32);
  text-align: left;
  font-size: var(--fs-48);
  color: var(--color-black);
  font-family: inherit;
  overflow: hidden;
}
.back-parent {
  cursor: pointer;
  border: 0;
  padding: 0;
  background-color: transparent;
  width: 9.25rem;
  gap: var(--gap-10);
}
.backList,
.back-icon {
  height: 1.938rem;
  position: relative;
}
.back-icon {
  width: 1.125rem;
  object-fit: contain;
}
.backList {
  width: 7.5rem;
  font-size: 1.313rem;
  line-height: 145%;
  font-weight: 500;
  font-family: inherit;
  color: var(--color-black);
  text-align: left;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.backToList {
  text-decoration: none;
}
.eyebrow,
.article_title,
.headline,
.p {
  margin: 0;
  align-self: stretch;
}
.headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.eyebrow,
.article_title,
.p {
  position: relative;
}
.article_title {
  font-size: var(--fs-48);
  letter-spacing: -0.02em;
  line-height: 120%;
  font-weight: 700;
  font-family: inherit;
}
.eyebrow,
.p {
  line-height: 145%;
  font-weight: 500;
}
.eyebrow {
  font-size: var(--fs-20);
  font-family: inherit;
  color: var(--color-gray);
}
.p {
  font-size: 1.375rem;
}
.h1{
  text-align: left;
}
@media screen and (max-width: 960px) {
  .backList {
    font-size: 1.063rem;
  }
  .article_title {
    font-size: 40px;
  }
  .eyebrow {
    font-size: var(--fs-16);
  }
  .p {
    font-size: var(--fs-18);
  }
}
@media screen and (max-width: 420px) {
  .article {
    padding-left: var(--padding-30);
    padding-right: var(--padding-30);
    box-sizing: border-box;
  }
  .backList {
    font-size: 0.938rem;
  }
  .article_title {
    font-size: 36px;
  }
  .p {
    font-size: var(--fs-16);
  }
}
