/*
Theme Name: ListingHive Child
Theme URI: https://hartleywintney.co.uk/
Description: Child theme for ListingHive
Author: Your Name
Author URI: https://yourwebsite.com/
Template: listinghive
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../listinghive/style.css");

/* Custom styles for alphabetical categories */
.hw-alphabetical-categories {
  margin: 30px 0;
}

.hw-alphabetical-categories h2 {
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  text-align: center;
}

/* Create multi-column layout container */
.letter-groups-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px; /* Negative margin to offset column padding */
}

/* Style for each column */
.letter-column {
  padding: 0 15px;
  width: 100%; /* Full width on mobile */
}

/* Two columns on medium screens */
@media (min-width: 768px) {
  .letter-column {
    width: 50%;
  }
}

/* Three columns on desktop */
@media (min-width: 992px) {
  .letter-column {
    width: 33.333%;
  }
}

/* Style for each letter group inside column */
.letter-group {
  margin-bottom: 20px;
}

.hw-alphabetical-categories ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.hw-alphabetical-categories ul li {
  margin-bottom: 8px;
}

.hw-alphabetical-categories .letter-heading {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #ffc107;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

/* Hide sidebar on front page */
.home #secondary {
  display: none !important;
}

/* Make content full width on front page */
.home #primary {
  width: 100% !important;
}

/* Adjust container on front page */
.home .site-content .container {
  max-width: 1200px;
  padding: 0 15px;
}

/* fix display of contact details in listing block */
.hp-listing__attributes--primary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 10px;
}

/* re-color home page search text */
.hp-form__field--search {
  color: black !important;
}

/* remove sidebar from https://www.hartleywintney.co.uk/listing-category/professional-services/ and everywhere */
.tax-hp_listing_category .hp-page__sidebar {
	display: none !important;
}

/* hide sort dropdown */
.hp-form--listing-sort {
	display: none !important;
}