/* ═══════════════════════════════════════
   HOMEPAGE
   ═══════════════════════════════════════ */

/* ── Hero (Slider Revolution wrapper) ── */
.home-hero {
  margin: 0;
  line-height: 0;
}

/* ── Shared Section Header ── */
.home-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.home-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy, #080c18);
  margin: 0;
}

.home-section-title--light {
  color: #ffffff;
}

.home-section-title__accent {
  display: inline-block;
  width: 5px;
  height: 36px;
  background: var(--gold, #c5a44e);
  border-radius: 3px;
  flex-shrink: 0;
}

.home-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue-bright, #2655c0);
  letter-spacing: 0.03em;
  padding: 8px 20px;
  border: 2px solid var(--blue-bright, #2655c0);
  border-radius: 6px;
  transition: all 0.25s;
}

.home-section-link:hover {
  background: var(--blue-bright, #2655c0);
  color: #ffffff;
}

.home-section-link--light {
  color: var(--gold, #c5a44e);
  border-color: rgba(197, 164, 78, 0.4);
}

.home-section-link--light:hover {
  background: var(--gold, #c5a44e);
  border-color: var(--gold, #c5a44e);
  color: var(--navy, #080c18);
}

/* ═══════════════════════════════════════
   UPCOMING EVENTS
   ═══════════════════════════════════════ */
.home-events {
  padding: 72px 0 80px;
  background: #ffffff;
  position: relative;
}

.home-events::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold, #c5a44e) 0%, var(--blue-bright, #2655c0) 50%, var(--navy, #080c18) 100%);
}

.home-events-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-event-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid var(--body-border, #e2e2ea);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.home-event-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold, #c5a44e);
  opacity: 0;
  transition: opacity 0.3s;
}

.home-event-card:hover {
  box-shadow: 0 8px 32px rgba(8, 12, 24, 0.10);
  transform: translateY(-3px);
  border-color: var(--gold, #c5a44e);
  color: inherit;
}

.home-event-card:hover::before {
  opacity: 1;
}

.home-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 72px;
  background: var(--navy, #080c18);
  border-radius: 10px;
  color: #ffffff;
  flex-shrink: 0;
}

.home-event-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--gold, #c5a44e);
}

.home-event-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.1;
}

.home-event-info {
  flex: 1;
  min-width: 0;
}

.home-event-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--navy, #080c18);
}

.home-event-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.home-event-daterange,
.home-event-location {
  font-size: 0.9rem;
  color: var(--body-muted, #5a5a72);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.home-event-daterange i,
.home-event-location i {
  color: var(--blue-bright, #2655c0);
  font-size: 0.8rem;
}

.home-event-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy, #080c18);
  color: var(--gold, #c5a44e);
  transition: all 0.3s;
  font-size: 0.85rem;
}

.home-event-card:hover .home-event-arrow {
  background: var(--gold, #c5a44e);
  color: var(--navy, #080c18);
  transform: translateX(4px);
}

.home-events-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--body-muted, #5a5a72);
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════
   ESPORTSNEXT MAGAZINE
   ═══════════════════════════════════════ */
.home-magazine {
  padding: 80px 0 88px;
  background: var(--navy, #080c18);
}

/* Header right side: nav arrows + link */
.home-section-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── Carousel Nav Arrows ── */
.home-mag-nav {
  display: flex;
  gap: 6px;
}

.home-mag-nav__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.25s;
  font-size: 0.8rem;
}

.home-mag-nav__btn:hover {
  border-color: var(--gold, #c5a44e);
  color: var(--gold, #c5a44e);
}

/* ── Layout: cover + carousel ── */
.home-mag-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}

/* ── Issue Cover ── */
.home-mag-cover a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s, box-shadow 0.35s;
}

.home-mag-cover a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.home-mag-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.home-mag-cover-label {
  display: block;
  padding: 12px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gold, #c5a44e);
  color: var(--navy, #080c18);
}

/* ── Carousel ── */
.home-mag-carousel {
  overflow: hidden;
}

.home-mag-track {
  display: flex;
  transition: transform 0.45s ease;
}

.home-mag-card {
  flex: 0 0 calc(33.333% - 19px);
  margin-right: 28px;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}

.home-mag-card:hover {
  transform: translateY(-4px);
  color: inherit;
}

/* ── Shared Tag ── */
.home-mag-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold, #c5a44e);
}

/* ── Card Image ── */
.home-mag-card__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 8px;
}

.home-mag-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.home-mag-card:hover .home-mag-card__image img {
  transform: scale(1.04);
}

/* ── Card Body ── */
.home-mag-card__body {
  padding: 16px 0 0;
}

.home-mag-card__body .home-mag-tag {
  margin-bottom: 6px;
}

.home-mag-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 6px;
}

.home-mag-card:hover .home-mag-card__title {
  color: var(--gold, #c5a44e);
}

.home-mag-card__subtitle {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════
   JOIN / MEMBERSHIP CTA
   ═══════════════════════════════════════ */
.home-cta {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.home-cta--navy {
  background: var(--blue-bright, #2655c0);
}

.home-cta--blue {
  background: var(--blue-bright, #2655c0);
}

.home-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.home-cta-eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.home-cta-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.1;
}

.home-cta-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 36px;
}

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 6px;
  background: var(--gold, #c5a44e);
  color: var(--navy, #080c18);
  transition: all 0.25s;
}

.home-cta-btn:hover {
  background: #d4b45e;
  color: var(--navy, #080c18);
  transform: translateY(-2px);
}

.home-cta-btn i {
  font-size: 0.9em;
  transition: transform 0.25s;
}

.home-cta-btn:hover i {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 960px) {
  .home-mag-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-mag-cover {
    max-width: 180px;
    margin: 0 auto;
  }

  .home-mag-card {
    flex: 0 0 calc(50% - 14px);
  }
}

@media (max-width: 768px) {
  .home-events {
    padding: 48px 0 56px;
  }

  .home-section-header {
    margin-bottom: 28px;
  }

  .home-section-title {
    font-size: 1.7rem;
  }

  .home-section-title__accent {
    height: 28px;
  }

  .home-section-link {
    padding: 6px 14px;
    font-size: 0.9rem;
  }

  .home-event-card {
    padding: 18px;
    gap: 16px;
  }

  .home-event-card::before {
    display: none;
  }

  .home-event-date {
    min-width: 60px;
    height: 60px;
  }

  .home-event-day {
    font-size: 1.4rem;
  }

  .home-event-title {
    font-size: 1.1rem;
  }

  .home-event-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .home-event-arrow {
    display: none;
  }

  .home-magazine {
    padding: 56px 0 64px;
  }

  .home-cta {
    padding: 56px 0;
  }

  .home-cta-headline {
    font-size: 2rem;
  }

  .home-cta-text {
    font-size: 1rem;
  }

  .home-cta-btn {
    padding: 14px 28px;
    font-size: 1.05rem;
  }
}

@media (max-width: 580px) {
  .home-mag-layout {
    grid-template-columns: 1fr;
  }

  .home-mag-cover {
    max-width: 160px;
  }

  .home-mag-card {
    flex: 0 0 calc(100% - 28px);
  }

  .home-section-header__right {
    gap: 10px;
  }

  .home-mag-nav__btn {
    width: 34px;
    height: 34px;
  }

  .home-mag-card__title {
    font-size: 1.05rem;
  }

  .home-cta-headline {
    font-size: 1.7rem;
  }
}
