/* Tanzania destination hub & park pages */
.tst-dest-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}
.tst-dest-fact {
  background: #f7f4ef;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(86, 47, 7, 0.08);
}
.tst-dest-fact strong {
  display: block;
  color: #562f07;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tst-dest-fact span {
  color: #353844;
  font-size: 15px;
  line-height: 1.45;
}
.tst-dest-faq h2 {
  color: #562f07;
  margin: 32px 0 16px;
  font-size: 28px;
}
.tst-dest-faq h3 {
  color: #562f07;
  margin: 20px 0 8px;
  font-size: 18px;
}
.tst-dest-faq p {
  margin: 0 0 12px;
  color: #353844;
  line-height: 1.7;
}
.tst-dest-why {
  margin: 0 0 24px;
  padding-left: 20px;
  color: #353844;
  line-height: 1.7;
}
.tst-dest-why li { margin-bottom: 10px; }

/* Archive hub layout */
.tst-dest-archive-content {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 12px;
}
.tst-dest-kicker {
  color: #bc870e;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 600;
}
.tst-dest-headline {
  color: #562f07;
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 16px;
  line-height: 1.2;
}
.tst-dest-intro p {
  color: #353844;
  line-height: 1.75;
  margin: 0 0 14px;
}
.tst-dest-section-title {
  color: #562f07;
  font-size: 26px;
  margin: 0 0 10px;
}
.tst-dest-section-lead {
  color: #353844;
  margin: 0 0 20px;
  line-height: 1.6;
}
.tst-dest-parks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 36px;
}
.tst-dest-park-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(86, 47, 7, 0.08);
  box-shadow: 0 8px 24px rgba(53, 56, 68, 0.06);
}
.tst-dest-park-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.tst-dest-park-card__media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.tst-dest-park-card__title {
  font-size: 18px;
  margin: 14px 16px 8px;
  color: #562f07;
}
.tst-dest-park-card__cta {
  display: inline-block;
  margin: 0 16px 16px;
  color: #bc870e;
  font-weight: 600;
  font-size: 14px;
}
.tst-dest-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 8px;
}
.tst-dest-cta {
  display: inline-block;
  background: #562f07;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.tst-dest-cta--secondary {
  background: transparent;
  color: #562f07 !important;
  border: 2px solid #562f07;
}
@media (max-width: 991px) {
  .tst-dest-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tst-dest-parks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
  .tst-dest-facts { grid-template-columns: 1fr; }
  .tst-dest-parks-grid { grid-template-columns: 1fr; }
}