/* SEARCH BAR STYLING */
.search-map-bar-container {
  margin: 1.25rem auto 0;
  width: 100%;
  max-width: 1200px;
  background-color: white;
  padding: 0.5rem 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.search-map-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

.search-map-bar .search-icon img,
.search-map-bar .direction-icon img {
  width: 36px;
  height: 36px;
}

.search-map-input {
  flex: 1;
  margin: 0 0.75rem;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  background-color: transparent;
  outline: none;
}

/* MAP LAYOUT */
.map-layout {
  display: flex;
  margin-top: 1rem;
}

/* LEFT SIDEBAR */
.map-sidebar {
  width: 60px;
  background-color: #f4f1ee;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
  gap: 1.5rem;
}

.map-icon img {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

/* MAP CONTENT */
.map-main {
  flex-grow: 1;
  position: relative;
  background: #e0e0e0;
}

/* TOP FILTER BUTTONS */
.map-top-buttons {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  background: white;
  padding: 0.5rem 1rem;
  gap: 0.75rem;
  border-bottom: 1px solid #ddd;
}

.map-top-buttons button {
  white-space: nowrap;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 0.85rem;
}

/* MAP IMAGE AREA */
.map-area {
  position: relative;
}

.map-area img {
  width: 100%;
  height: auto;
  display: block;
}

/* ICON POSITIONS */
.map-bottom-left {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.map-bottom-right {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 0.75rem;
}

.map-bottom-left img,
.map-bottom-right img {
  width: 28px;
  height: 28px;
  cursor: pointer;
}
/* Constrain the full map layout to match nav/search max width */
.map-layout-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

#map {
  height: 500px; /* Or any desired height */
  width: 100%;
  z-index: 0;
}


/* Search Filters Section */
.map-search-filters {
  background: #f4f1ee;
  padding: 1rem;
  max-width: 1200px;
  margin: 1rem auto;
  border-radius: 8px;
  box-sizing: border-box;
}

/* Flex Row (mobile first column stacking) */
.map-search-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .map-search-row {
    flex-direction: row;
  }
}

.map-search-col {
  width: 100%;
}

.col-8 {
  flex: 2;
}

.col-4 {
  flex: 1;
}

.map-search-input-wrapper {
  display: flex;
  align-items: center;
  background: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.map-search-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  margin-left: 0.5rem;
  font-family: inherit;
  background: transparent;
}

.map-search-icon {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

/* Maroon search button */
.map-search-btn {
  width: 100%;
  height: 100%;
  background-color: #6d2232;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Checkbox row */
.map-search-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.map-search-checkboxes label {
  flex: 1 1 45%;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


/* ============= Hot New Businesses (Yelp-style list) ============= */
.hot-new-businesses, .search-result-businesses {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem; /* added horizontal padding */
  background: #fff;
  box-sizing: border-box;
}

.hot-title, .search-result-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 0.5rem;
}

.hot-divider, .search-result-divider {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 0.75rem;
}

.hot-list, .search-result-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hot-item , .search-item{
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e6e6e6; /* thin gray line under each item */
}

.hot-thumb, .search-result-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #f4f1ee;
}

.hot-info, .search-result-info {
  flex: 1;
  min-width: 0; /* allow truncation if needed */
}

.hot-name, .search-result-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1f1f1f;
  margin-bottom: 0.25rem;
}

.hot-rating, .search-result-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

/* Stars */
.hot-stars, .search-result-stars {
  display: inline-flex;
  gap: 2px;
}

.hot-star, .search-result-star {
  width: 16px;
  height: 16px;
  fill: #ffb400; /* star gold */
}

.search-result-star.empty path { fill: #e0e0e0; }

/* Numeric rating shown above the stars */
.search-result-rating-label {
  display: block;      /* force its own line */
  font-weight: 700;    /* bold */
  line-height: 1.1;
  margin-bottom: 4px;  /* space before stars */
  color: #1f1f1f;
  font-variant-numeric: tabular-nums; /* neat number alignment */
}

.search-result-status {
  margin-top: 6px;
  display: flex;
  flex-direction: column;   /* stack rows vertically */
  gap: 6px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 8px;                 /* space between label and pill */
  font-size: 0.95rem;
}

.status-label {
  color: #555;
  font-weight: 600;
}

/* Base pill look */
.status-pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.2;
  border: 1px solid #e5e5e5;
  background: #f6f6f6;
  color: #222;
  text-transform: capitalize;     /* “temporarily closed” -> “Temporarily Closed” */
}

/* OPTIONAL: Color accents without template logic */
.status-pill[data-status="open" i],
.status-pill[data-open-now="True"] {
  color: #155724;
  background: #d4edda;
  border-color: #c3e6cb;
}

.status-pill[data-status*="closed" i],
.status-pill[data-open-now="False"] {
  color: #8a1f1f;
  background: #f8d7da;
  border-color: #f5c6cb;
}

.status-pill[data-status="coming soon" i] {
  color: #664d03;
  background: #fff3cd;
  border-color: #ffecb5;
}

/* Review count (manipulate by id if desired) */
.hot-review-count, .search-result-review-count {
  font-size: 0.95rem;
  color: #333;
}

/* Category */
.hot-category, .search-result-category {
  color: #777;
  font-size: 0.95rem;
}


/* Explore Section */
.explore-atlanta-section {
  padding: 2rem 1rem;
  background: #f4f1ee;
  max-width: 1200px;
  margin: 0 auto;
}

.explore-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4a0e1b;
  margin-bottom: 1.5rem;
}

/* Grid layout for cards */
.explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}



.explore-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.explore-image img {
  width: 100%;
  height: auto;
  display: block;
}

.explore-content {
  padding: 1rem;
}

.explore-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2d2d2d;
}

.explore-content p {
  font-size: 0.95rem;
  color: #555;
}

/* ======================= */
/* NEW MENU SECTION STYLES */
/* ======================= */

.menu-section {
  background-color: #7A3B4E; /* maroon background */
  padding-bottom: 1.5rem;
}

.menu-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  background-color: #fff;
  padding: 0 16px;
}

.btn-open-app {
  display: flex;
  align-items: center;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn-open-app img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.menu-logo img {
  max-height: 32px;
  width: auto;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle img {
  width: 24px;
  height: 24px;
}

.menu-search {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  margin: 20px 16px 0;
  padding: 0 12px;
  height: 44px;
}

.menu-search img {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

.menu-search-input {
  flex: 1;
  border: none;
  outline: none;
  margin-left: 10px;
  font-size: 1rem;
  font-family: inherit;
}

/* ===============================
   Pagination (search map)
   =============================== */
   .pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem auto 0;
    padding: 0.75rem 1rem;
    max-width: 1100px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  }
  
  .pager .btn {
    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.55rem 0.9rem;
    border-radius: 6px;
    background: #7b1e1e;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    transition: transform 0.05s ease, background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  }
  
  .pager .btn:hover {
    background: #681919;
  }
  
  .pager .btn:active {
    transform: translateY(1px);
  }
  
  .pager .btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(123, 30, 30, 0.25);
  }
  
  .pager .btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    background: #a98e8e;
  }
  
  .pager-label {
    font-size: 0.95rem;
    color: #444;
    min-width: 120px;
    text-align: center;
    user-select: none;
  }


/* CTA button under Hot New Businesses */
.hot-cta, .search-results-cta {
  max-width: 1200px;
  margin: 1.5rem auto 2rem;
  text-align: center;
}

.hot-cta-btn, .search-results-cta-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #000;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.hot-cta-btn:hover {
  background: #000;
  color: #fff;
}

/* Best Restaurants section */
.best-restaurants {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
  background: #fff;
  box-sizing: border-box;
}

.best-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.best-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.best-list a {
  text-decoration: none;
  font-size: 1rem;
  color: #555;
}

.best-list a:hover {
  color: #000;
  text-decoration: underline;
}
  
/* Verified ATL Local badge */
.vetted-badge {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #155724;                /* deep green for trust */
  background-color: #d4edda;     /* light green background */
  border: 1px solid #c3e6cb;     /* subtle border */
  border-radius: 12px;
  letter-spacing: 0.2px;
}

.vetted-badge::before {
  content: "✔ ";                 /* checkmark icon */
  color: #28a745;                /* brighter green check */
  font-weight: bold;
}

/* ===============================
   Mike Tour Intro / Verified Explainer
   =============================== */
   .mike-tour
 
    {
    background: #fff;
    padding: 1rem 1.5rem 1.25rem;
    box-sizing: border-box;
  }


  
  .mike-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: hidden;
    border: 1px solid #f0f0f0;
  }

    .letters {
    background: #fff;
    padding: 1rem 1.5rem 1.25rem;
    box-sizing: border-box;
  }

    .letters-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: hidden;
    border: 1px solid #f0f0f0;
  }
  
  /* Photo */
  .mike-photo {
    position: relative;
    background: #f6f6f6;
  }
  .mike-photo img {
    width: 100%;
    height: auto;       /* let it scale without cropping */
    display: block;
    object-fit: contain; /* keeps the whole image visible */
    max-height: 350px;  /* optional: keeps very tall images from dominating */
  }
  
  /* Copy */
  .mike-copy  {
    padding: 1rem 1rem 1.25rem;
  }

  .letters{
    padding: 1rem 1rem 1.25rem;
  }
  
  .mike-copy h2{
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #7A3B4E; /* brand maroon */
    font-weight: 800;
  }
  .letters-copy h2{
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #7A3B4E; /* brand maroon */
    font-weight: 800;
  }
  
  .mike-lede {
    margin: 0 0 0.5rem;
    color: #2b2b2b;
    font-size: 1rem;
  }
  
  .mike-verified {
    margin: 0 0 0.75rem;
    color: #333;
    font-size: 0.975rem;
  }

    .letters-p {
    margin: 0 0 0.75rem;
    color: #333;
    font-size: 0.975rem;
  }
  
  /* Badge styled to stand out, aligned with brand */
  .mike-badge-green {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: #d4edda;     /* light green background */
    color: #155724;          /* dark green text */
    border: 1px solid #c3e6cb;
    font-weight: 600;
    font-size: 0.8rem;
  }
  .mike-badge-green::before {
    content: "✓";
    font-weight: 900;
    color: #28a745;          /* brighter green check */
  }
  
  /* CTA */
  .mike-cta {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.6rem 0.9rem;
    background: #7A3B4E;           /* brand maroon */
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.05s ease, background 0.2s ease, box-shadow 0.2s ease;
  }
  .mike-cta:hover {
    background: #6b3343;
    box-shadow: 0 8px 18px rgba(122, 59, 78, 0.25);
  }
  .mike-cta:active {
    transform: translateY(1px);
  }


/* Optional: polish emoji markers & popups */
.emoji-icon { background: transparent; border: 0; }
.emoji-pin { font-size: 22px; line-height: 1; transform: translateY(-2px); text-shadow: 0 1px 1px rgba(0,0,0,0.25); }
.leaflet-popup-content .popup-title { font-weight: 700; margin-bottom: 4px; }
.leaflet-popup-content .popup-addr { color: #444; margin-bottom: 4px; }
.leaflet-popup-content .popup-meta { color: #666; font-size: 0.9rem; }
.leaflet-popup-content .map-badge {
  display: inline-block; margin-left: 6px; padding: 2px 6px; border-radius: 999px;
  background: #d4edda; color: #155724; border: 1px solid #c3e6cb; font-size: 0.75rem; font-weight: 700;
}
.leaflet-popup-content .map-closed { margin-top: 4px; color: #8a1f1f; font-weight: 700; }


/* ===== Read Full Review button (match News list styling) ===== */
/* Works with: <a class="read-more" href="#">Read Full Review</a> inside .hot-item */

.hot-item .read-more {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.6rem 1.1rem;
  background-color: #7A3B4E;   /* brand maroon */
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  transition: background-color 0.2s ease, transform 0.05s ease, box-shadow 0.2s ease;
}

.search-item .read-more {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.6rem 1.1rem;
  background-color: #7A3B4E;   /* brand maroon */
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  transition: background-color 0.2s ease, transform 0.05s ease, box-shadow 0.2s ease;
}

.hot-item .read-more:hover {
  background-color: #6b3343;
  box-shadow: 0 6px 14px rgba(122, 59, 78, 0.25);
}

.search-item .read-more:hover {
  background-color: #6b3343;
  box-shadow: 0 6px 14px rgba(122, 59, 78, 0.25);
}

.hot-item .read-more:active {
  transform: translateY(1px);
}

.search-item .read-more:active {
  transform: translateY(1px);
}


.hot-item .read-more:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 59, 78, 0.28);
}

.search-item .read-more:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 59, 78, 0.28);
}

/* (Optional) Keep legacy news classes working if used elsewhere */
.read-more-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background-color: #7A3B4E;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, transform 0.05s ease, box-shadow 0.2s ease;
}
.read-more-btn:hover { background-color: #6b3343; box-shadow: 0 6px 14px rgba(122,59,78,0.25); }
.read-more-btn:active { transform: translateY(1px); }
.read-more-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(122,59,78,0.28); }

/* Join Atlanta Local snippet styling */
/* Teaser banner */
.atl-teaser { background:#fff; }
.atl-teaser__inner{
  max-width:1200px; margin:1rem auto; padding:0.85rem 1rem;
  border:1px solid #e9dfe3; border-radius:12px; display:flex; gap:1rem; align-items:center;
  box-shadow:0 1px 6px rgba(0,0,0,0.04);
}
.atl-teaser__text{ color:#2b2b2b; }
.atl-teaser__btn{
  margin-left:auto; background:#7A3B4E; color:#fff; text-decoration:none;
  padding:0.6rem 1rem; border-radius:8px; font-weight:700;
}
.atl-teaser__btn:hover{ background:#6b3343; }
@media (max-width:720px){
  .atl-teaser__inner{ flex-direction:column; align-items:flex-start; }
  .atl-teaser__btn{ margin-left:0; width:100%; text-align:center; }
}




@media (min-width: 768px) {

  .map-search-checkboxes label {
    flex: 1 1 30%;
  }
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hot-thumb,.search-result-thumb { width: 72px; height: 72px; }
  .hot-name, .search-result-name  { font-size: 1.1rem; }

  .mike-card {
    grid-template-columns: 1.2fr 1.8fr;
  }
  .mike-copy{
    padding: 1.25rem 1.25rem 1.5rem 1rem;
  }

.letters-card {
    grid-template-columns: 1.2fr 1.8fr;
  }
  .letters-copy{
    padding: 1.25rem 1.25rem 1.5rem 1rem;
  }

  .mike-copy h2{
    padding: 1.25rem 1.25rem 1.5rem 1rem;
  }
  
  .letters-copy h2{
    font-size: 1.35rem;
  }
}

/* =======================
   Letters Section Styling
   ======================= */
.letters {
    background-color: #ffffff; /* white background */
    padding: 2rem 1.5rem;      /* more vertical padding for full coverage */
    box-sizing: border-box;
    text-align: center;        /* center the letters */
}

.letters-copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;                /* spacing between buttons */
}

.letter-btn {
    font-size: 1.8rem;           /* much bigger letters */
    font-weight: 700;
    color: #7A3B4E;           /* brand maroon color */
    background: none;
    border: 2px solid #7A3B4E; /* optional border for clarity */
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, transform 0.1s;
}

.letter-btn:hover {
    background-color: #7A3B4E;
    color: #ffffff;
    transform: scale(1.1);
}

.letter-btn.active {
    background-color: #7A3B4E;
    color: #ffffff;
}


@media (min-width: 1024px) {
  .mike-copy h2{
    font-size: 1.5rem;
  }

  .letters-copy h2{
    font-size: 1.5rem;
  }

  .mike-lede {
    font-size: 1.05rem;
  }
}


/* ===========================================
   Mobile: stack search results (image left)
   =========================================== */
   @media (max-width: 480px) { /* tweak to 430px if you prefer */
    /* Each result becomes a block card instead of a row */
    .search-item {
      display: block;
      padding: 0.75rem 0;
    }
  
    /* Classic media-object: float the thumb left */
    .search-result-thumb {
      float: left;
      width: 64px;  /* keep your current size */
      height: 64px;
      margin: 2px 12px 8px 0; /* space to the right/bottom of image */
    }
  
    /* Ensure the text block sits to the right of the floated image and stacks */
    .search-result-info {
      overflow: hidden;    /* establishes a new block formatting context to avoid wrap-under */
    }
  
    /* Stack all children inside info one-per-line */
    .search-result-info > * {
      display: block;
      margin-top: 6px;     /* gentle vertical rhythm */
    }
  
    /* Force inline/flex bits to behave like blocks on mobile */
    .search-result-rating { display: block; }
    .search-result-stars { display: block; }
    .search-result-status { display: block; }
    .vetted-badge { display: inline-block; } /* keeps badge shape but still on its own line via rule above */
  
    /* Status rows: let each row be its own line; label + pill can sit inline */
    .status-row { display: block; margin-top: 4px; }
  
    /* Clear the float at the end of the list item to prevent overlap with the next card */
    .search-item::after {
      content: "";
      display: block;
      clear: both;
    }
  }
/* ===========================================
   Mobile: stack search results + smaller type
   =========================================== */
   @media (max-width: 480px) {
    .search-item {
      display: block;
      padding: 0.65rem 0;
    }
  
    .search-result-thumb {
      float: left;
      width: 64px;
      height: 64px;
      margin: 2px 12px 8px 0;
    }
  
    .search-result-info {
      overflow: hidden;            /* prevents wrap-under the float */
    }
    .search-result-info > * {      /* stack children */
      display: block;
      margin-top: 4px;
    }
  
    /* Make text fit better on small screens */
    .search-result-name { font-size: 0.95rem; line-height: 1.2; overflow-wrap: anywhere; }
    .search-result-rating-label { font-size: 0.90rem; margin-bottom: 2px; }
    .search-result-stars { display: block; gap: 1px; }
    .search-result-star { width: 12px; height: 12px; }
    .search-result-category { font-size: 0.90rem; }
    .vetted-badge { font-size: 0.75rem; }
  
    /* Status rows */
    .search-result-status { margin-top: 4px; }
    .status-row { display: block; margin-top: 4px; }
    .status-label { font-size: 0.85rem; }
    .status-pill { font-size: 0.75rem; padding: 2px 8px; }
  
    /* Clear float at end of each card */
    .search-item::after { content: ""; display: block; clear: both; }
  }
  @media (min-width: 600px) {  /* small tablets */
    .letter-btn {
        font-size: 2rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (min-width: 900px) {  /* larger tablets / small desktops */
    .letter-btn {
        font-size: 2.4rem;
        padding: 0.7rem 1.4rem;
    }
}

@media (min-width: 1200px) { /* large desktops */
    .letter-btn {
        font-size: 2.8rem;
        padding: 0.8rem 1.6rem;
    }
}