.featured-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid var(--thayu-border);
  border-radius: 999px;
  background: var(--thayu-soft);
  color: var(--thayu-green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding: 10px 14px;
  white-space: nowrap;
}

.featured-filter input {
  width: auto;
  accent-color: var(--thayu-green);
  margin: 0;
}

.clear-filters {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--thayu-border);
  border-radius: 999px;
  background: #fff;
  color: var(--thayu-muted);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
  white-space: nowrap;
}

.clear-filters:hover {
  border-color: var(--thayu-green);
  color: var(--thayu-green);
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--thayu-muted);
  font-size: 13px;
  font-weight: 700;
}

.active-filters strong {
  display: inline-flex;
  border: 1px solid rgba(31, 78, 61, .16);
  border-radius: 999px;
  background: rgba(31, 78, 61, .06);
  color: var(--thayu-green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 8px 10px;
}

.results-count {
  color: var(--thayu-muted);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.thayu-google-search {
  background: #ffffff;
  border: 1px solid var(--thayu-border);
  border-radius: 28px;
  box-shadow: var(--thayu-shadow);
  padding: 12px;
  text-align: left;
}

.thayu-google-search table,
.thayu-google-search tbody,
.thayu-google-search tr,
.thayu-google-search td {
  border: 0;
}

.thayu-search:has(.featured-filter) {
  grid-template-columns: 1.5fr .85fr .85fr .7fr auto auto auto;
}

@media (max-width: 1180px) {
  .thayu-search:has(.featured-filter) {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .featured-filter,
  .clear-filters {
    justify-content: flex-start;
    border-radius: 16px;
    width: 100%;
  }

  .thayu-search:has(.featured-filter) {
    grid-template-columns: 1fr;
  }
}
