/**
 * Tentang Kami Baru — standalone styles (prefix: tk-about-)
 */

.tk-about-page,
.tk-about-page :where(h1, h2, h3, h4, h5, h6, p, a, button, input, select, textarea, li, span, label, small, strong, em) {
  font-family: 'Inter', sans-serif;
}

.tk-about-page {
  width: 100%;
  overflow-x: clip;
  --tk-blue: #4966b8;
  --tk-blue-dark: #074bb2;
  --tk-blue-light: #eef1fb;
  --tk-text: #0f2440;
  --tk-text-muted: #606f89;
  --tk-text-body: #4a5568;
  --tk-border: #eaecf0;
  --tk-bg: #f6f8fc;
  --tk-accent: #fce8ea;
  --tk-accent-icon: #b42318;
  --tk-radius-lg: 1.25rem;
  --tk-radius-md: 0.75rem;
  --tk-radius-sm: 0.5rem;
  color: var(--tk-text);
  background-color: #fff;
}

.tk-about-page *,
.tk-about-page *::before,
.tk-about-page *::after {
  box-sizing: border-box;
}

.tk-about-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*
 * Konten dalam section — sama home.php:
 * .container → lebar terpusat (--lp-container-width)
 * padding → --lp-space-screen-x (1rem mobile, 2rem ≥576px, 0 + max 75rem ≥1280px)
 */
.tk-about-page .tk-about-container {
  box-sizing: border-box;
  width: var(--lp-container-width, 100%);
  max-width: var(--lp-container-width, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--lp-space-screen-x, 1rem);
  padding-right: var(--lp-space-screen-x, 1rem);
}

/* Breadcrumb — pola single-ebook */
.tk-about-page .tk-about-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--tk-border);
  padding: 0.75rem 0;
  margin-top: 5rem;
}

.tk-about-page .tk-about-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tk-about-page .tk-about-breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.tk-about-page .tk-about-breadcrumb__item a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--tk-blue);
  text-decoration: none;
  font-weight: 500;
}

.tk-about-page .tk-about-breadcrumb__item a:hover {
  color: #3b5599;
  text-decoration: underline;
}

.tk-about-page .tk-about-breadcrumb__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.tk-about-page .tk-about-breadcrumb__sep {
  display: flex;
  color: #9aa5b4;
}

.tk-about-page .tk-about-breadcrumb__sep svg {
  width: 1rem;
  height: 1rem;
}

.tk-about-page .tk-about-breadcrumb__item--current {
  color: var(--tk-text-muted);
  font-weight: 400;
}

/* Shell */
.tk-about-page .tk-about-shell {
  background-color: var(--tk-bg);
  padding: 0;
}

.tk-about-page .tk-about-section {
  padding: 3.5rem 0;
}

.tk-about-page .tk-about-section--white {
  background: #fff;
}

.tk-about-page .tk-about-section__head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.5rem;
}

.tk-about-page .tk-about-section__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--tk-text);
  margin: 0 0 0.75rem;
}

.tk-about-page .tk-about-section__subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--tk-text-body);
  margin: 0;
}

.tk-about-page .tk-about-highlight {
  color: var(--tk-blue-dark);
}

/* Hero — section full width + bg; konten di .tk-about-container (padding LP) */
.tk-about-page .tk-about-hero {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 2.5rem 0 3.5rem;
  background-color: var(--tk-bg);
  background-image: url('../img/tentang-kami/bg-hero.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.tk-about-page .tk-about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.tk-about-page .tk-about-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  color: var(--tk-text);
}

.tk-about-page .tk-about-hero__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--tk-text-body);
  margin: 0;
}

.tk-about-page .tk-about-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tk-about-page .tk-about-hero__buttons .lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tk-about-page .tk-about-hero__buttons .lp-btn_primary {
  background-color: #3954a4;
  border-color: #3954a4;
  color: #ffffff;
  box-shadow: 0 4px 16px -4px rgba(38, 56, 109, 0.24);
}

.tk-about-page .tk-about-hero__buttons .lp-btn_primary:hover {
  background-color: #2f4588;
  border-color: #2f4588;
  color: #ffffff;
}

.tk-about-page .tk-about-hero__buttons .lp-btn_primary:focus-visible {
  background-color: #2f4588;
  border-color: #2f4588;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05), 0 0 0 4px #d1e1f8;
}

.tk-about-page .tk-about-hero__media {
  position: relative;
  border-radius: var(--tk-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 12px 40px rgba(15, 36, 64, 0.12);
}

.tk-about-page .tk-about-hero__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tk-about-page .tk-about-hero__media--video {
  background: #0f2440;
}

.tk-about-page .tk-about-hero__badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tk-text);
}

/* Mission / contribution */
.tk-about-page .tk-about-mission__grid {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 3rem;
}

.tk-about-page .tk-about-mission__content {
  flex: 1 1 0;
  min-width: 0;
}

.tk-about-page .tk-about-mission__photos {
  width: 100%;
}

@media (min-width: 992px) {
  .tk-about-page .tk-about-mission__photos {
    order: -1;
    flex: 0 0 min(48%, 680px);
    width: auto;
  }
}

.tk-about-page .tk-about-mission__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--tk-radius-md);
  object-fit: cover;
}

.tk-about-page .tk-about-mission__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem;
}

.tk-about-page .tk-about-mission__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--tk-text-body);
  margin: 0 0 1.5rem;
}

.tk-about-page .tk-about-mission__label {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.tk-about-page .tk-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tk-about-page .tk-about-feature {
  display: flex;
  gap: 0.875rem;
  align-items: center;
}

.tk-about-page .tk-about-feature__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--tk-radius-sm);
  background: var(--tk-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tk-accent-icon);
}

.tk-about-page .tk-about-feature__icon svg,
.tk-about-page .tk-about-feature__icon img {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.tk-about-page .tk-about-feature__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  line-height: 1.35;
}

.tk-about-page .tk-about-feature__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--tk-text-body);
}

.tk-about-page .tk-about-feature__text p {
  margin: 0;
  width: 100%;
}

/* Activity gallery */
.tk-about-page .tk-about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tk-about-page .tk-about-gallery__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--tk-radius-md);
}

/* Community */
.tk-about-page .tk-about-community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.tk-about-page .tk-about-community__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem;
}

.tk-about-page .tk-about-community__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--tk-text-body);
  margin: 0 0 1.5rem;
}

.tk-about-page .tk-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--tk-radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.tk-about-page .tk-about-btn--primary {
  background: var(--tk-blue);
  color: #fff;
}

.tk-about-page .tk-about-btn--primary:hover {
  background: #3b5599;
  color: #fff;
}

.tk-about-page .tk-about-btn--outline {
  background: transparent;
  color: var(--tk-blue);
  border: 1px solid var(--tk-blue);
}

.tk-about-page .tk-about-btn--outline:hover {
  background: var(--tk-blue-light);
}

.tk-about-page .tk-about-btn img {
  width: 1.125rem;
  height: 1.125rem;
}

/* Merintis / community collage — 2 kolom, baris tidak sejajar (sesuai desain) */
.tk-about-page .tk-about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}

.tk-about-page .tk-about-collage__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.tk-about-page .tk-about-collage__col img {
  display: block;
  width: 100%;
  height: auto;
  flex: none;
  object-fit: cover;
  border-radius: var(--tk-radius-md);
}

/* Kiri: atas landscape pendek, bawah persegi tinggi */
.tk-about-page .tk-about-collage__col:not(.tk-about-collage__col--tall) img:nth-child(1) {
  aspect-ratio: 1152 / 720;
}

.tk-about-page .tk-about-collage__col:not(.tk-about-collage__col--tall) img:nth-child(2) {
  aspect-ratio: 1 / 1;
}

/* Kanan: atas persegi tinggi, bawah landscape pendek */
.tk-about-page .tk-about-collage__col--tall img:nth-child(1) {
  aspect-ratio: 1 / 1;
}

.tk-about-page .tk-about-collage__col--tall img:nth-child(2) {
  aspect-ratio: 1152 / 720;
}

/* Milestone */
.tk-about-page .tk-about-milestone {
  --tk-ms-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tk-ms-duration: 0.8s;
  background: var(--tk-bg);
}

.tk-about-page .tk-about-milestone .tk-about-section__head {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.tk-about-page .tk-about-milestone .tk-about-section__subtitle {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.tk-about-page .tk-about-milestone__slider {
  margin-top: 2.5rem;
}

.tk-about-page .tk-about-milestone__slider:not(.is-ready) {
  visibility: hidden;
}

.tk-about-page .tk-about-milestone__slider.is-ready {
  visibility: visible;
}

.tk-about-page .tk-about-milestone__viewport {
  overflow: hidden;
  margin: 0 -0.5rem;
}

.tk-about-page .tk-about-milestone__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0 1.5rem;
}

.tk-about-page .tk-about-milestone__track.is-syncing,
.tk-about-page .tk-about-milestone__timeline-viewport.is-syncing {
  scroll-snap-type: none;
}

.tk-about-page .tk-about-milestone__track::-webkit-scrollbar {
  display: none;
}

.tk-about-page .tk-about-milestone__slide {
  flex: 0 0 clamp(280px, 46vw, 620px);
  scroll-snap-align: center;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  opacity: 0.42;
  transform: scale(0.84);
  transform-origin: center center;
  transition:
    opacity var(--tk-ms-duration) var(--tk-ms-ease),
    transform var(--tk-ms-duration) var(--tk-ms-ease),
    box-shadow var(--tk-ms-duration) var(--tk-ms-ease);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.tk-about-page .tk-about-milestone__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.52);
  pointer-events: none;
  transition: opacity var(--tk-ms-duration) var(--tk-ms-ease);
}

.tk-about-page .tk-about-milestone__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  box-shadow: 0 16px 48px rgba(15, 36, 64, 0.18);
}

.tk-about-page .tk-about-milestone__slide.is-active::after {
  opacity: 0;
}

.tk-about-page .tk-about-milestone__slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tk-about-page .tk-about-milestone__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 36, 64, 0.82) 100%);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.55;
  text-align: center;
  margin: 0;
}

.tk-about-page .tk-about-milestone__timeline-wrap {
  max-width: 100%;
  margin: 1rem auto 0;
  padding: 0;
}

.tk-about-page .tk-about-milestone__timeline-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  min-width: min-content;
}

.tk-about-page .tk-about-milestone__ruler {
  flex: 0 0 auto;
  width: 100%;
  min-width: 100%;
  height: 1.75rem;
  margin-bottom: 0.35rem;
  background-image: repeating-linear-gradient(to right,
      #b8c2d0 0,
      #b8c2d0 1px,
      transparent 1px,
      transparent 7px);
  background-position: left bottom;
  background-size: 7px 14px;
  background-repeat: repeat-x;
  border-bottom: 1px solid #d5dbe5;
  opacity: 0.85;
  cursor: grab;
}

.tk-about-page .tk-about-milestone__timeline-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.tk-about-page .tk-about-milestone__timeline-viewport.is-dragging,
.tk-about-page .tk-about-milestone__timeline-viewport.is-dragging .tk-about-milestone__ruler {
  cursor: grabbing;
  scroll-snap-type: none;
}

.tk-about-page .tk-about-milestone__timeline-viewport::-webkit-scrollbar {
  display: none;
}

.tk-about-page .tk-about-milestone__timeline {
  display: inline-flex;
  align-items: flex-end;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: nowrap;
  min-width: min-content;
  padding: 0.25rem 0 0.5rem;
}

.tk-about-page .tk-about-milestone__year {
  flex: 0 0 auto;
  scroll-snap-align: center;
  background: none;
  border: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #9aa8bc;
  cursor: pointer;
  padding: 0.25rem 0.35rem;
  text-align: center;
  white-space: nowrap;
  transform: scale(0.58);
  transform-origin: center bottom;
  transition:
    color var(--tk-ms-duration) var(--tk-ms-ease),
    transform var(--tk-ms-duration) var(--tk-ms-ease),
    font-weight var(--tk-ms-duration) var(--tk-ms-ease);
  backface-visibility: hidden;
}

.tk-about-page .tk-about-milestone__year.is-active {
  color: #1b2950;
  font-weight: 700;
  transform: scale(1);
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .tk-about-page .tk-about-milestone {
    --tk-ms-duration: 0.01ms;
  }
}

.tk-about-page .tk-about-milestone__year:focus-visible {
  outline: 0 solid var(--tk-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.tk-about-page .tk-about-milestone__year:focus {
  outline: 0 solid var(--tk-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Ecosystem */
.tk-about-page .tk-about-ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tk-about-page .tk-about-eco-card {
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius-md);
  padding: 1.5rem;
  height: 100%;
}

.tk-about-page .tk-about-eco-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--tk-radius-sm);
  background: var(--tk-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.tk-about-page .tk-about-eco-card__icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.tk-about-page .tk-about-eco-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.tk-about-page .tk-about-eco-card__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--tk-text-body);
  margin: 0;
}

.tk-about-page .tk-about-ecosystem__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  text-align: center;
}

/* Press release */
.tk-about-page .tk-about-press__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.tk-about-page .tk-about-press__header .tk-about-section__title {
  margin: 0;
  text-align: left;
}

.tk-about-page .tk-about-press__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
}

.tk-about-page .tk-about-press-card {
  display: flex;
  gap: 0.875rem;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}

.tk-about-page .tk-about-press-card:hover .tk-about-press-card__title {
  color: var(--tk-blue);
}

.tk-about-page .tk-about-press-card__thumb {
  flex-shrink: 0;
  width: 5.5rem;
  height: 4.25rem;
  border-radius: var(--tk-radius-sm);
  overflow: hidden;
  background: #f4f5f8;
}

.tk-about-page .tk-about-press-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tk-about-page .tk-about-press-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tk-blue);
  margin: 0 0 0.25rem;
}

.tk-about-page .tk-about-press-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tk-about-page .tk-about-press-card__date {
  font-size: 0.75rem;
  color: var(--tk-text-muted);
  margin: 0;
}

/* Partners */
.tk-about-page .tk-about-partner {
  background: var(--tk-bg);
}

.tk-about-page .tk-about-partner__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.tk-about-page .tk-about-partner__item {
  background: #fff;
  border-radius: var(--tk-radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  border: 1px solid var(--tk-border);
}

.tk-about-page .tk-about-partner__item img {
  max-height: 2.25rem;
  width: auto;
  object-fit: contain;
}

.tk-about-page .tk-about-partner__footer {
  text-align: center;
}

/* CTA — selaras dengan homepage (.card-cta-light) */
.tk-about-page .tk-about-cta-section {
  padding-top: 0;
  padding-bottom: 3rem;
}

.tk-about-page .tk-about-cta-section .section__content {
  width: 100%;
}

.tk-about-page .tk-about-cta-section .card-cta-light {
  display: flex;
  position: relative;
  width: 100%;
  height: fit-content;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
  background-color: #3954a4;
  box-shadow: none;
  border-radius: 1.5rem;
  overflow: hidden;
}

.tk-about-page .tk-about-cta-section .card-cta-light>* {
  position: relative;
  z-index: 1;
}

.tk-about-page .tk-about-cta-section .background-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}

.tk-about-page .tk-about-cta-section .background-decor__image {
  position: absolute;
  top: 0;
  right: 0;
}

.tk-about-page .tk-about-cta-section .section__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 46rem;
  width: 100%;
}

.tk-about-page .tk-about-cta-section .section__texts>* {
  text-align: center;
}

.tk-about-page .tk-about-cta-section .section__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-transform: capitalize;
}

.tk-about-page .tk-about-cta-section .section__subtitle_lg {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin: 0;
  color: #f8fafc;
}

.tk-about-page .tk-about-cta-section .section__buttons {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.tk-about-page .tk-about-cta-section .lp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tk-about-page .tk-about-cta-section .section__buttons>.lp-btn {
  width: 100%;
}

.tk-about-page .tk-about-cta-section .lp-btn_plain {
  background-color: #fff;
  color: #3954a4;
  box-shadow: none;
}

.tk-about-page .tk-about-cta-section .lp-btn_plain:hover {
  background-color: #eef2f6;
  color: #3954a4;
}

.tk-about-page .tk-about-cta-section .lp-btn_plain-outline {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.tk-about-page .tk-about-cta-section .lp-btn_plain-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media only screen and (min-width: 36rem) {
  .tk-about-page .tk-about-cta-section .card-cta-light {
    padding: 2.25rem;
  }

  .tk-about-page .tk-about-cta-section .section__title {
    font-size: 1.875rem;
    line-height: 2.75rem;
  }

  .tk-about-page .tk-about-cta-section .section__subtitle_lg {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }

  .tk-about-page .tk-about-cta-section .section__buttons {
    flex-direction: row;
  }

  .tk-about-page .tk-about-cta-section .section__buttons>.lp-btn {
    width: fit-content;
  }
}

@media only screen and (min-width: 48rem) {
  .tk-about-page .tk-about-cta-section .card-cta-light {
    padding: 4rem;
  }

  .tk-about-page .tk-about-cta-section .section__title {
    font-size: 2.25rem;
    line-height: 3.125rem;
  }

  .tk-about-page .tk-about-cta-section .section__subtitle_lg {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .tk-about-page .tk-about-breadcrumb {
    margin-top: 4rem;
  }

  .tk-about-page .tk-about-hero__grid,
  .tk-about-page .tk-about-community__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tk-about-page .tk-about-mission__grid {
    flex-direction: column;
    gap: 2rem;
  }

  .tk-about-page .tk-about-mission__content,
  .tk-about-page .tk-about-mission__photos {
    flex: none;
    width: 100%;
  }

  .tk-about-page .tk-about-features {
    grid-template-columns: 1fr;
  }

  .tk-about-page .tk-about-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tk-about-page .tk-about-ecosystem__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tk-about-page .tk-about-press__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tk-about-page .tk-about-partner__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tk-about-page .tk-about-milestone__slide {
    flex: 0 0 clamp(240px, 78vw, 520px);
    transform: scale(0.88);
  }

  .tk-about-page .tk-about-milestone__slide.is-active {
    transform: scale(1);
  }
}

/* Mobile */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .tk-about-page .tk-about-partner__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tk-about-page .tk-about-press__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .tk-about-page {
    margin-top: 76px !important;
  }

  .tk-about-page .tk-about-shell {
    padding-top: 1.5rem;
  }

  .tk-about-page .tk-about-section {
    padding: 2.5rem 0;
  }

  .tk-about-page .tk-about-features {
    grid-template-columns: 1fr;
  }

  .tk-about-page .tk-about-gallery__grid {
    grid-template-columns: 1fr;
  }

  .tk-about-page .tk-about-collage {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .tk-about-page .tk-about-ecosystem__grid,
  .tk-about-page .tk-about-press__grid {
    grid-template-columns: 1fr;
  }

  .tk-about-page .tk-about-partner__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tk-about-page .tk-about-milestone__track {
    gap: 0.75rem;
  }

  .tk-about-page .tk-about-milestone__slide {
    flex: 0 0 82vw;
    transform: scale(0.9);
  }

  .tk-about-page .tk-about-milestone__slide.is-active {
    transform: scale(1);
  }

  .tk-about-page .tk-about-milestone__timeline {
    gap: 1.25rem;
  }

  .tk-about-page .tk-about-milestone__year {
    font-size: 1.75rem;
    transform: scale(0.62);
  }

  .tk-about-page .tk-about-milestone__year.is-active {
    transform: scale(1);
  }

  .tk-about-page .tk-about-press__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .tk-about-page .tk-about-breadcrumb {
    margin-top: 3.75rem;
  }

}