/*
 Theme Name:   Twenty Twenty-Five Child
 Theme URI:    https://example.com
 Description:  Child theme for Twenty Twenty-Five (with custom search.php)
 Author:       Your Name
 Author URI:   https://example.com
 Template:     twentytwentyfive
 Version:      1.0.1
*/
/* Container for search results */
.cards-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Card styling */
.info-card {
  background: #fff;
  border: 2px solid #f37021; /* orange border */
  border-radius: 10px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

/* Titles */
.info-card h2.entry-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #003366;
  margin-bottom: 0.75rem;
}

.info-card h2.entry-title a {
  text-decoration: none;
  color: #222;
}

.info-card h2.entry-title a:hover {
  color: #0073e6;
}

/* Excerpt */
.info-card .entry-summary {
  font-size: 0.95rem;
  color: #555;
}

/* Big checkmark icon */
.card-icon {
  font-size: 3.5rem;
  color: rgba(40,167,69,0.2); /* faded green */
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

/* Page header styling */
.page-header {
  margin-bottom: 1rem;
}

.page-header h1.page-title {
  font-size: 1.5rem;
  color: #003366;
}
