/* Shared styles for Kimberley destination/guide pages */

.guide-hero {
  position: relative;
  padding: clamp(4rem, 12vw, 7rem) 0;
  color: #fff;
  text-align: center;
  background: #3a4633 center / cover no-repeat;
}
.guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(25, 30, 22, 0.55), rgba(25, 30, 22, 0.72));
}
.guide-hero .container {
  position: relative;
  z-index: 1;
}
.guide-hero h1 {
  color: #fff;
  margin: 0 0 0.6rem;
}
.guide-hero .lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 760px;
  margin: 0 auto;
}

.guide-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--warm-gray, #5b5b53);
}
.guide-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.guide-breadcrumb a:hover {
  text-decoration: underline;
}

.guide-prose {
  max-width: 820px;
  margin: 0 auto;
}
.guide-prose .lead {
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  line-height: 1.7;
}
.guide-prose h2 {
  margin: 2.25rem 0 0.75rem;
}
.guide-prose p,
.guide-prose ul {
  line-height: 1.75;
  margin-bottom: 1.1rem;
  color: var(--charcoal, #2f2f2c);
}
.guide-prose ul {
  padding-left: 1.25rem;
}
.guide-prose li {
  margin-bottom: 0.4rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.guide-card {
  background: #fff;
  border: 1px solid rgba(168, 181, 160, 0.25);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.guide-card .guide-icon {
  font-size: 1.5rem;
  color: var(--sage, #7a8a6f);
  margin-bottom: 0.75rem;
}
.guide-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}
.guide-card p {
  margin: 0 0 1.1rem;
  line-height: 1.65;
  color: var(--warm-gray, #5b5b53);
}
.guide-card .guide-more {
  margin-top: auto;
  font-weight: 600;
  color: var(--sage, #7a8a6f);
  text-decoration: none;
}
.guide-card .guide-more:hover {
  text-decoration: underline;
}

.guide-facts {
  background: rgba(168, 181, 160, 0.12);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.guide-facts h3 {
  margin-top: 0;
}
.guide-facts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-facts li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.guide-facts li:last-child {
  border-bottom: none;
}
.guide-facts li i {
  color: var(--sage, #7a8a6f);
  width: 1.25rem;
  margin-right: 0.5rem;
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.98rem;
}
.guide-table th,
.guide-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.guide-table thead th {
  background: rgba(168, 181, 160, 0.15);
  font-weight: 600;
}
.guide-table tbody tr:hover {
  background: rgba(168, 181, 160, 0.07);
}
.guide-table td:last-child {
  white-space: nowrap;
  color: var(--warm-gray, #5b5b53);
}

.guide-cta {
  margin-top: 3rem;
  text-align: center;
  background: rgba(168, 181, 160, 0.12);
  border-radius: 16px;
  padding: clamp(2rem, 6vw, 3rem);
}
.guide-cta h2 {
  margin-top: 0;
}
.guide-cta p {
  max-width: 620px;
  margin: 0 auto 1.5rem;
}
.guide-cta .btn {
  margin: 0.4rem;
}
