/* homepage-signals.css — WiseCasinoPicks homepage EIC-hierarchy snippets
   BEM blocks: .home-trust-strip, .home-team-teaser, .site-footer__eic-signature
*/

/* ---- Block 1: Above-the-fold trust-strip ---- */
.home-trust-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fafaf7;
  border: 1px solid #dcdcdc;
  border-left: 4px solid #b8860b;
  padding: 1rem 1.25rem;
  border-radius: 5px;
  margin: 1.5rem 0 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
@media (max-width: 559px) {
  .home-trust-strip { flex-direction: column; align-items: flex-start; }
}
.home-trust-strip__portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #b8860b;
  flex-shrink: 0;
}
.home-trust-strip__body { flex: 1; }
.home-trust-strip__lede {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: #1a1a1a;
}
.home-trust-strip__lede a { color: #2a5788; text-decoration: none; }
.home-trust-strip__lede a:hover { text-decoration: underline; }
.home-trust-strip__proof {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.85rem;
  color: #555;
}
.home-trust-strip__proof li::before {
  content: "✓";
  color: #b8860b;
  margin-right: 0.35rem;
  font-weight: 700;
}
.home-trust-strip__proof a { color: #2a5788; text-decoration: none; }
.home-trust-strip__proof a:hover { text-decoration: underline; }

/* ---- Block 2: Editorial team teaser ---- */
.home-team-teaser {
  margin: 3rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.home-team-teaser__heading {
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.home-team-teaser__lede {
  color: #555;
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
}
.home-team-teaser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.home-team-teaser__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.home-team-teaser__card:hover {
  border-color: #b8860b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.home-team-teaser__card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.6rem;
}
.home-team-teaser__card--eic img {
  border: 3px solid #b8860b;
}
.home-team-teaser__badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  background: #eaeaea;
  color: #333;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.home-team-teaser__badge--eic {
  background: #b8860b;
  color: #fff;
}
.home-team-teaser__name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.home-team-teaser__role {
  font-size: 0.78rem;
  color: #666;
}
.home-team-teaser__cta {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}
.home-team-teaser__cta a {
  color: #2a5788;
  text-decoration: none;
  font-weight: 600;
}
.home-team-teaser__cta a:hover { text-decoration: underline; }

/* ---- Block 3: Footer EIC signature ---- */
.site-footer__eic-signature {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 1rem;
  font-size: 0.85rem;
}
.site-footer__eic-signature a { color: inherit; text-decoration: underline; }
