/* ─────────────────────────────────────────────────────────────────────────
   Street Talk — Homepage Ad Styles
   Paste this block inside the existing <style> tag in index.php
   ───────────────────────────────────────────────────────────────────────── */

/* Slot containers — hidden by default, shown by JS when ads are loaded */
.st-ad-slot {
  display: none;
  margin: 0 0 3rem 0;
}

/* Shared label row */
.st-ad-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;         /* gray-400 */
  margin-bottom: 6px;
}
.st-ad-sponsor-name {
  font-size: 0.65rem;
  color: #6b7280;         /* gray-500 */
  font-weight: 600;
}

/* ── Banner ad ─────────────────────────────────────────────────────────── */
.st-ad-banner {
  width: 100%;
}
.st-ad-banner-inner {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f3f4f6;
}
.st-ad-banner-img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.st-ad-banner a:hover .st-ad-banner-img {
  opacity: 0.92;
}
.st-ad-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
}
.st-ad-banner-headline {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Multiple banner ads in the same slot stack with a gap */
.st-ad-banner + .st-ad-banner {
  margin-top: 1rem;
}

/* ── Sidebar ad card ───────────────────────────────────────────────────── */
.st-ad-sidebar-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: 3px solid #D62828;   /* st-red */
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.st-ad-sidebar-img-wrap {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.st-ad-sidebar-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.st-ad-sidebar-card:hover .st-ad-sidebar-img {
  opacity: 0.9;
}
.st-ad-sidebar-headline {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #003049;          /* st-blue */
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.st-ad-sidebar-cta {
  display: inline-block;
  background: #D62828;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.45rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: filter 0.2s ease;
}
.st-ad-sidebar-cta:hover {
  filter: brightness(0.9);
}
