.photo-wall-track {
  width: 100%;
}

.photo-wall-page {
  display: flex;
  width: 100%;
}
.photo-wall-page > * {
  margin-left: 16px;
}
.photo-wall-page > *:first-child {
  margin-left: 0;
}
@supports (gap: 16px) {
  .photo-wall-page {
    gap: 16px;
  }
  .photo-wall-page > * {
    margin-left: 0;
  }
}

.photo-wall-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.photo-wall-column > * {
  margin-bottom: 16px;
}
.photo-wall-column > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 16px) {
  .photo-wall-column {
    gap: 16px;
  }
  .photo-wall-column > * {
    margin-bottom: 0;
  }
}

.photo-wall-item {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
  width: 100%;
}

.photo-wall-item:hover {
  transform: translateY(-4px);
}

.photo-wall-image {
  width: 100%;
  object-fit: cover;
  display: block;
}

.photo-wall-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.photo-wall-title {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: var(--fz-md);
  font-weight: var(--fw-medium);
  line-height: 1.1;
  color: #fff;
  max-width: calc(100% - 24px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  z-index: 2;
}

.photo-wall-item {
  position: relative;
}

.photo-wall-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
}

.photo-wall-empty {
  padding: 60px 40px;
  text-align: center;
  color: #999;
  background-color: #f9f9f9;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .photo-wall-page > * {
    margin-left: 8px;
  }
  .photo-wall-page > *:first-child {
    margin-left: 0;
  }
  .photo-wall-column > * {
    margin-bottom: 8px;
  }
  .photo-wall-column > *:last-child {
    margin-bottom: 0;
  }
  @supports (gap: 8px) {
    .photo-wall-page {
      gap: 8px;
    }
    .photo-wall-page > * {
      margin-left: 0;
    }
    .photo-wall-column {
      gap: 8px;
    }
    .photo-wall-column > * {
      margin-bottom: 0;
    }
  }
  
  /* 移动端优化：减小内边距和圆角 */
  .photo-wall-item {
    border-radius: 6px;
  }
  
  /* 可选：移动端降低悬停效果 */
  .photo-wall-item:hover {
    transform: translateY(-2px);
  }
}

/* 移动端照片墙无限滚动样式 */
.mobile-photo-wall {
  width: 100%;
}

.mobile-photo-wall .photo-wall-columns {
  display: flex;
  width: 100%;
}
.mobile-photo-wall .photo-wall-columns > * {
  margin-left: 8px;
}
.mobile-photo-wall .photo-wall-columns > *:first-child {
  margin-left: 0;
}
@supports (gap: 8px) {
  .mobile-photo-wall .photo-wall-columns {
    gap: 8px;
  }
  .mobile-photo-wall .photo-wall-columns > * {
    margin-left: 0;
  }
}

.mobile-photo-wall .photo-wall-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.mobile-photo-wall .photo-wall-column > * {
  margin-bottom: 8px;
}
.mobile-photo-wall .photo-wall-column > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 8px) {
  .mobile-photo-wall .photo-wall-column {
    gap: 8px;
  }
  .mobile-photo-wall .photo-wall-column > * {
    margin-bottom: 0;
  }
}

/* 小屏幕手机适配 */
@media (max-width: 480px) {
  .photo-wall-page > * {
    margin-left: 6px;
  }
  .photo-wall-page > *:first-child {
    margin-left: 0;
  }
  .photo-wall-column > * {
    margin-bottom: 6px;
  }
  .photo-wall-column > *:last-child {
    margin-bottom: 0;
  }
  .mobile-photo-wall .photo-wall-columns > * {
    margin-left: 6px;
  }
  .mobile-photo-wall .photo-wall-columns > *:first-child {
    margin-left: 0;
  }
  .mobile-photo-wall .photo-wall-column > * {
    margin-bottom: 6px;
  }
  .mobile-photo-wall .photo-wall-column > *:last-child {
    margin-bottom: 0;
  }
  @supports (gap: 6px) {
    .photo-wall-page {
      gap: 6px;
    }
    .photo-wall-page > * {
      margin-left: 0;
    }
    .photo-wall-column {
      gap: 6px;
    }
    .photo-wall-column > * {
      margin-bottom: 0;
    }
    .mobile-photo-wall .photo-wall-columns {
      gap: 6px;
    }
    .mobile-photo-wall .photo-wall-columns > * {
      margin-left: 0;
    }
    .mobile-photo-wall .photo-wall-column {
      gap: 6px;
    }
    .mobile-photo-wall .photo-wall-column > * {
      margin-bottom: 0;
    }
  }
}
.mobile-drawer-component {
  background: white;
  position: fixed;
  z-index: 1001;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  transition: transform 0.3s ease;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.mobile-drawer-component .mobile-drawer-title {
  position: relative;
  text-align: center;
}

.mobile-drawer-component .mobile-drawer-title .top-line {
  border-bottom: 1px solid var(--color-border);
}

.mobile-drawer-component .mobile-drawer-title p {
  height: 60px;
  line-height: 70px;
  font-size: var(--fz-lg);
  font-weight: 600;
  width: 70%;
  margin: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-drawer-component .mobile-drawer-title:before {
  content: "";
  position: absolute;
  background-color: #e6e6e6;
  border-radius: 2px;
  width: 40px;
  height: 4px;
  top: 10px;
  left: calc(50% - 20px);
}

.mobile-drawer-component .drawer-body {
  height: calc(100% - 61px);
  overflow: auto;
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
}

@media screen and (max-width: 768px) {
  .mobile-drawer-component .drawer-body .auth {
    padding: unset;
  }
}
.about-contact-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-contact-card__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(22, 130, 71, 0.15);
  border-radius: 8px;
  padding: 14px 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-contact-card__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.about-contact-card__item:hover::before {
  transform: translateX(100%);
}

.about-contact-card__item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(22, 130, 71, 0.3);
  box-shadow: 0 8px 20px -8px rgba(22, 130, 71, 0.2);
}

.about-contact-card__left {
  min-width: 0;
  flex: 1;
}

.about-contact-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #168247;
  margin-bottom: 4px;
  opacity: 0.8;
}

.about-contact-card__value {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-feature-settings: "tnum";
}

.about-contact-card__right {
  flex-shrink: 0;
}

.about-contact-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 40px;
  background: linear-gradient(135deg, #168247 0%, #22c55e 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(22, 130, 71, 0.25);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.about-contact-card__action::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.6s ease;
}

.about-contact-card__action:hover::before {
  left: 100%;
}

.about-contact-card__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 130, 71, 0.35);
  background: linear-gradient(135deg, #1a9c55 0%, #2ed573 100%);
}

.about-contact-card__action:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(22, 130, 71, 0.2);
}

.about-contact-card__action--ghost {
  background: transparent;
  color: #168247;
  border: 1.5px solid rgba(22, 130, 71, 0.3);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.about-contact-card__action--ghost::before {
  background: linear-gradient(90deg, transparent, rgba(22, 130, 71, 0.1), transparent);
}

.about-contact-card__action--ghost:hover {
  background: rgba(22, 130, 71, 0.05);
  color: #0f5f35;
  border-color: #168247;
  box-shadow: 0 4px 12px rgba(22, 130, 71, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-contact-card {
    padding: 12px;
  }

  .about-contact-card__item {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .about-contact-card__value {
    font-size: 13px;
  }

  .about-contact-card__action {
    min-width: 64px;
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }
}

.about-page .about-office-section {
  width: 100%;
  position: relative;
}

.about-page .about-office-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-page .about-office-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(34, 164, 93, 0.15);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow:
    0 20px 40px -12px rgba(0, 0, 0, 0.1),
    0 8px 24px -6px rgba(34, 164, 93, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-page .about-office-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 164, 93, 0.3);
  box-shadow:
    0 30px 60px -12px rgba(34, 164, 93, 0.25),
    0 12px 32px -8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-page .about-office-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 164, 93, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(34, 164, 93, 0.12) 0%, transparent 50%),
    repeating-linear-gradient(45deg,
      rgba(34, 164, 93, 0.02) 0px,
      rgba(34, 164, 93, 0.02) 2px,
      transparent 2px,
      transparent 8px);
}

.about-page .about-office-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  z-index: 1;
  width: 200%;
  height: 200%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
}

.about-page .about-office-card:hover::after {
  opacity: 1;
}

.about-page .about-office-card-inner {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.about-page .about-office-country {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-bottom: 16px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  background: linear-gradient(135deg, #22a45d 0%, #1a7a45 100%);
  box-shadow: 0 8px 16px -6px rgba(34, 164, 93, 0.3);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-page .about-office-city {
  position: relative;
  margin: 0 0 10px;
  color: #1e2f23;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.about-page .about-office-city::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  opacity: 0.3;
  background: #22a45d;
  transition: width 0.3s ease;
}

.about-page .about-office-card:hover .about-office-city::after {
  width: 100%;
  opacity: 0.5;
}

.about-page .about-office-name {
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 2px solid rgba(34, 164, 93, 0.2);
  color: #5b6f64;
  font-size: 15px;
  line-height: 1.6;
}

.about-page .about-office-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.about-page .about-office-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  overflow: hidden;
  padding: 14px 16px;
  border: 1px solid rgba(34, 164, 93, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-page .about-office-item::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.about-page .about-office-item:hover::before {
  transform: translateX(100%);
}

.about-page .about-office-item:hover {
  border-color: rgba(34, 164, 93, 0.3);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px -8px rgba(34, 164, 93, 0.15);
}

.about-page .about-office-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 164, 93, 0.15);
  border-radius: 50%;
  background: rgba(34, 164, 93, 0.1);
  backdrop-filter: blur(4px);
  color: #22a45d;
  font-size: 18px;
  transition: all 0.3s ease;
}

.about-page .about-office-item:hover .about-office-icon {
  transform: scale(1.05);
  background: #22a45d;
  color: #ffffff;
}

.about-page .about-office-item-content {
  min-width: 0;
  flex: 1;
}

.about-page .about-office-label {
  margin-bottom: 4px;
  color: #22a45d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-page .about-office-value {
  color: #1e2f23;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  word-break: break-word;
}

.about-page .about-office-value a {
  position: relative;
  display: inline-block;
  color: #1e2f23;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-page .about-office-value a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: #22a45d;
  transition: transform 0.3s ease;
}

.about-page .about-office-value a:hover {
  color: #22a45d;
}

.about-page .about-office-value a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 992px) {
  .about-page .about-office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about-page .about-office-section {
    padding: 30px 0 40px;
  }

  .about-page .about-office-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-page .about-office-card-inner {
    padding: 12px;
  }

  .about-page .about-office-city {
    font-size: 24px;
  }

  .about-page .about-office-name {
    margin-bottom: 16px;
    padding-left: 0;
    border-left: none;
    font-size: 14px;
  }

  .about-page .about-office-item {
    padding: 12px 14px;
  }

  .about-page .about-office-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .about-page .about-office-value {
    font-size: 13px;
  }
}

@media (hover: none) {
  .about-page .about-office-card:hover {
    transform: none;
    border-color: rgba(34, 164, 93, 0.15);
    box-shadow:
      0 20px 40px -12px rgba(0, 0, 0, 0.1),
      0 8px 24px -6px rgba(34, 164, 93, 0.08);
  }

  .about-page .about-office-item:hover {
    border-color: rgba(34, 164, 93, 0.15);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: none;
  }

  .about-page .about-office-item:hover .about-office-icon {
    transform: none;
    background: rgba(34, 164, 93, 0.1);
    color: #22a45d;
  }

  .about-page .about-office-value a:hover {
    color: #1e2f23;
  }

  .about-page .about-office-value a:hover::after {
    transform: scaleX(0);
  }
}

.about-page .about-history-section {
  width: 100%;
  padding: 60px 0 80px;
  position: relative;
}

.about-page .about-history-empty-wrap {
  max-width: 500px;
  margin: 0 auto;
}

.about-page .about-history-empty-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 280px;
  overflow: hidden;
  border: 2px dashed rgba(34, 164, 93, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px -12px rgba(34, 164, 93, 0.1);
}

.about-page .about-history-empty-block::before {
  content: "\23F3";
  position: absolute;
  top: 30px;
  left: 30px;
  color: #22a45d;
  font-size: 32px;
  opacity: 0.1;
  transform: rotate(-15deg);
}

.about-page .about-history-empty-block::after {
  content: "\1F4C5";
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: #22a45d;
  font-size: 40px;
  opacity: 0.1;
  transform: rotate(10deg);
}

.about-page .about-history-empty-plus {
  position: relative;
  z-index: 1;
  color: #22a45d;
  font-size: 48px;
  opacity: 0.3;
}

.about-page .about-history-timeline {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 70px;
  row-gap: 50px;
}

.about-page .about-history-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg,
      rgba(174, 230, 191, 0.9) 0%,
      rgba(34, 164, 93, 1) 20%,
      rgba(67, 185, 106, 0.95) 40%,
      rgba(34, 164, 93, 1) 60%,
      rgba(174, 230, 191, 0.9) 80%,
      rgba(34, 164, 93, 1) 100%);
  background-size: 100% 220px;
  animation: about-history-line-flow 4s linear infinite;
  z-index: 0;
  box-shadow:
    0 0 0 1px rgba(67, 185, 106, 0.04),
    0 0 18px rgba(67, 185, 106, 0.1);
}

@keyframes about-history-line-flow {
  0% {
    background-position: 0 0;
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.06);
  }

  100% {
    background-position: 0 220px;
    filter: brightness(1);
  }
}

.about-page .about-history-timeline::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(34, 164, 93, 0.05), transparent 18%),
    radial-gradient(circle at 82% 78%, rgba(34, 164, 93, 0.04), transparent 20%);
}

.about-page .about-history-timeline-item {
  position: relative;
  opacity: 0;
  animation: about-history-fade-in-up 0.6s ease forwards;
}

.about-page .about-history-timeline-item--left {
  grid-column: 1;
}

.about-page .about-history-timeline-item--right {
  grid-column: 2;
  margin-top: 100px;
}

@keyframes about-history-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-page .about-history-timeline-card-wrap {
  position: relative;
}

.about-page .about-history-timeline-dot {
  position: absolute;
  top: 32px;
  width: 18px;
  height: 18px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #22a45d 0%, #1a7a45 100%);
  box-shadow:
    0 0 0 4px rgba(34, 164, 93, 0.15),
    0 0 20px rgba(34, 164, 93, 0.3);
  z-index: 3;
  transition: all 0.3s ease;
  animation: about-history-dot-breath 2.2s ease-in-out infinite;
}

@keyframes about-history-dot-breath {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 4px rgba(34, 164, 93, 0.15),
      0 0 20px rgba(34, 164, 93, 0.3);
  }

  50% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 8px rgba(34, 164, 93, 0.25),
      0 0 30px rgba(34, 164, 93, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 4px rgba(34, 164, 93, 0.15),
      0 0 20px rgba(34, 164, 93, 0.3);
  }
}

.about-page .about-history-timeline-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(34, 164, 93, 0.1);
  z-index: -1;
  transition: all 0.3s ease;
}

.about-page .about-history-timeline-item:hover .about-history-timeline-dot::before {
  width: 45px;
  height: 45px;
}

.about-page .about-history-timeline-item--left .about-history-timeline-dot {
  right: -44px;
}

.about-page .about-history-timeline-item--right .about-history-timeline-dot {
  left: -44px;
}

.about-page .about-history-timeline-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(34, 164, 93, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow:
    0 20px 40px -12px rgba(0, 0, 0, 0.1),
    0 8px 24px -6px rgba(34, 164, 93, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-page .about-history-timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 164, 93, 0.3);
  box-shadow:
    0 30px 60px -12px rgba(34, 164, 93, 0.25),
    0 12px 32px -8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-page .about-history-timeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 164, 93, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(34, 164, 93, 0.12) 0%, transparent 50%),
    repeating-linear-gradient(45deg,
      rgba(34, 164, 93, 0.02) 0px,
      rgba(34, 164, 93, 0.02) 2px,
      transparent 2px,
      transparent 8px);
}

.about-page .about-history-timeline-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.6s ease;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
}

.about-page .about-history-timeline-card:hover::after {
  opacity: 1;
}

.about-page .about-history-timeline-year {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  background: linear-gradient(135deg, #22a45d 0%, #1a7a45 100%);
  box-shadow: 0 8px 16px -6px rgba(34, 164, 93, 0.3);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.about-page .about-history-timeline-year::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.about-page .about-history-timeline-card:hover .about-history-timeline-year::before {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

.about-page .about-history-timeline-card-title {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #1e2f23;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.3px;
}

.about-page .about-history-timeline-card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50px;
  height: 2px;
  opacity: 0.3;
  background: #22a45d;
  transition: width 0.3s ease;
}

.about-page .about-history-timeline-card:hover .about-history-timeline-card-title::after {
  width: 100%;
  opacity: 0.5;
}

.about-page .about-history-timeline-card-desc {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  padding-left: 16px;
  border-left: 2px solid rgba(34, 164, 93, 0.2);
  color: #5b6f64;
  font-size: 15px;
  line-height: 1.7;
}

.about-page .about-history-timeline-media {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.about-page .about-history-timeline-media-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 164, 93, 0.1);
  border-radius: 8px;
  background: #f0f7f3;
  box-shadow: 0 15px 25px -10px rgba(34, 164, 93, 0.15);
}

.about-page .about-history-timeline-media-image-wrap::before {
  content: "";
  display: block;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-bottom: 62.5%;
}

@supports (aspect-ratio: 16 / 10) {
  .about-page .about-history-timeline-media-image-wrap {
    aspect-ratio: 16 / 10;
  }

  .about-page .about-history-timeline-media-image-wrap::before {
    display: none;
  }
}

.about-page .about-history-timeline-media-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(34, 164, 93, 0.1) 0%, transparent 50%);
  transition: opacity 0.3s ease;
}

.about-page .about-history-timeline-card:hover .about-history-timeline-media-image-wrap::after {
  opacity: 1;
}

.about-page .about-history-timeline-media-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-page .about-history-timeline-card:hover .about-history-timeline-media-image {
  transform: scale(1.05);
}

.about-page .about-history-timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.about-page .about-history-timeline-tag {
  position: relative;
  overflow: hidden;
  padding: 6px 16px;
  border: 1px solid rgba(34, 164, 93, 0.15);
  border-radius: 30px;
  background: rgba(34, 164, 93, 0.08);
  backdrop-filter: blur(4px);
  color: #22a45d;
  font-size: 13px;
  font-weight: 500;
  cursor: default;
  transition: all 0.2s ease;
}

.about-page .about-history-timeline-tag::before {
  content: "#";
  margin-right: 4px;
  opacity: 0.5;
}

.about-page .about-history-timeline-tag::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: transform 0.6s ease;
}

.about-page .about-history-timeline-tag:hover::after {
  transform: translateX(100%);
}

.about-page .about-history-timeline-tag:hover {
  transform: translateY(-2px);
  border-color: #22a45d;
  background: #22a45d;
  box-shadow: 0 8px 16px -8px rgba(34, 164, 93, 0.4);
  color: #ffffff;
}

.about-page .about-history-timeline-item--left .about-history-timeline-card-wrap::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -35px;
  width: 35px;
  height: 2px;
  z-index: 1;
  border-radius: 2px;
  background: linear-gradient(90deg, #22a45d 0%, rgba(34, 164, 93, 0.1) 100%);
}

.about-page .about-history-timeline-item--right .about-history-timeline-card-wrap::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -35px;
  width: 35px;
  height: 2px;
  z-index: 1;
  border-radius: 2px;
  background: linear-gradient(270deg, #22a45d 0%, rgba(34, 164, 93, 0.1) 100%);
}

@media (max-width: 768px) {
  .about-page .about-history-section {
    padding: 0;
  }

  .about-page .about-history-timeline {
    grid-template-columns: 1fr;
    row-gap: 30px;
    padding: 30px 0 40px;
  }

  .about-page .about-history-timeline::before {
    top: 30px;
    bottom: 30px;
    left: 5px;
    transform: none;
  }

  .about-page .about-history-timeline-item--left .about-history-timeline-card-wrap::before,
  .about-page .about-history-timeline-item--right .about-history-timeline-card-wrap::before {
    display: none;
  }

  .about-page .about-history-timeline-item--left,
  .about-page .about-history-timeline-item--right {
    grid-column: 1;
    margin-top: 0;
  }

  .about-page .about-history-timeline-item:not(:first-child) .about-history-timeline-dot {
    top: -21px;
  }

  .about-page .about-history-timeline-dot::before {
    width: 25px;
    height: 25px;
  }

  .about-page .about-history-timeline-item:hover .about-history-timeline-dot::before {
    width: 30px;
    height: 30px;
  }

  .about-page .about-history-timeline-dot {
    top: 0;
    left: 0;
    right: auto;
    width: 16px;
    height: 16px;
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(34, 164, 93, 0.15);
  }

  .about-page .about-history-timeline-card {
    position: relative;
    left: 10px;
    margin-left: 5px;
    padding: 12px;
  }

  .about-page .about-history-timeline-year {
    padding: 6px 18px;
    font-size: 14px;
  }

  .about-page .about-history-timeline-card-title {
    font-size: 22px;
  }

  .about-page .about-history-timeline-card-desc {
    padding-left: 12px;
    font-size: 14px;
  }

  .about-page .about-history-timeline-tag {
    padding: 5px 14px;
    font-size: 12px;
  }

  .about-page .about-history-empty-block {
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .about-page .about-history-timeline-card {
    margin-left: 25px;
    padding: 18px;
  }

  .about-page .about-history-timeline-dot {
    width: 14px;
    height: 14px;
  }

  .about-page .about-history-timeline-year {
    padding: 5px 16px;
    font-size: 13px;
  }

  .about-page .about-history-timeline-card-title {
    font-size: 20px;
  }

  .about-page .about-history-timeline-card-desc {
    font-size: 13px;
  }

  .about-page .about-history-empty-plus {
    font-size: 40px;
  }
}

@media (hover: none) {
  .about-page .about-history-timeline-card:hover {
    transform: none;
  }

  .about-page .about-history-timeline-card:hover .about-history-timeline-media-image {
    transform: none;
  }

  .about-page .about-history-timeline-tag:hover {
    transform: none;
    box-shadow: none;
    background: rgba(34, 164, 93, 0.08);
    color: #22a45d;
  }
}

.about-page {
  width: 100%;
  min-height: 100vh;
}

.about-page .about-empty-state {
  padding: 40px 0;
}

.about-page .about-empty-state__inner {
  text-align: center;
  color: #999;
}

.about-page .about-info-card {
  min-height: 240px;
  padding: 30px 0;
  transition: background-color 0.3s ease;
}

.about-page .about-info-card--white {
  background-color: #ffffff;
}

.about-page .about-info-card--muted {
  background-color: #fafafa;
}

.about-page .about-info-card__shell {
  box-sizing: border-box;
}

.about-page .about-info-card__inner {
  width: 100%;
  min-width: 0;
}

.about-page .about-info-card__header {
  margin-bottom: 30px;
}

.about-page .about-info-card__title {
  margin: 0;
  text-align: center;
  font-size: var(--fz-4xl);
}

.about-page .about-info-card__subtitle {
  margin: 0 0 30px;
  color: #212121;
  line-height: 2;
  text-align: center;
}

.about-page .about-info-card__content {
  box-sizing: border-box;
}

.about-page .about-info-card--description .about-info-card__header {
  margin-bottom: 0;
}

.about-page .about-info-card--description .about-info-card__subtitle {
  margin-bottom: 0;
  text-indent: 20px;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  word-break: break-word;
}

