/* ========== 张家界景点页（Attractions） ========== */
.attr-page {
  --attr-accent: #f98516;
  --attr-accent-hot: #ff8a00;
  --attr-bg-alt: #f5f5f5;
  --attr-text: #222;
  --attr-muted: #666;
  --attr-radius: 9px;
  --attr-shadow: 0 2px 3px -1px #d2d2d2;
}

/* Banner */
.attr-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  max-height: 420px;
}
.attr-banner img {
  width: 100%;
  height: auto;
  min-height: 180px;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* Breadcrumb */
.attr-page .breadcrumb-wrap {
  padding: 16px 0 0;
}
.attr-page .breadcrumb {
  font-size: 13px;
  color: #888;
}
.attr-page .breadcrumb a:hover {
  color: var(--attr-accent);
  text-decoration: underline;
}
.attr-page .breadcrumb .sep {
  margin: 0 6px;
  color: #bbb;
}
.attr-page .breadcrumb .current {
  color: #333;
}

/* Page head */
.attr-head {
  padding: 20px 0 28px;
}
.attr-head h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--attr-text);
}
.attr-head .attr-en-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--attr-accent-hot);
  margin-top: 4px;
}
.attr-intro {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  max-width: 920px;
}
.attr-intro p + p {
  margin-top: 12px;
}

/* Section */
.attr-section {
  padding: 36px 0 40px;
}
.attr-section.alt-bg {
  background: var(--attr-bg-alt);
}
.attr-section .section-head {
  margin-bottom: 24px;
}
.attr-section .section-head h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--attr-text);
}
.attr-section .section-head p {
  font-size: 14px;
  color: var(--attr-muted);
  line-height: 1.6;
}

/* Overview grid — interaction links, not decorative cards */
.attr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
}
.attr-item {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.attr-item:hover {
  opacity: 0.92;
}
.attr-item:hover .attr-item-title {
  color: var(--attr-accent);
}
.attr-item-media {
  display: block;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 12px;
}
.attr-item-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.attr-item:hover .attr-item-media img {
  transform: scale(1.04);
}
.attr-item-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--attr-text);
  margin-bottom: 4px;
  transition: color 0.2s ease;
}
.attr-item-en {
  font-size: 13px;
  color: var(--attr-accent-hot);
  margin-bottom: 8px;
}
.attr-item-blurb {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
}
.attr-item-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--attr-accent);
  font-weight: 600;
}

/* Highlights */
.attr-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  gap: 12px;
}
.attr-highlights li {
  position: relative;
  padding: 12px 16px 12px 36px;
  background: #fff;
  border-left: 3px solid var(--attr-accent);
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  box-shadow: var(--attr-shadow);
}
.attr-highlights li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 1.15em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--attr-accent);
}

/* Figure-text blocks */
.attr-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}
.attr-block:last-child {
  margin-bottom: 0;
}
.attr-block.reverse {
  grid-template-columns: 1fr 1.05fr;
}
.attr-block.reverse .attr-block-media {
  order: 2;
}
.attr-block.reverse .attr-block-body {
  order: 1;
}
.attr-block-media {
  overflow: hidden;
  line-height: 0;
}
.attr-block-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.attr-block-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--attr-text);
}
.attr-block-body p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.attr-block-body p + p {
  margin-top: 10px;
}

/* Related / CTA strip */
.attr-related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 8px;
}
.attr-related a {
  font-size: 14px;
  color: var(--attr-accent);
  text-decoration: none;
  font-weight: 600;
}
.attr-related a:hover {
  text-decoration: underline;
}
.attr-cta {
  margin-top: 28px;
  padding: 22px 24px;
  background: #fff;
  border-top: 3px solid var(--attr-accent);
  box-shadow: var(--attr-shadow);
}
.attr-cta p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}
.attr-cta .booking_btn,
.attr-cta-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--attr-accent-hot);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.attr-cta .booking_btn:hover,
.attr-cta-btn:hover {
  background: var(--attr-accent);
  color: #fff;
}
.attr-cta-btn.outline {
  background: #fff;
  color: var(--attr-accent);
  border: 1px solid var(--attr-accent);
  margin-left: 8px;
}
.attr-cta-btn.outline:hover {
  background: var(--attr-accent);
  color: #fff;
}

/* Fade-in motion */
@keyframes attrFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.attr-head,
.attr-grid .attr-item,
.attr-block,
.attr-highlights li {
  animation: attrFadeUp 0.55s ease both;
}
.attr-grid .attr-item:nth-child(2) { animation-delay: 0.06s; }
.attr-grid .attr-item:nth-child(3) { animation-delay: 0.12s; }
.attr-grid .attr-item:nth-child(4) { animation-delay: 0.18s; }
.attr-grid .attr-item:nth-child(5) { animation-delay: 0.24s; }
.attr-grid .attr-item:nth-child(6) { animation-delay: 0.3s; }
.attr-grid .attr-item:nth-child(7) { animation-delay: 0.36s; }
.attr-grid .attr-item:nth-child(8) { animation-delay: 0.42s; }
.attr-highlights li:nth-child(2) { animation-delay: 0.08s; }
.attr-highlights li:nth-child(3) { animation-delay: 0.16s; }
.attr-highlights li:nth-child(4) { animation-delay: 0.24s; }

/* Sitemap */
.sitemap-groups {
  display: grid;
  gap: 32px;
}
.sitemap-group h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--attr-text);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--attr-accent);
  display: inline-block;
}
.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px 18px;
}
.sitemap-list a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
  line-height: 1.5;
}
.sitemap-list a:hover {
  color: var(--attr-accent);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .attr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .attr-block,
  .attr-block.reverse {
    grid-template-columns: 1fr;
  }
  .attr-block.reverse .attr-block-media,
  .attr-block.reverse .attr-block-body {
    order: unset;
  }
  .attr-block-media img,
  .attr-item-media img {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .attr-grid {
    grid-template-columns: 1fr;
  }
  .attr-head h1 {
    font-size: 22px;
  }
  .attr-section .section-head h2 {
    font-size: 20px;
  }
  .attr-banner img {
    min-height: 140px;
    max-height: 240px;
  }
}
