/* Custom site CSS — edited from Admin → Site CSS. Loaded after theme.css, so rules here override the theme. */
.sf-top-promos {
  max-width: 1200px;
  margin: 30px auto 40px auto;
  padding: 0 20px;
}

.sf-top-promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sf-promo-card {
  background: #f8f3ea;
  border: 1px solid #d8c7a6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sf-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.sf-promo-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.sf-promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.sf-promo-content {
  padding: 20px;
  text-align: center;
}

.sf-promo-content h3 {
  margin: 0 0 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  color: #4b2e1e;
}

.sf-promo-content p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3f342c;
}

@media (max-width: 900px) {
  .sf-top-promos-grid {
    grid-template-columns: 1fr;
  }

  .sf-promo-card img {
    height: 240px;
  }
}