.gardensun-brand-story-section {
  background: #fff;
  padding: 100px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gardensun-brand-story-section .gardensun-brand-story-header {
  margin-bottom: 80px;
}
.gardensun-brand-story-section .gardensun-brand-story-title {
  color: #F6F5F1;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  /* font-weight: 500; */
  line-height: 70px;
}
.gardensun-brand-story-section .gardensun-brand-story-desc {
  color: #F6F5F1;
  text-align: center;
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
}
.gardensun-brand-story-section .gardensun-brand-story-years {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.gardensun-brand-story-section .brand-story-year-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #222;
  padding: 8px 24px;
  border-radius: 24px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.gardensun-brand-story-section .brand-story-year-btn.active {
  background: #E60012;
  color: #fff;
}
.gardensun-brand-story-section .gardensun-brand-story-carousel {
  position: relative;
}
.gardensun-brand-story-section .brand-story-slide {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 0.5s;
}
.gardensun-brand-story-section .brand-story-slide.active {
  display: flex;
}
.gardensun-brand-story-section .brand-story-slide-title {
  font-size: 28px;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
}
.gardensun-brand-story-section .brand-story-slide-desc {
  color: #FFF;
  text-align: center;
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
}

.gardensun-brand-story-section .brand-story-arrow:hover svg path {
  fill: #FFF;
} 
.gardensun-brand-story-section .brand-story-arrow:hover svg circle {
  fill: var(--color-primary);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: none;}
}
@media (max-width: 900px) {
  .gardensun-brand-story-years { gap: 12px; }
  .brand-story-year-btn { font-size: 16px; padding: 6px 12px; }
  .brand-story-slide-title { font-size: 20px; }
} 
.gardensun-brand-story-timeline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.gardensun-brand-story-timeline {
  position: relative;
  display: flex;
  align-items: center;
  gap: 140px;
}
.brand-story-timeline-dot {
  position: relative;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.brand-story-timeline-dot::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.2s, border 0.2s;
  margin-bottom: 6px;
}
.brand-story-timeline-dot.active::after {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.brand-story-timeline-year {
  color: #F6F5F1;
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
  margin-bottom: 16px;
}
.brand-story-timeline-dot.active .brand-story-timeline-year {
  color: var(--color-primary);
}
.brand-story-timeline-line {
  position: absolute;
  width: 100%;
  top: 56px;
  left: 0;
  right: 0;
  height: 2px;
  background: #666;
  z-index: 1;
}
.brand-story-timeline-arrows {
  display: flex;
  justify-content: space-between;
  gap: 83px;
  margin-top: 30px;
  margin-left: 83px;
}
.brand-story-arrow {
  border-radius: 50%;
  width: 17px;
  height: 17px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .brand-story-timeline-arrows {
    display: none;
  }

  .gardensun-brand-story-timeline{
    overflow: scroll;
    position: static;
  }
}

@media (max-width: 575px) {
  .gardensun-brand-story-section{
    padding: 60px 0;
  }
  .gardensun-brand-story-section .gardensun-brand-story-title {
    font-size: 28px;
    line-height: normal;
  }
  .gardensun-brand-story-section .gardensun-brand-story-desc {
    font-size: 14px;
    line-height: normal;
  }
  .gardensun-brand-story-section .gardensun-brand-story-header {
    margin-bottom: 20px;
  }
  .gardensun-brand-story-section .brand-story-slide-desc{
    font-size: 14px;
    line-height: normal;
  }

  .gardensun-brand-story-timeline-wrap{
    position: relative;
  }
}