.about {
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 88px 0 100px;
  overflow: hidden;
}

.about__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.about__head {
  margin-bottom: 48px;
}

.about__label {
  margin-bottom: 16px;
  color: #0070d5;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 30px;
}

.about__title {
  color: #000000;
  font-size: 40px;
  font-weight: var(--font-weight-normal);
  line-height: 56px;
  letter-spacing: 0.02em;
}

.about__body {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 754px;
  padding: 0 0px 56px;
  box-sizing: border-box;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(32px);
  animation: about-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.about__markers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.about__radiation {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.about__radiation-line {
  fill: none;
  stroke-width: 1.2px;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  animation: about-radiation-in 0.6s ease forwards;
}

@keyframes about-radiation-in {
  to {
    opacity: 0.95;
  }
}

.about__marker {
  position: absolute;
  left: var(--marker-x, 50%);
  top: var(--marker-y, 50%);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -100%) scale(0.55);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.55s ease;
}

.about__marker.is-revealed {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -100%) scale(1);
}

.about__marker--label-left {
  transform: translate(-100%, -100%) scale(0.55);
}

.about__marker--label-left.is-revealed {
  transform: translate(-100%, -100%) scale(1);
}

.about__marker:hover,
.about__marker:focus-within,
.about__marker.is-highlighted {
  z-index: 50;
}

.about__marker.is-open {
  z-index: 100;
}

.about__markers:has(.about__marker.is-open) .about__marker:not(.is-open) {
  z-index: 0;
}

.about__marker.is-highlighted .about__marker-name {
  color: #0070d5;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.95);
}

.about__marker.is-highlighted .about__marker-pin svg {
  transform: scale(1.12);
  transition: transform 0.35s ease;
}

.about__marker-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #ffffff;
  font: inherit;
  line-height: 1;
}

.about__markers-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.about__marker-pin {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 21px;
  height: 33.75px;
  background: transparent;
}

.about__marker-pin svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 21px;
  height: 33.75px;
}

.about__marker-ripple {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 0;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about__marker-ripple span {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0, 120, 255, 0.55);
  border-radius: 50%;
  transform-origin: center;
  opacity: 0;
  animation: about-marker-ripple 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.about__marker-ripple span:nth-child(2) {
  animation-delay: 1.2s;
}

@keyframes about-marker-ripple {
  0% {
    transform: scale(0.35);
    opacity: 0.75;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about__marker {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -100%);
    transition: none;
  }
  .about__marker--label-left {
    transform: translate(-100%, -100%);
  }
  .about__marker-ripple span {
    animation: none;
    opacity: 0.35;
    transform: scale(1.2);
  }
}

.about__marker-pin-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.about__marker--label-left .about__marker-trigger {
  flex-direction: row-reverse;
}

.about__marker-name {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  white-space: nowrap;
  color: #0070d5;
  text-shadow: 0 0 1px #ffffff, 0 0 2px #ffffff, 1px 0 0 #ffffff, -1px 0 0 #ffffff, 0 1px 0 #ffffff, 0 -1px 0 #ffffff;
}

.about__marker-popover {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 380px;
  max-width: min(380px, calc(100vw - 48px));
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.about__marker-popover-media {
  flex-shrink: 0;
  width: 140px;
  border-radius: 8px;
  overflow: hidden;
}

.about__marker-popover-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  object-position: center center;
}

.about__marker-popover-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.about__marker-popover-title {
  margin: 0 0 10px;
  color: #0070d5;
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

.about__marker-popover-desc {
  margin: 0;
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.about__marker:hover .about__marker-popover,
.about__marker:focus-within .about__marker-popover,
.about__marker.is-open .about__marker-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.about__marker--align-end .about__marker-popover {
  left: auto;
  right: 0;
  transform: translateY(8px);
}

.about__marker--align-end:hover .about__marker-popover,
.about__marker--align-end:focus-within .about__marker-popover,
.about__marker--align-end.is-open .about__marker-popover {
  transform: translateY(0);
}

.about__timeline {
  position: static;
  margin-top: 30px;
  top: -120px;
  z-index: 1;
  flex-shrink: 0;
  width: 370px;
  max-height: 100%;
  padding: 28px 24px 24px;
  border-radius: 12px;
  background: translate;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.about__timeline-head {
  margin-bottom: 28px;
}

.about__timeline-title {
  margin: 0 0 8px;
  color: #000000;
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.about__timeline-subtitle {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 4px solid #0070d5;
  color: #0070d5;
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.about__timeline-list {
  position: relative;
  margin: 0;
  padding: 0 0 0 28px;
  list-style: none;
}

.about__timeline-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #b8d4f0 0%, #7eb3e8 100%);
  border-radius: 1px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.about__timeline.is-animated .about__timeline-list::before {
  transform: scaleY(1);
}

.about__timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 5px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__timeline-item:last-child {
  padding-bottom: 0;
}

.about__timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about__timeline-node {
  position: absolute;
  left: -28px;
  top: 6px;
  z-index: 1;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-left: 0;
  border: 2px solid #0070d5;
  border-radius: 50%;
  background: #ffffff;
  box-sizing: border-box;
}

.about__timeline-item.is-active .about__timeline-node {
  border-width: 0;
  background: #0070d5;
}

.about__timeline-item.is-active .about__timeline-node::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 64, 152, 0.5);
  animation: about-timeline-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes about-timeline-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 64, 152, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 64, 152, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 64, 152, 0);
  }
}

.about__timeline-content {
  min-width: 0;
}

.about__timeline-year {
  display: inline-block;
  margin-right: 10px;
  color: #0070d5;
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  font-style: normal;
  vertical-align: baseline;
}

.about__timeline-item.is-active .about__timeline-year {
  animation: about-timeline-year-float 1.4s ease-in-out 1;
}

@keyframes about-timeline-year-float {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

.about__timeline-event {
  display: inline;
  margin: 0;
  color: #000000;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.about__timeline-desc {
  margin: 4px 0 0;
  color: #888888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.about__timeline-foot {
  margin-top: 12px;
  padding-left: 28px;
}

.about__timeline-foot-text {
  margin: 0;
  color: #888888;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.about__timeline-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 64, 152, 0.08);
}

.about__timeline-hint-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.about__timeline-hint-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.about__timeline-hint-text {
  color: #0070d5;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .about__timeline-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .about__timeline-list::before {
    transform: scaleY(1);
    transition: none;
  }
  .about__timeline-year {
    animation: none !important;
  }
  .about__timeline-item.is-active .about__timeline-node::after {
    animation: none;
    box-shadow: 0 0 0 4px rgba(0, 64, 152, 0.2);
  }
}

@keyframes about-enter {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1600px) and (min-width: 1025px) {
  .about {
    padding: 4.675vw 0 5.3125vw;
  }
  .about__inner {
    max-width: 85vw;
    padding: 0 1.275vw;
  }
  .about__head {
    margin-bottom: 2.55vw;
  }
  .about__label {
    margin-bottom: 0.85vw;
    font-size: 1.275vw;
    line-height: 1.59375vw;
  }
  .about__title {
    font-size: 2.125vw;
    line-height: 2.975vw;
  }
  .about__body {
    height: 40.05625vw;
    padding: 0 0 2.975vw;
    border-radius: 0.6375vw;
    transform: translateY(1.7vw);
  }
  @keyframes about-enter {
    from {
      opacity: 0;
      transform: translateY(1.7vw);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .about__marker-trigger {
    gap: 0.425vw;
  }
  .about__marker-ripple {
    width: 0.6375vw;
    height: 0.6375vw;
  }
  .about__marker-ripple span {
    border-width: 0.10625vw;
  }
  .about__marker-name {
    padding: 0.26562vw 0.74375vw;
    border-width: 0.05312vw;
    font-size: 0.95625vw;
    backdrop-filter: blur(0.53125vw);
    -webkit-backdrop-filter: blur(0.53125vw);
  }
  .about__marker-popover {
    top: calc(100% + 0.6375vw);
    gap: 0.85vw;
    width: 20.1875vw;
    max-width: min(380px, calc(100vw - 48px));
    padding: 0.85vw;
    border-radius: 0.6375vw;
    box-shadow: 0 0.6375vw 1.7vw rgba(0, 0, 0, 0.12);
    transform: translateX(-50%) translateY(0.425vw);
  }
  .about__marker-popover-media {
    width: 7.4375vw;
    border-radius: 0.425vw;
  }
  .about__marker-popover-media img {
    min-height: 5.3125vw;
  }
  .about__marker-popover-title {
    margin: 0 0 0.53125vw;
    font-size: 1.0625vw;
  }
  .about__marker-popover-desc {
    font-size: 0.74375vw;
  }
  .about__marker--align-end .about__marker-popover {
    transform: translateY(0.425vw);
  }
  .about__timeline {
    top: -6.375vw;
    width: 19.65625vw;
    padding: 1.4875vw 1.275vw 1.275vw;
    border-radius: 0.6375vw;
    box-shadow: 0 0.425vw 1.7vw rgba(0, 0, 0, 0.08);
  }
  .about__timeline-head {
    margin-bottom: 1.4875vw;
  }
  .about__timeline-title {
    margin: 0 0 0.425vw;
    font-size: 1.4875vw;
  }
  .about__timeline-subtitle {
    padding-bottom: 0.53125vw;
    border-bottom-width: 0.2125vw;
  }
  .about__timeline-list {
    padding: 0 0 0 1.4875vw;
  }
  .about__timeline-list::before {
    left: 0.37188vw;
    top: 0.425vw;
    bottom: 0.425vw;
    width: 0.10625vw;
  }
  .about__timeline-item {
    gap: 0.85vw;
    padding-bottom: 0.26562vw;
    transform: translateY(0.85vw);
  }
  .about__timeline-node {
    left: -1.4875vw;
    top: 0.31875vw;
    width: 0.74375vw;
    height: 0.74375vw;
    border-width: 0.10625vw;
  }
  .about__timeline-item.is-active .about__timeline-node::after {
    inset: -0.15937vw;
  }
  .about__timeline-year {
    margin-right: 0.53125vw;
    font-size: 1.16875vw;
  }
  .about__timeline-event {
    font-size: 0.85vw;
  }
  .about__timeline-desc {
    margin: 0.2125vw 0 0;
    font-size: 0.69062vw;
  }
  .about__timeline-foot {
    margin-top: 0.6375vw;
    padding-left: 1.4875vw;
  }
  .about__timeline-foot-text {
    font-size: 0.74375vw;
  }
  .about__timeline-hint {
    gap: 0.425vw;
    margin: 0.85vw 0 0;
    padding: 0.425vw 0.74375vw;
  }
  .about__timeline-hint-icon svg {
    width: 0.95625vw;
    height: 0.95625vw;
  }
  .about__timeline-hint-text {
    font-size: 0.6375vw;
  }
}

@media (max-width: 1024px) {
  .about {
    padding: 64px 0 72px;
  }
  .about__title {
    font-size: 36px;
  }
  .about__label {
    font-size: 24px;
    line-height: 1.2;
  }
  .about__body {
    align-items: flex-end;
    height: auto;
    min-height: 560px;
    padding: 120px 24px 32px;
    background-image: var(--about-bg-mobile, url(../images/about2.webp));
    background-position: center top;
    background-size: cover;
  }
  .about__timeline {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: 0;
  }
  .about__timeline-year {
    font-size: 20px;
  }
  .about__timeline-event {
    font-size: 15px;
  }
  .about__marker {
    --marker-x: 62%;
    --marker-y: 28%;
  }
  .about__marker-popover {
    width: 320px;
    padding: 14px;
    gap: 12px;
  }
  .about__marker-popover-media {
    width: 112px;
  }
  .about__marker-name {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 48px 0 56px;
  }
  .about__inner {
    padding: 0 16px;
  }
  .about__head {
    margin-bottom: 28px;
  }
  .about__title {
    font-size: 28px;
  }
  .about__label {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .about__body {
    align-items: stretch;
    height: auto;
    min-height: 0;
    padding: 0;
    border-radius: 8px;
    background-image: none;
    background-color: transparent;
  }
  .about__markers {
    display: none;
  }
  .about__timeline {
    top: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 20px 16px;
  }
  .about__timeline-title {
    font-size: 22px;
  }
  .about__timeline-subtitle {
    font-size: 12px;
  }
  .about__timeline-year {
    font-size: 18px;
  }
  .about__timeline-event {
    font-size: 14px;
  }
  .about__timeline-desc {
    font-size: 12px;
  }
  .about__timeline-item {
    padding-bottom: 5px;
  }
  .about__marker-pin,
  .about__marker-pin svg {
    width: 18px;
    height: 28.93px;
  }
  .about__marker-ripple {
    width: 10px;
    height: 10px;
  }
  .about__marker-name {
    font-size: 14px;
  }
  .about__marker-popover {
    left: 0;
    width: min(300px, calc(100vw - 64px));
    transform: translateY(8px);
  }
  .about__marker:hover .about__marker-popover,
  .about__marker:focus-within .about__marker-popover,
  .about__marker.is-open .about__marker-popover {
    transform: translateY(0);
  }
  .about__marker-popover-media {
    width: 96px;
  }
  .about__marker-popover-title {
    font-size: 17px;
  }
  .about__marker-popover-desc {
    font-size: 13px;
  }
}

@media screen and (max-width: 1600px) and (min-width: 1025px) {
  .about {
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 49vw;
    max-height: 90vh;
    padding-top: clamp(1.9125vw, 5vh, 4.675vw);
    padding-bottom: clamp(1.9125vw, 5vh, 5.3125vw);
    box-sizing: border-box;
    overflow: hidden;
  }
  .about__inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }
  .about__head {
    flex-shrink: 0;
    margin-bottom: clamp(0.85vw, 2.2vh, 2.55vw);
  }
  .about__label {
    margin-bottom: clamp(0.425vw, 1.2vh, 0.85vw);
  }
  .about__title {
    font-size: clamp(1.59375vw, 2.5vw, 2.125vw);
    line-height: 1.3;
  }
  .about__body {
    flex: 1;
    height: auto;
    min-height: 0;
    padding-bottom: clamp(1.0625vw, 3vh, 2.975vw);
  }
  .about__timeline {
    top: clamp(-3.825vw, -9vh, -6.375vw);
    width: clamp(17vw, 22vw, 19.65625vw);
    max-height: calc(100% + clamp(3.825vw, 9vh, 6.375vw));
    padding: clamp(0.85vw, 2vh, 1.4875vw) clamp(0.85vw, 1.5vw, 1.275vw) clamp(0.85vw, 2vh, 1.275vw);
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .about__timeline-head {
    margin-bottom: clamp(0.74375vw, 1.8vh, 1.4875vw);
  }
  .about__timeline-title {
    font-size: clamp(1.16875vw, 2vw, 1.4875vw);
  }
  .about__timeline-item {
    padding-bottom: clamp(0.10625vw, 0.4vh, 0.26562vw);
  }
  .about__timeline-year {
    font-size: clamp(0.95625vw, 1.6vw, 1.16875vw);
  }
  .about__timeline-event {
    font-size: clamp(0.74375vw, 1.1vw, 0.85vw);
  }
  .about__timeline-foot {
    margin-top: clamp(0.425vw, 1vh, 0.6375vw);
  }
}

@media screen and (max-width: 1400px) and (min-width: 1301px) {
  .about {
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 49vw;
    max-height: 80vh;
    padding-top: clamp(1.9125vw, 5vh, 4.675vw);
    padding-bottom: clamp(1.9125vw, 5vh, 5.3125vw);
    box-sizing: border-box;
    overflow: hidden;
  }
}

@media screen and (max-width: 1300px) and (min-width: 1025px) {
  .about {
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 49vw;
    max-height: 75vh;
    padding-top: clamp(1.9125vw, 5vh, 4.675vw);
    padding-bottom: clamp(1.9125vw, 5vh, 5.3125vw);
    box-sizing: border-box;
    overflow: hidden;
  }
}

@media (min-width: 1600px) {
  .about {
    background-color: #eef1f9;
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 937px;
    max-height: 100vh;
    padding-top: clamp(36px, 5vh, 88px);
    padding-bottom: clamp(36px, 5vh, 100px);
    box-sizing: border-box;
    overflow: hidden;
  }
  .about__inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }
  .about__head {
    flex-shrink: 0;
    margin-bottom: clamp(16px, 2.2vh, 48px);
  }
  .about__label {
    margin-bottom: clamp(8px, 1.2vh, 16px);
  }
  .about__title {
    font-size: clamp(30px, 2.5vw, 40px);
    line-height: 1.3;
  }
  .about__body {
    flex: 1;
    height: auto;
    min-height: 0;
    padding-bottom: clamp(20px, 3vh, 56px);
  }
  .about__timeline {
    top: clamp(-72px, -9vh, -120px);
    width: clamp(320px, 22vw, 370px);
    max-height: calc(100% + clamp(72px, 9vh, 120px));
    padding: clamp(16px, 2vh, 28px) clamp(16px, 1.5vw, 24px) clamp(16px, 2vh, 24px);
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .about__timeline-head {
    margin-bottom: clamp(14px, 1.8vh, 28px);
  }
  .about__timeline-title {
    font-size: clamp(22px, 2vw, 28px);
  }
  .about__timeline-item {
    padding-bottom: clamp(2px, 0.4vh, 5px);
  }
  .about__timeline-year {
    font-size: clamp(18px, 1.6vw, 22px);
  }
  .about__timeline-event {
    font-size: clamp(14px, 1.1vw, 16px);
  }
  .about__timeline-foot {
    margin-top: clamp(8px, 1vh, 12px);
  }
}

@media screen and (min-width: 2000px) {
  .about {
    max-height: 100vh;
    padding-bottom: 0.7vw;
  }
  .about__body {
    width: 113%;
  }
}

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