@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@400;500;600;700;800&display=swap');

.about-v2-page {
  position: relative;
  overflow: hidden;
  --about-title-font: 'Noto Sans Thai', sans-serif;
  --about-body-font: 'Noto Sans Thai', sans-serif;
  --about-title-lh: 1.03;
  --about-body-lh: 1.8;
  --about-track: .03em;
}

html[lang="en"] .about-v2-page {
  --about-title-font: 'Noto Sans Thai', sans-serif;
  --about-body-font: 'Noto Sans Thai', sans-serif;
  --about-title-lh: 1.1;
  --about-body-lh: 1.72;
  --about-track: .01em;
}

.about-v2-page::before,
.about-v2-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-v2-page::before {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  right: -180px;
  top: 90px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.18), rgba(255, 138, 0, 0));
}

.about-v2-page::after {
  width: 520px;
  height: 320px;
  left: -220px;
  top: 420px;
  background: radial-gradient(circle, rgba(24, 144, 255, 0.12), rgba(24, 144, 255, 0));
}

.about-v2-hero,
.about-v2-gallery-wrap,
.site-footer {
  position: relative;
  z-index: 1;
}

.about-v2-hero {
  padding: 80px 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.about-v2-copy {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 22px;
  padding: 34px 36px;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
}

.about-v2-copy .section-tag {
  margin-bottom: 12px;
}

.about-v2-title {
  font-family: var(--about-body-font);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: var(--about-title-lh);
  letter-spacing: -0.02em;
  color: #0b1a33;
  margin-bottom: 24px;
}

.about-v2-body {
  font-family: var(--about-body-font);
  font-size: 16px;
  line-height: var(--about-body-lh);
  letter-spacing: var(--about-track);
  color: #425670;
  margin-bottom: 24px;
}

.about-v2-checklist {
  list-style: none;
  margin: 8px 0 24px;
}

.about-v2-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #4b5f7a;
  margin-bottom: 8px;
}

.about-v2-checklist li i {
  color: #ff8a00;
  font-size: 22px;
}

.about-v2-checklist li span {
  font-size: 15px;
  line-height: 1.68;
  letter-spacing: var(--about-track);
}

.about-v2-body-end {
  margin-bottom: 0;
}

.about-v2-slider {
  position: relative;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
  background: #0f172a;
}

.about-v2-slider.is-single .about-v2-nav,
.about-v2-slider.is-single .about-v2-dots {
  display: none;
}

.about-v2-slide-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-v2-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
}

.about-v2-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.about-v2-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v2-slide figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #f7fafc;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(8px);
}

.about-v2-nav {
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.5);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.about-v2-nav:hover {
  background: rgba(255, 138, 0, 0.9);
  transform: translateY(-1px);
}

.about-v2-nav.prev {
  left: 12px;
}

.about-v2-nav.next {
  right: 12px;
}

.about-v2-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.about-v2-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.about-v2-dot.is-active {
  background: #ff8a00;
  transform: scale(1.2);
}

.about-v2-gallery-wrap {
  padding: 20px 40px 100px;
}

.about-v2-subtitle {
  font-family: var(--about-title-font);
  font-size: clamp(30px, 4vw, 44px);
  color: #0b1a33;
  margin-bottom: 24px;
  line-height: var(--about-title-lh);
}

.about-v2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-v2-gallery-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.about-v2-gallery-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #d8e0ea;
}

.about-v2-gallery-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-v2-gallery-card h3 {
  font-family: var(--about-title-font);
  font-size: 22px;
  color: #10223d;
  margin-top: 12px;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .about-v2-hero {
    grid-template-columns: 1fr;
  }

  .about-v2-slider {
    height: 500px;
  }
}

@media (max-width: 900px) {
  .about-v2-hero,
  .about-v2-gallery-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-v2-body {
    font-size: 16px;
  }

  .about-v2-checklist li span {
    font-size: 16px;
  }

  .about-v2-gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-v2-gallery-image {
    height: 290px;
  }
}

@media (max-width: 600px) {
  .about-v2-copy {
    padding: 22px;
  }

  .about-v2-title {
    font-size: 34px;
  }

  .about-v2-body {
    font-size: 15px;
    line-height: 1.78;
  }

  .about-v2-checklist li {
    gap: 10px;
  }

  .about-v2-checklist li i {
    font-size: 18px;
  }

  .about-v2-checklist li span {
    font-size: 15px;
  }

  .about-v2-slider {
    height: 360px;
    border-radius: 16px;
  }

  .about-v2-nav {
    width: 34px;
    height: 34px;
    top: calc(50% - 17px);
  }

  .about-v2-gallery-card h3 {
    font-size: 18px;
  }

  .about-v2-gallery-image {
    height: 240px;
  }
}
