.nesh-destinations-section {
  width: 100%;
  padding: 20px 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #223329;
}

.nesh-destinations-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.nesh-section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f3ede2;
  color: #8c6b3d;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nesh-destinations-heading-wrap h2 {
  margin: 0 0 12px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: #2f4a3b;
}

.nesh-destinations-heading-wrap p {
  max-width: 820px;
  margin: 0;
  font-size: 22px;
  line-height: 1.6;
  color: #6c756e;
}

.nesh-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #2e6b3d;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nesh-scroll-line {
  width: 34px;
  height: 2px;
  background: #2e6b3d;
  border-radius: 999px;
  display: inline-block;
}

.nesh-scroll-controls {
  display: flex;
  gap: 12px;
}

.nesh-scroll-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #2e6b3d;
  border-radius: 50%;
  background: #2e6b3d;
  color: #ffffff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.nesh-scroll-btn:hover {
  background: #244f2f;
  border-color: #244f2f;
  transform: translateY(-1px);
}

.nesh-destinations-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.nesh-destinations-scroller::-webkit-scrollbar {
  display: none;
}

.nesh-destinations-scroller:active {
  cursor: grabbing;
}

.nesh-destination-card {
  flex: 0 0 360px;
  background: #ffffff;
  border: 1px solid #e8dfd0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nesh-destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.nesh-card-image-wrap {
  position: relative;
  height: 255px;
  overflow: hidden;
  background: #ddd;
}

.nesh-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nesh-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.95);
  color: #47594f;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.nesh-card-content {
  padding: 24px 24px 26px;
  background: #ffffff;
}

.nesh-card-content h3 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.2;
  color: #24392f;
  font-weight: 700;
}

.nesh-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.nesh-card-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #f4f1ea;
  color: #49594f;
  font-size: 14px;
  font-weight: 600;
}

.nesh-card-content p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.75;
  color: #667168;
}

.nesh-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #2e6b3d;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nesh-card-link::after {
  content: "→";
  font-size: 16px;
}

.nesh-card-link:hover {
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .nesh-destinations-heading-wrap h2 {
    font-size: 38px;
  }

  .nesh-destinations-heading-wrap p {
    font-size: 18px;
  }

  .nesh-destination-card {
    flex: 0 0 320px;
  }
}

@media (max-width: 767px) {
  .nesh-destinations-header {
    align-items: stretch;
  }

  .nesh-destinations-heading-wrap h2 {
    font-size: 30px;
  }

  .nesh-destinations-heading-wrap p {
    font-size: 16px;
  }

  .nesh-scroll-hint {
    font-size: 13px;
    margin-top: 14px;
  }

  .nesh-scroll-controls {
    justify-content: flex-start;
  }

  .nesh-scroll-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .nesh-destination-card {
    flex: 0 0 86%;
  }

  .nesh-card-image-wrap {
    height: 220px;
  }

  .nesh-card-content h3 {
    font-size: 24px;
  }
}


/* v1.1.0: nav buttons above cards on the right */
.nesh-destinations-header{
  align-items:flex-start;
  justify-content:flex-start;
}

.nesh-destinations-heading-wrap{
  width:100%;
  max-width:none;
}

.nesh-cards-top-controls{
  width:100%;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  margin:0 0 18px;
}

.nesh-cards-top-controls .nesh-scroll-controls{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:12px;
}

@media (max-width: 767px){
  .nesh-cards-top-controls{
    justify-content:center;
    margin:0 0 14px;
  }

  .nesh-cards-top-controls .nesh-scroll-controls{
    justify-content:center;
  }
}
