.hist-page__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .hist-page__container {
    padding: 0 20px;
  }
}

.hist-page__title {
  font-family: "Fixel Display", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.8px;
  color: #04083a;
  margin: 0 0 32px;
}
@media screen and (max-width: 1024px) {
  .hist-page__title {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 24px;
  }
}

.hist-layout {
  position: relative;
  display: grid;
  grid-template-columns: 270px 1fr;
  column-gap: 76px;
  row-gap: 0;
}
@media screen and (max-width: 1024px) {
  .hist-layout {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}

.hist-timeline__seg {
  grid-column: 1;
  grid-row: var(--row);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .hist-timeline__seg {
    grid-row: auto;
    gap: 16px;
  }
}

.hist-timeline__track {
  position: absolute;
  left: 15px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: #a7ccee;
}
@media screen and (max-width: 1024px) {
  .hist-timeline__track {
    display: none;
  }
}

.hist-timeline__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

@media screen and (max-width: 1024px) {
  .hist-timeline__head--end {
    display: none;
  }
}

.hist-timeline__dot {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(167, 204, 238, 0.8);
  flex-shrink: 0;
}
.hist-timeline__dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0384cc;
  transform: translate(-50%, -50%);
}

.hist-timeline__tick {
  flex: 1 1 auto;
  min-width: 8px;
  height: 0;
  border-top: 2px dashed #a7ccee;
  flex-shrink: 1;
}

.hist-timeline__period {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #04083a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hist-timeline__photo {
  position: relative;
  z-index: 1;
  width: 71px;
  height: 71px;
  margin: auto 0 auto -19.5px;
  border-radius: 50%;
  border: 1px solid #0384cc;
  box-sizing: border-box;
  overflow: hidden;
  background: #a7ccee;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .hist-timeline__photo {
    display: none;
  }
}
.hist-timeline__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hist-entry {
  grid-column: 2;
  grid-row: var(--row);
  position: relative;
  background: #fff;
  border-left: 1px solid #a7ccee;
  border-right: 1px solid #a7ccee;
  padding: 32px;
}
.hist-entry--first {
  border-top: 1px solid #a7ccee;
  border-radius: 8px 8px 0 0;
}
.hist-entry--last {
  border-bottom: 1px solid #a7ccee;
  border-radius: 0 0 8px 8px;
}
.hist-entry:not(.hist-entry--first)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: #a7ccee;
}
@media screen and (max-width: 1024px) {
  .hist-entry {
    grid-column: 1;
    grid-row: auto;
    padding: 24px;
    border: 1px solid #a7ccee;
    border-radius: 8px;
  }
  .hist-entry:not(.hist-entry--first)::before {
    content: none;
  }
}

.hist-entry__head {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .hist-entry__head {
    flex-direction: column;
    gap: 20px;
  }
}

.hist-entry__photo {
  flex-shrink: 0;
  width: 141px;
  height: 141px;
  border-radius: 50%;
  overflow: hidden;
  background: #a7ccee;
}
@media screen and (max-width: 1024px) {
  .hist-entry__photo {
    width: 110px;
    height: 110px;
  }
}
.hist-entry__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hist-entry__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hist-entry__title {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a7d98;
}

.hist-entry__name {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
  color: #04083a;
  margin: 2px 0 4px;
}

.hist-entry__period {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: #7a7d98;
}

.hist-entry__body {
  margin-top: 24px;
}
.hist-entry__body.content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(4, 8, 58, 0.52);
  margin: 0 0 16px;
}
.hist-entry__body.content p:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=history.css.map */
