/* Container for search input and filters */
.myth-search {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0 64px;
  box-sizing: border-box;
  min-height: 500px;
  color: #fff;
}

.myth-search nav, 
.myth-search .myth-filters, 
.myth-search .myth-search-container, 
.myth-search .myth-search-results {
    max-width: 1547px;
    width: 100%;
    margin: 0 auto;
}


.myth-search button.pagination-left {
    margin-top: 32px;
    border-color: #fff;
    background-color: #0a0a0a;
}

.myth-search button.pagination-left .arrow {
    background-image: url("/assets/images/icons/nav-arrow-left-white.svg");
}

/* Search input */
.myth-search .myth-search-container {
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.myth-search .myth-search-container .search-icon {
    background-image: url("/assets/images/icons/search-icon-white.svg");
    background-repeat: no-repeat;
    height: 51px;
    max-width: 57px;
    width: 100%;
    position: absolute;
    top: 22px;
}

.myth-search input {
  background: transparent;
  height: auto;
  border: 0;
  border-bottom: 3px solid #fff;
  border-radius: 0;
  padding: 16px 0 0 40px;
  font-size: 30px;
  font-weight: 500;
  font-family: "Offbeat Line";
  color: #fff;
  transition: border-color 0.2s;
  width: 100%;
}

.myth-search input:focus {
  border-color: #fff; /* subtle accent */
  outline: none;
}

.myth-search input::placeholder {
  color: #fff;
}

/* Filters container */
.myth-filters {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.myth-filters::-webkit-scrollbar {
  display: none;
}

/* Filter buttons */
.myth-filters .filter {
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  color: #fff;
  position: relative;
  transition: opacity 0.2s;
  margin: 0 24px 0 0;
  height: 80px;
  font-family: "Review";
}

.myth-filters .filter:first-child {
    
}

.myth-filters .filter.active {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    font-weight: 500;
}

/* Results */
.myth-result {
  padding: 0;
  box-sizing: border-box;
}

.myth-result .bullet {
    margin: 0 8px 0 0;
    background-color: #fff;
    height: 6px;
    width: 6px;
    border-radius: 100px;
}

.myth-result .myth-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 24px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.myth-result a {
  text-decoration: none;
  color: inherit;
}

/* Empty state */
.empty {
  opacity: 0.6;
  font-style: italic;
}

#myth-search-results {
    max-width: 1547px;
    margin: 0 auto;
    width: 100%;
}

#myth-search-results p {
    padding: 24px 0;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .myth-search {
        padding: 0 32px;        
    }
}
