.home-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.intro-section {
  margin: 6px 0 30px;
  background: linear-gradient(135deg, #f0e6d3 0%, #f7f3e9 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
}

.intro-kicker {
  margin: 0 0 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.intro-title {
  margin: 0 0 10px;
  font-size: 32px;
}

.intro-copy p {
  margin: 0;
  max-width: 920px;
  color: #354238;
}

.favorites-heading {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 22px;
  color: #1f2a22;
}

.trek-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trek-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.15s;
}

.trek-card:hover {
  box-shadow: 0 10px 30px rgba(58, 49, 33, 0.15);
  transform: translateY(-3px);
  text-decoration: none;
}

.trek-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #dfe8e2;
  overflow: hidden;
}

.trek-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trek-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c6ddd1, #a3c4b5);
}

.trek-card-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  line-height: 1;
}

.trek-card-body {
  padding: 12px 14px 16px;
}

.trek-card-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.trek-card-location {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--muted);
}

.trek-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #444;
}

.trek-card-difficulty {
  background: #f2e5d6;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  color: var(--accent-dark);
}

.trek-card-rating {
  font-weight: 600;
}

.review-count {
  font-weight: 400;
  color: var(--muted);
}

.destination-section {
  margin-top: 40px;
}

.destination-title {
  margin: 0 0 18px;
  font-size: 30px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.destination-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 106px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  text-decoration: none;
  color: var(--text);
  background: #fff;
}

.destination-card:hover {
  text-decoration: none;
  border-color: #cebfa6;
  box-shadow: 0 10px 24px rgba(63, 51, 28, 0.12);
}

.destination-name {
  font-size: 17px;
  font-weight: 700;
}

.destination-count {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
