.hot-press-section {
  padding: 60px;
  background: #fff;
}

.trending-header {
  margin-bottom: 24px;
}

.trending-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Category Pills */
.hot-press-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  align-items: center;
}

.hot-press-filters .pill {
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  background: #fff;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hot-press-filters .pill:hover {
  border-color: #4a3f8f;
  color: #4a3f8f;
  background: #f8f7fc;
}

.hot-press-filters .pill.active {
  background: #4a3f8f;
  color: #fff;
  border-color: #4a3f8f;
}

/* More Dropdown */
.more-dropdown-wrapper {
  position: relative;
}

.hot-press-filters .more-pill {
  background: #f5f5f5;
  color: #666;
  border-color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hot-press-filters .more-pill i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.hot-press-filters .more-pill.active i {
  transform: rotate(180deg);
}

.hot-press-filters .more-pill:hover {
  background: #4a3f8f;
  color: #fff;
  border-color: #4a3f8f;
}

.more-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px;
  min-width: 200px;
  z-index: 100;
  display: none;
}

.more-dropdown.show {
  display: block;
}

.more-dropdown .dropdown-pill {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.more-dropdown .dropdown-pill:hover {
  background: #f8f7fc;
  color: #4a3f8f;
}

.more-dropdown .dropdown-pill.active {
  background: #4a3f8f;
  color: #fff;
}

/* Posts Container */
#hotPressPosts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 400px;
}

/* Loading State */
#hotPressPosts.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Card */
.hot-press-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hot-press-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hot-card-inner {
  display: flex;
  gap: 24px;
  padding: 20px;
}

.hot-thumb {
    flex-shrink: 0;
    width: 145px;
    height: 115px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    background: #f5f5f5;
}

.hot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hot-press-card:hover .hot-thumb img {
  transform: scale(1.05);
}

.hot-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hot-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 0px;
}

.hot-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.hot-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.hot-title a:hover {
  color: #4a3f8f;
}

.hot-tag {
  display: inline-block;
  padding: 2px 4px;
  background: #ececfe;
  color: #454ffb;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid #b8befc;
}

.hot-excerpt {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0 150px 0px 0px;
}

.hot-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: #999;
  margin-top: auto;
}

/* Pagination - FIXED DESIGN */
#hotPressPagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pagination-wrapper .page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  padding: 0 12px;
  background: #fff;
}

.pagination-wrapper .page-numbers:hover {
  border-color: #4a3f8f;
  background: #f8f7fc;
  color: #4a3f8f;
}

.pagination-wrapper .page-numbers.current {
  background: #4a3f8f;
  color: #fff;
  border-color: #4a3f8f;
  pointer-events: none;
}

.pagination-wrapper .page-numbers.dots {
  border: none;
  background: transparent;
  pointer-events: none;
}

/* Properties Box */
.properties-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #e1f5fe 100%);
  border-radius: 16px;
  padding: 32px 24px;
  position: sticky;
  top: 100px;
}

.properties-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.properties-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0 0 24px;
}

.country-card {
  background: #fff;
  border-radius: 12px;
  padding: 4px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.country-card:hover {
  border-color: #4a3f8f;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(74, 63, 143, 0.15);
}

.country-flag {
  font-size: 32px;
  margin-bottom: 0px;
  display: block;
}

.country-name {
  font-size: 10px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .hot-card-inner {
    flex-direction: row;
    padding: 16px;
  }
  .hot-thumb {
    width: 100px;
    height: 100px;
  }
  .hot-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 8px;
  }
  .hot-tag {
    order: 1;
  }
  .hot-title {
    order: 2;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hot-excerpt {
    display: none;
  }
  .hot-meta .meta-author {
    display: none;
  }
  .hot-meta {
    font-size: 9px;
  }
  .properties-box {
    position: relative;
    top: 0;
  }
}

@media (max-width: 576px) {
  .hot-press-section {
    padding: 40px 20px !important;
    background: #fff;
    margin-top: 0 !important;
  }
  
  .mobile-spacer-top {
      margin-top: 4rem !important;
  }
  .trending-title {
    font-size: 18px !important;
  }
  .properties-title {
    font-size: 18px !important;
  }
  .properties-subtitle {
    font-size: 12px !important;
}

  .hot-press-filters {
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
    padding-bottom: 0px;
    margin-bottom: 15px;
    scrollbar-width: none;
  }

  .hot-press-filters::-webkit-scrollbar {
    display: none;
  }
  .hot-press-filters .pill {
    padding: 8px 16px;
    font-size: 13px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .hot-title {
    font-size: 14px;
  }
  .more-dropdown {
    min-width: 180px;
  }
  .pagination-wrapper .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
