.destination-page-header,
.destination-detail-header {
  padding: 4px 2px;
}

.destination-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.destination-featured-card {
  display: flex;
  min-width: 0;
  min-height: 132px;
  flex-direction: column;
  gap: 7px;
  padding: 18px;
  border: 1px solid #edf0f2;
  border-radius: 18px;
  background: #fff;
  color: #16181b;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.destination-featured-card:hover {
  border-color: #dfe3e7;
  color: #16181b;
  box-shadow: 0 8px 24px rgba(18, 23, 29, 0.06);
  transform: translateY(-1px);
}

.destination-featured-name {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.destination-featured-meta,
.destination-featured-description {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.destination-tree {
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 18px;
  background: #fff;
}

.destination-tree-node + .destination-tree-node {
  border-top: 1px solid #f0f2f4;
}

.destination-tree-node-child {
  border-top: 1px solid #f5f6f7;
}

.destination-tree-link {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  color: #16181b;
}

.destination-tree-link:hover {
  background: #fafbfc;
  color: #16181b;
}

.destination-tree-main {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 8px;
}

.destination-tree-name {
  overflow: hidden;
  font-size: 15px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.destination-tree-kind,
.destination-tree-count {
  color: #8a9199;
  font-size: 12px;
  white-space: nowrap;
}

.destination-tree-children {
  padding-left: 18px;
  background: #fcfcfd;
}

.destination-breadcrumb {
  font-size: 13px;
}

.destination-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.destination-entry-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.destination-entry-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid #edf0f2;
  border-radius: 18px;
  background: #fff;
}

.destination-entry-body {
  flex: 1 1 auto;
}

.destination-entry-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.destination-entry-title a {
  color: #17191c;
}

.destination-entry-title a:hover {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.destination-entry-summary {
  display: -webkit-box;
  overflow: hidden;
  color: #606770;
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.destination-entry-thumbnail-link {
  display: block;
  width: 116px;
  height: 86px;
}

.destination-entry-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  background: #f2f4f6;
  object-fit: cover;
}

.destination-empty {
  padding: 48px 20px;
  border: 1px dashed #dfe3e7;
  background: #fafbfc;
}

@media (max-width: 767.98px) {
  .destination-featured-grid {
    grid-template-columns: 1fr;
  }

  .destination-featured-card {
    min-height: 112px;
    padding: 16px;
  }

  .destination-tree-link {
    min-height: 50px;
    padding: 11px 14px;
  }

  .destination-tree-children {
    padding-left: 12px;
  }

  .destination-entry-card {
    gap: 12px;
    padding: 15px;
  }

  .destination-entry-thumbnail-link {
    width: 92px;
    height: 76px;
  }

  .destination-kind-filter {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap !important;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .destination-kind-filter::-webkit-scrollbar {
    display: none;
  }
}
