/* Search Results Page Styles */
.vga-search-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.vga-search-result {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.vga-search-result:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.vga-search-result .entry-header {
  margin-bottom: 1rem;
}

.vga-search-result .entry-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.vga-search-result .entry-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.2s ease;
}

.vga-search-result .entry-title a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.vga-search-result .entry-content {
  color: #333;
  line-height: 1.6;
}

.vga-search-result .entry-content p {
  margin: 0;
}

/* Search Results Count Styles */
.vga-search-results-count {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 0 1rem;
  opacity: 0.9;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* No Results Styles */
.vga-no-results {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0, 0.1);
}

.vga-no-results h2 {
  color: #003366;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.vga-no-results p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.vga-search-suggestions {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 1.5rem;
  text-align: left;
}

.vga-search-suggestions h3 {
  color: #003366;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.vga-search-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vga-search-suggestions li {
  color: #666;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.vga-search-suggestions li:last-child {
  border-bottom: none;
}

.vga-search-suggestions li:before {
  content: "•";
  color: #003366;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* ===================================
   MEDIA QUERIES - TABLET BREAKPOINT (1080px)
   =================================== */

@media screen and (max-width: 1080px) {
  /* Mobile Search Input Styles */
  .vga-search-content-wrapper {
    padding: 1rem;
  }

  .vga-search-result {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .vga-search-result .entry-title {
    font-size: 1.3rem;
  }

  .vga-no-results {
    padding: 1.5rem;
  }

  .vga-no-results h2 {
    font-size: 1.5rem;
  }
  
  /* Mobile Navigation Search Styles */
  .vga-mobile-search {
    width: 94%;
    margin: 0 auto;
    padding: 1rem 0;
  }
  
  .vga-mobile-search-form {
    display: flex;
    width: 100%;
    gap: 0.5rem;
  }
  
  .vga-mobile-search-field {
    flex: 1;
    padding: 0.9rem 0.75rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    outline: none;
  }
  
  .vga-mobile-search-field::placeholder {
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Hide the clear button (X) on mobile since there's no hover state */
  .vga-mobile-search-field::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
  }
  
  .vga-mobile-search-submit {
    background: var(--color-white);
    color: #003366;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .vga-mobile-search-submit:hover {
    background: #f0f0f0;
  }
} 
