.country-tour {
    padding: 70px 0;
}
.country-tour-cards {
    padding: 0 0 64px;
}
.country-tour:nth-child(even) {
    background: #FFF6D4;
}
.country-tour .container__header{
    margin: 0;
}

.country-tour .container__header .container__header-title {
  justify-content: space-between;
}

.tour-list__container {
  padding-top: 30px;
}

.tours-landing .tour-list__view {
    padding: 0;
    margin: 0;
}

.is-collapsed .popular-tour-section,
.is-collapsed .tour-list__container {
    display: none;
}

.popular-tour-section .container__header{
  margin-bottom: 44px;
}
.is-collapsed {
    padding-bottom: 0;
    transition: background 0.3s ease;
}
.country-tour.is-collapsed:hover {
  background: #EDEDEE;
}
.country-tour.is-collapsed:nth-child(even):hover {
  background: #FFEFB5;
}
.search-header-title {
  color: #0D0F10;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  padding: 20px 0 30px;
  gap: 0 10px;
}

.container__header .hot-tour-link.hidden,
.hidden {
  display: none;
}

.container__header .header-title-link {
  display: flex;
  align-items: center;
  gap: 0 12px;
  padding: 8px;
  font-size: 24px;
  color: #0D3A5D;
  font-weight: 800;
}
.header-title-link-arrow {
  opacity: 0;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.open-hot-tour svg circle,
.open-hot-tour svg path,
.container__header .hot-tour-link svg circle,
.container__header .hot-tour-link svg path{
  transition: all 0.3s ease;
  color: #8F9498;
}
@media (hover: hover) {
  .header-title-link:hover {
    border-radius: 12px 56px 56px 12px;
    background: rgba(221, 222, 224, 0.50);
  }

  .header-title-link:hover .header-title-link-arrow {
    opacity: 1;
  }
  
  .open-hot-tour:hover svg path,
  .container__header .hot-tour-link:hover svg path {
    color: #404A51;
  }
  .open-hot-tour:hover svg circle,
  .container__header .hot-tour-link:hover svg circle{
    color: #404A51;
    fill: #fff;
    fill-opacity: 1;
  }
}

.open-hot-tour {
  transform: rotate(90deg);
  border: none;
  background: none;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.open-hot-tour.is-rotated {
  transform: rotate(-90deg);
}

.skeleton {
  padding: 24px;
}

.skeleton__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.skeleton__avatar {
  width: 40px;
  height: 42px;
  border-radius: 12px;
  background: #EDEDED;
}

.skeleton__title {
  width: 280px;
  height: 42px;
  border-radius: 12px;
  background: #EDEDED;
}
.skeleton__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.skeleton-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skeleton-card__media {
  height: 140px;
  border-radius: 12px;
  background: #EDEDED;
}

.skeleton-card__line {
  height: 32px;
  background: #EDEDED;
  border-radius: 12px;
}

.skeleton-card__line--lg {
  width: 90%;
}

.skeleton-card__line--md {
  width: 70%;
}

.skeleton-card__line--sm {
  width: 50%;
}

@media (max-width: 767px) {
  .search-header-title {
    font-size: 30px;
  }
  .country-tour .container__header .header-title-link,
  .country-tour .container__header .container__header-title {
    font-size: 18px;
  }
  .container__header a span {
    display: block;
  }
  .tour-list__container {
    margin-top: 0;
  }
  .skeleton__grid {
    grid-template-columns: 1fr;
  }

}
