/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.p-history {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 80px);
}
.p-history__item {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
}
.p-history__item .year {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
}
.p-history__item .year span {
  font-size: clamp(1.5rem, 0.8863636364rem + 1.7045454545vw, 2.25rem);
  font-family: "Barlow", sans-serif;
}
.p-history__item .list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
  border-inline-start: 1px solid rgba(0, 0, 0, 0.15);
}
.p-history__item .item {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--grid-gap);
}
.p-history__item .month {
  grid-column: 1/2;
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.p-history__item .month span {
  font-family: "Barlow", sans-serif;
}
.p-history__item ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  grid-column: 2/7;
}
.p-history__item ul li {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 1280px) {
  .p-history__item {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--grid-gap);
  }
  .p-history__item .year {
    grid-column: 1/3;
  }
  .p-history__item .list {
    grid-column: 3/9;
  }
  .p-history__item .item {
    grid-template-columns: repeat(6, 1fr);
  }
  .p-history__item .month {
    grid-column: 1/2;
  }
  .p-history__item ul {
    grid-column: 2/7;
  }
}

/* --------------------------------- */