@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Space+Grotesk:wght@400;500;600&display=swap");

.bts-timeline {
  --bts-accent: #111111;
  --bts-muted: rgba(0, 0, 0, 0.65);
  --bts-btn-icon-color: #111111;
  font-family: inherit;
  color: inherit;
  position: relative;
  width: 100%;
  min-height: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.bts-title {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 2vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bts-inner {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(160px, 200px) 60px minmax(300px, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.bts-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.bts-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.bts-btn-icon i {
  color: var(--bts-btn-icon-color, var(--bts-accent));
  font-size: 1.3rem;
  transition: transform 0.35s ease, color 0.35s ease;
}

.bts-btn:hover,
.bts-btn:focus-visible {
  border-color: rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.bts-btn-up:hover .bts-btn-icon i {
  transform: translateY(-3px) scale(1.05);
}

.bts-btn-down:hover .bts-btn-icon i {
  transform: translateY(3px) scale(1.05);
}

.bts-year-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

.bts-year-value {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.3em;
}

.bts-year-wheel {
  width: 100%;
  height: 200px;
  display: none;
  overflow: hidden;
  position: relative;
  margin-top: 1rem;
}

.bts-year-wheel-track {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
}

.bts-year-wheel-item {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600;
  opacity: 0.4;
  letter-spacing: 0.35em;
  padding: 0 6px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  min-height: 48px;
}

.bts-year-wheel-item.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.bts-mode-wheel .bts-year-text,
.bts-mode-line .bts-year-text {
  display: none;
}

.bts-mode-wheel .bts-year-wheel,
.bts-mode-line .bts-year-wheel {
  display: block;
}

.bts-mode-line .bts-year-wheel::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  pointer-events: none;
}

.bts-mode-line .bts-year-wheel-track {
  position: relative;
}

.bts-mode-line .bts-year-wheel-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bts-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bts-mode-line .bts-year-wheel-item.is-active::after {
  opacity: 1;
}

.bts-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.bts-separator-line {
  width: var(--bts-sep-width, 4px);
  height: var(--bts-sep-height, 70%);
  background: var(--bts-sep-color, var(--bts-accent));
  border-radius: 999px;
  transition: all 0.3s ease;
}

.bts-right {
  display: grid;
  grid-template-columns: minmax(200px, 45%) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  height: 100%;
}

.bts-media {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  background: #111;
  position: relative;
}

.bts-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bts-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bts-muted);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.bts-animate .bts-media {
  animation: btsSlideInMedia 0.6s ease forwards;
}

.bts-animate .bts-description {
  animation: btsSlideInText 0.6s ease forwards;
}

@keyframes btsSlideInMedia {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes btsSlideInText {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.bts-memory-lane {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  position: relative;
  width: 100%;
  display: block;
  overflow: visible;
  height: auto !important;
  min-height: 100vh;
  padding: 0 !important;
}

.bts-memory-lane .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bts-memory-lane .memories {
  --ink: #0c0f14;
  --shadow: rgba(7, 10, 17, 0.6);
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #0b0d10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  transition: background-image 0.6s ease, background-color 0.6s ease;
}

.bts-memory-lane .memories::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%), linear-gradient(180deg, rgba(5, 7, 12, 0.92), rgba(8, 10, 14, 0.7) 45%, rgba(6, 8, 12, 0.95));
  pointer-events: none;
  z-index: 0;
}

.bts-memory-lane .memories::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 10%, rgba(244, 201, 93, 0.12), transparent 38%), radial-gradient(circle at 15% 80%, rgba(53, 197, 161, 0.14), transparent 45%), repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 6px);
  pointer-events: none;
  z-index: 0;
}

.bts-memory-lane .memories > * {
  position: relative;
  z-index: 1;
}

.bts-memory-lane .memories__container {
  padding: 4rem 0 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bts-memory-lane .memories__intro {
  max-width: 520px;
}

.bts-memory-lane .memories__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(244, 201, 93, 0.9);
  margin: 0 0 0.75rem;
}

.bts-memory-lane .memories__intro h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.bts-memory-lane .memories__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.bts-memory-lane .memories__layout {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  width: 100%;
  margin: 0;
  flex: 1;
}

.bts-memory-lane .memories__layout > [class*="col-"] {
  padding: 0;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .bts-memory-lane .memories__layout > .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .bts-memory-lane .memories__layout > .col-lg-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
  }
}

.bts-memory-lane .list-years {
  list-style: none;
  padding: 0 2.7rem 0 0;
  margin: 1.5rem 0 0;
  position: relative;
  will-change: transform;
}

.bts-memory-lane .list-years::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.15));
}

.bts-memory-lane .list-years li {
  margin: 0;
  height: 18vh;
  min-height: 112px;
  width: 100%;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.bts-memory-lane .list-years li a {
  text-decoration: none;
  color: #fff !important;
  font-size: 1.1rem;
  width: 100%;
  max-width: 200px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  padding: 0.7rem 2.4rem 0.7rem 1.2rem;
  border-radius: 999px;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
}

.bts-memory-lane .list-years li a:hover,
.bts-memory-lane .list-years li a:focus {
  transform: translateX(-4px);
  background: transparent;
  box-shadow: none;
}

.bts-memory-lane .list-years li a::after {
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 18px rgba(244, 201, 93, 0.8);
  position: absolute;
  left: 100.5%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease, height 0.35s ease;
}

.bts-memory-lane .list-years .year {
  letter-spacing: 0.2em;
  font-size: 1.15em;
  text-transform: uppercase;
}

.bts-memory-lane .memory-stage {
  position: relative;
  min-height: 62vh;
}

.bts-memory-lane .memory-card {
  background: rgba(16, 20, 27, 0.78);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 70px var(--shadow);
  margin-bottom: 20px;
  padding: 2.2rem 2.4rem;
  color: #fff;
  position: absolute !important;
  width: min(560px, 90%);
  top: 5vh;
  left: clamp(1rem, 4vw, 3.5rem);
  z-index: 2;
}

.bts-memory-lane .memory-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(240, 125, 42, 0.45), rgba(53, 197, 161, 0.2), rgba(244, 201, 93, 0.2));
  opacity: 0.35;
  z-index: -1;
}

.bts-memory-lane .memory-card__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 201, 93, 0.9);
}

.bts-memory-lane .memory-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}

.bts-memory-lane .memory-card__summary {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-height: 50vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.35rem;
  scrollbar-gutter: stable;
}

.bts-memory-lane .memory-card__summary p {
  margin: 0 0 0.6rem;
  line-height: 1.6;
}

.bts-memory-lane .memory-card__summary ul,
.bts-memory-lane .memory-card__summary ol {
  margin: 0.6rem 0 0.8rem 1.2rem;
  padding: 0;
  line-height: 1.6;
}

.bts-memory-lane .memory-card__summary li {
  margin: 0.2rem 0;
  line-height: 1.6;
}

.bts-memory-lane .memory-card__summary > *:last-child {
  margin-bottom: 0;
}

.bts-memory-lane .memory-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.bts-memory-lane .memory-card__meta span {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.8);
}

.bts-memory-lane .memory-card__meta span:nth-child(1) {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .bts-memory-lane .memories {
    height: auto;
    min-height: 100vh;
  }

  .bts-memory-lane .memories__container {
    padding: 3rem 0 2rem;
  }

  .bts-memory-lane .memories__layout {
    flex-direction: column;
  }

  .bts-memory-lane .list-years {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 0 1.5rem;
    margin-top: 1rem;
  }

  .bts-memory-lane .list-years::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
  }

  .bts-memory-lane .list-years li {
    height: auto;
    min-height: auto;
  }

  .bts-memory-lane .list-years li a {
    align-items: flex-start;
    text-align: left;
    max-width: none;
  }

  .bts-memory-lane .list-years li a::after {
    left: 18%;
    top: 100%;
    transform: translate(-50%, -50%);
  }

  .bts-memory-lane .memory-stage {
    min-height: 52vh;
  }

  .bts-memory-lane .memory-card {
    width: auto;
    left: 4%;
    right: 4%;
  }
}

@media (max-width: 575px) {
  .bts-memory-lane .memory-card {
    padding: 1.8rem;
  }

  .bts-memory-lane .memory-card h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 1200px) {
  .bts-inner {
    grid-template-columns: 1fr;
  }

  .bts-left {
    flex-direction: row;
    justify-content: space-between;
  }

  .bts-separator {
    order: 3;
  }

  .bts-right {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .bts-memory-lane-grid {
    grid-template-columns: 1fr;
  }

  .bts-memory-stage {
    grid-template-columns: 1fr;
  }

  .bts-memory-divider {
    display: none;
  }

  .bts-memory-panel {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .bts-memory-years {
    flex-direction: row;
    gap: 0.75rem;
    overflow-x: auto;
    width: 100%;
  }

  .bts-memory-year {
    font-size: 0.8rem;
  }

  .bts-memory-year-large {
    left: 32px;
    font-size: clamp(2.5rem, 7vw, 4rem);
  }
}

@media (max-width: 640px) {
  .bts-memory-year {
    letter-spacing: 0.2em;
  }

  .bts-title {
    text-align: center;
  }
}

body.page-id-373 #page > hr,
body.page-id-373 #footer {
  display: none !important;
}

body.page-id-373 #page {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
