/* ============================================================
   OPTION B — BOLD TOURNAMENT BANNER (SPORT LOOK)
   Shared for EVENTS + NEWS
============================================================ */

/* Shared wrapper for both Event + News cards */
.event-banner-card,
.news-banner-card {
  display: flex;
  align-items: stretch;
  gap: 1.4rem;
  padding: 1.6rem;
  margin-bottom: 2rem;

  background: rgba(255,255,255,0.45);
  border-radius: 18px;
  backdrop-filter: blur(14px);

  box-shadow:
    0 4px 14px rgba(0,0,0,0.12),
    0 12px 28px rgba(0,0,0,0.18);

  border-top: 8px solid var(--color-primary);
  transition: transform .25s ease;
}

.event-banner-card:hover,
.news-banner-card:hover {
  transform: translateY(-6px);
}

/* ============================================================
   LEFT SIDE — TEXT CONTENT
============================================================ */
.event-banner-content,
.news-banner-content {
  flex: 1;
  min-width: 0;
}

/* Title */
.event-banner-title,
.news-banner-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--color-dark);
  margin: 0 0 .4rem 0;
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
  display: inline-block;
}

/* Underline animation */
.event-banner-title::after,
.news-banner-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 0%;
  background: var(--color-primary);
  transition: width .25s ease-in-out;
}

.event-banner-title:hover::after,
.news-banner-title:hover::after {
  width: 100%;
}

/* Glow hover */
.event-banner-title:hover,
.news-banner-title:hover,
.event-banner-title:focus-visible,
.news-banner-title:focus-visible {
  text-shadow: 0 0 6px rgba(198,40,40,0.6);
}

/* Meta area */
.event-banner-multiDate,
.news-banner-multiDate {
  margin-bottom: .6rem;
}

.event-banner-time,
.news-banner-time,
.event-banner-multiDate,
.news-banner-multiDate {
  background: #ffffff;
  color: #6a0000;            /* deep red text to match theme */
  padding: .25rem .6rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .9rem;
  display: block;      /* ⬅ forces each to its own line */
  width: fit-content;  /* ⬅ button wraps tightly */
  margin-bottom: .4rem; /* ⬅ spacing between Date and Time */
}

.event-banner-location,
.news-banner-location {
  font-weight: 600;
  color: var(--color-secondary);
}

.event-banner-details,
.news-banner-details {
  margin: .5rem 0 1rem;
  line-height: 1.55;
}

/* ==========================================================
   BANNER BUTTON — TOURNAMENT RED (GLOW ON HOVER)
========================================================== */
.banner-btn {
  background: linear-gradient(90deg, #b71c1c, #c62828);
  color: #ffffff;
  padding: 0.65rem 1.3rem;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* Hover / Focus — light up + glow */
.banner-btn:hover,
.banner-btn:focus,
.banner-btn:focus-visible {
  background: linear-gradient(90deg, #d32f2f, #e53935);
  color: #ffffff; /* text stays white */
  transform: translateY(-2px);
  box-shadow:
    0 0 10px rgba(229,57,53,0.75),
    0 6px 18px rgba(0,0,0,0.35);
  text-decoration: none;
}

.banner-btn:hover {
  animation: btnGlow 1.2s ease-in-out infinite alternate;
}

@keyframes btnGlow {
  from { box-shadow: 0 0 8px rgba(229,57,53,0.6); }
  to   { box-shadow: 0 0 14px rgba(229,57,53,0.95); }
}

/* ============================================================
   RIGHT SIDE — IMAGE (Unified Selector)
============================================================ */
.event-banner-media,
.news-banner-media {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;

  box-shadow:
    0 4px 14px rgba(0,0,0,0.14),
    0 10px 26px rgba(0,0,0,0.12);
}

.event-banner-media img,
.news-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.event-banner-media:hover img,
.news-banner-media:hover img {
  transform: scale(1.06);
}

/* ============================================================
   MOBILE RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .event-banner-card,
  .news-banner-card {
    flex-direction: column-reverse;
    text-align: left;
    padding: 1.3rem;
  }

  .event-banner-media,
  .news-banner-media {
    width: 180px;
    height: 180px;
    margin: 1rem auto;
    border-radius: 16px;
  }

  .event-banner-title,
  .news-banner-title {
    font-size: 1.25rem;
  }
}

.events-page h1,
.news-page h1 {
    padding-top: 0.5rem;
}
