/* assets/css/style.css */

/* Container grid */
.coinflip-bookmaker-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Individual card styling */
.bookmaker-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.bookmaker-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Image section */
.bookmaker-card .card-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content section */
.bookmaker-card .card-content {
  padding: 15px;
  flex: 1;
}

.bookmaker-card .card-title {
  margin: 0 0 10px;
  font-size: 1.25em;
  line-height: 1.3;
  color: #333333;
}

.bookmaker-card .card-excerpt {
  margin: 0 0 15px;
  font-size: 0.95em;
  line-height: 1.5;
  color: #555555;
}

/* Bonus info */
.bookmaker-card strong {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #222222;
}

/* Action/button section */
.bookmaker-card .card-action {
  padding: 12px 15px;
  text-align: center;
  background: #f9f9f9;
}

.bookmaker-card .card-action .elementor-button {
  text-decoration: none;
  display: inline-block;
}

/* Responsive: single column on narrow screens */
@media (max-width: 600px) {
  .coinflip-bookmaker-list {
    grid-template-columns: 1fr;
  }
}
