/*
Theme Name: Atlanta Music Press
Theme URI: https://www.atlantamusicpress.com
Author: C. Cole
Author URI: https://www.atlantamusicpress.com
Description: A custom WordPress theme for Atlanta Music Press, featuring a modern design for music news, reviews, and concert listings.
Version: 1.0.9
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-colors, custom-header, custom-menu, featured-images, flexible-header, full-width-template, light, dark, news, blog, magazine, entertainment
Text Domain: atlanta-music-press
*/

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: #000;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===========================
   UTILITY
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 3px solid #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-title .view-all {
  font-size: 12px;
  font-weight: 600;
  color: #cc0000;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.section-title .view-all:hover { color: #ff2222; }

.badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background: #cc0000;
  color: #fff;
  margin-bottom: 8px;
}
.badge.feature { background: #cc0000; }
.badge.photo-gallery { background: #cc0000; }

/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background: #000;
  border-bottom: 1px solid #1a1a1a;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-links a {
  color: #ccc;
  font-size: 16px;
  transition: color 0.2s;
}
.social-links a:hover { color: #fff; }
.social-links svg { width: 18px; height: 18px; fill: currentColor; }

.search-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.search-btn:hover { color: #fff; }
.search-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ===========================
   HEADER / LOGO
=========================== */
.site-header {
  background: #000;
  padding: 16px 0 10px;
  text-align: center;
}
.site-logo {
  display: inline-block;
  line-height: 1;
}
.logo-atlanta {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}
.logo-music-press {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #cc0000;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-top: 6px;
  display: block;
}

/* ===========================
   NAVIGATION
=========================== */
.main-nav {
  background: #111;
  border-top: 3px solid #cc0000;
  border-bottom: 1px solid #222;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-inner a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ccc;
  padding: 12px 18px;
  display: block;
  transition: color 0.2s, background 0.2s;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.nav-inner a:hover,
.nav-inner a.active {
  color: #fff;
  border-bottom-color: #cc0000;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #000;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.75;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.1) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px 48px;
  max-width: 560px;
}
.hero-content .badge { margin-bottom: 12px; }
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}
.hero-excerpt {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 380px;
}
.btn-red {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-red:hover { background: #aa0000; }

/* ===========================
   LATEST ARTICLES
=========================== */
.latest-articles {
  background: #000 !important;
  color: #fff !important;
  padding: 32px 0 40px;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.article-card {
  cursor: pointer;
}
.article-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.article-card:hover .article-card-img { opacity: 0.88; }
.article-card-body {
  padding: 10px 0 0;
}
.article-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff !important;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.article-card:hover .article-card-title { color: #cc0000 !important; }
.article-card-excerpt {
  font-size: 12.5px;
  color: #bbb !important;
  line-height: 1.5;
  margin-bottom: 8px;
}
.article-card-date {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===========================
   THREE-COLUMN SECTION
=========================== */
.three-col {
  background: #fff !important;
  color: #111 !important;
  padding: 0 0 40px;
  border-top: 1px solid #e8e8e8;
}
.three-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 32px;
  padding-top: 32px;
}

/* --- Atlanta Music News --- */
.news-list { display: flex; flex-direction: column; gap: 18px; }
.news-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.news-item:last-child { border-bottom: none; padding-bottom: 0; }
.news-item-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}
.news-item-body {}
.news-item-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #111 !important;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.news-item:hover .news-item-title { color: #cc0000 !important; }
.news-item-excerpt {
  font-size: 11.5px;
  color: #666 !important;
  line-height: 1.4;
  margin-bottom: 4px;
}
.news-item-date {
  font-size: 10.5px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Featured Photo Gallery --- */
.gallery-feature {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: block;
  min-height: 340px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.gallery-feature-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-feature:hover .gallery-feature-img {
  transform: scale(1.025);
  opacity: 0.92;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background:
    linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.72) 30%, rgba(0,0,0,0.25) 62%, rgba(0,0,0,0.04) 100%);
  padding: 22px;
}
.gallery-overlay .badge {
  margin-bottom: 9px;
}
.gallery-title {
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 88%;
  text-transform: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.85);
}
.btn-gallery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.88);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.gallery-feature:hover .btn-gallery {
  background: #cc0000;
  border-color: #cc0000;
}
.btn-gallery svg { width: 14px; height: 14px; fill: currentColor; }

/* --- Upcoming Shows --- */
.shows-list { display: flex; flex-direction: column; gap: 0; }
.show-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.show-item:last-child { border-bottom: none; }
.show-date-box {
  background: #cc0000;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  min-width: 52px;
  flex-shrink: 0;
  border-radius: 2px;
}
.show-month {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}
.show-day {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.show-info { flex: 1; }
.show-artist {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111 !important;
  margin-bottom: 2px;
  transition: color 0.2s;
}
.show-item:hover .show-artist { color: #cc0000 !important; }
.show-venue {
  font-size: 11.5px;
  color: #666 !important;
  line-height: 1.3;
}
.show-city {
  font-size: 11px;
  color: #999;
}
.btn-tickets {
  background: #111;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-tickets:hover { background: #cc0000; }
.view-all-shows {
  display: block;
  text-align: center;
  color: #cc0000;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 14px;
  transition: color 0.2s;
}
.view-all-shows:hover { color: #aa0000; }

/* ===========================
   NEWSLETTER BANNER
=========================== */
.newsletter-banner {
  background: #111;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}
.newsletter-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.newsletter-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.newsletter-text p {
  font-size: 13px;
  color: #bbb;
  max-width: 320px;
  line-height: 1.5;
}
.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.newsletter-form input[type="email"] {
  padding: 12px 16px;
  font-size: 13px;
  border: none;
  outline: none;
  background: #fff;
  color: #111;
  width: 260px;
  font-family: 'Open Sans', sans-serif;
}
.newsletter-form input[type="email"]::placeholder { color: #aaa; }
.newsletter-form button {
  background: #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #aa0000; }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
  padding: 28px 0 20px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 16px;
}
.footer-logo .logo-atlanta { font-size: 28px; }
.footer-logo .logo-music-press { font-size: 14px; letter-spacing: 3px; }
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #999;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  color: #888;
  transition: color 0.2s;
}
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  text-align: center;
  font-size: 11px;
  color: #555;
}

/* ===========================
   SEARCH OVERLAY
=========================== */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}
.search-overlay.active { display: flex; }
.search-overlay-inner {
  width: 100%;
  max-width: 640px;
  padding: 0 20px;
}
.search-overlay input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 400;
  padding: 12px 0;
  outline: none;
}
.search-overlay input::placeholder { color: #555; }
.search-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 960px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .three-col-grid { grid-template-columns: 1fr 1fr; }
  .three-col-grid > *:last-child { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .nav-inner { flex-wrap: wrap; justify-content: flex-start; }
  .nav-inner a { padding: 8px 12px; font-size: 11px; }
  .hero { height: 420px; }
  .hero-title { font-size: 34px; }
  .hero-content { padding: 24px; }
  .articles-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .three-col-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input[type="email"] { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .logo-atlanta { font-size: 38px; }
  .logo-music-press { font-size: 20px; }
}

/* ===========================
   V1.8 DYNAMIC WORDPRESS SECTIONS
=========================== */
.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}
.hero-slider .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.hero-dots {
  position: absolute;
  right: 34px;
  bottom: 28px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.75);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dot.is-active {
  background: #cc0000;
  border-color: #cc0000;
}
.gallery-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
}
.gallery-empty {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f4f4f4;
  border: 1px solid #e4e4e4;
  padding: 24px;
}
.gallery-empty-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gallery-empty p {
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.news-item-link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  color: inherit;
}
.archive-page {
  background: #000;
  color: #fff;
  padding: 48px 0 60px;
}
.archive-header {
  margin-bottom: 28px;
  border-bottom: 3px solid #333;
  padding-bottom: 18px;
}
.archive-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.archive-description {
  max-width: 760px;
  color: #bbb;
  line-height: 1.7;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.archive-card .article-card-img {
  height: 220px;
}
.empty-message {
  color: #bbb;
}

@media (max-width: 960px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .hero-dots { left: 24px; right: auto; bottom: 18px; }
  .archive-header h1 { font-size: 36px; }
  .archive-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
}


/* ===========================
   V2.2 HERO POLISH
   Concept-style hero: smaller title, cleaner fade, image visible.
=========================== */
.hero {
  height: 500px;
  background: #000;
}
.hero-slider .hero-slide,
.hero-slide-link {
  background: #000;
}
.hero-img {
  position: absolute;
  top: 0;
  left: 31%;
  right: 0;
  width: 69%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(to right,
      #000 0%,
      #000 28%,
      rgba(0,0,0,0.86) 36%,
      rgba(0,0,0,0.58) 50%,
      rgba(0,0,0,0.24) 68%,
      rgba(0,0,0,0.08) 100%),
    linear-gradient(to bottom,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.02) 52%,
      rgba(0,0,0,0.42) 100%);
}
.hero-content {
  z-index: 3;
  left: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: 34%;
  max-width: 455px;
  padding: 26px 0 26px 54px;
}
.hero-title-only .hero-title {
  margin: 0;
}
.hero-title {
  font-size: clamp(30px, 3.25vw, 52px);
  line-height: 1.03;
  letter-spacing: 0.2px;
  max-width: 430px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.hero-content .badge,
.hero-excerpt,
.hero-content .btn-red {
  display: none;
}
.hero-dots {
  z-index: 5;
}

@media (max-width: 1100px) {
  .hero-title {
    font-size: clamp(28px, 3.7vw, 46px);
  }
  .hero-content {
    width: 36%;
    max-width: 420px;
    padding-left: 40px;
  }
  .hero-img {
    left: 33%;
    width: 67%;
  }
}

@media (max-width: 960px) {
  .hero {
    height: 470px;
  }
  .hero-img {
    left: 28%;
    width: 72%;
  }
  .hero-overlay {
    background:
      linear-gradient(to right,
        #000 0%,
        rgba(0,0,0,0.92) 30%,
        rgba(0,0,0,0.52) 56%,
        rgba(0,0,0,0.16) 100%),
      linear-gradient(to bottom,
        rgba(0,0,0,0.12) 0%,
        rgba(0,0,0,0.02) 50%,
        rgba(0,0,0,0.50) 100%);
  }
  .hero-content {
    width: 48%;
    max-width: 430px;
    padding-left: 34px;
  }
  .hero-title {
    font-size: clamp(30px, 5.3vw, 48px);
  }
}

@media (max-width: 700px) {
  .hero {
    height: 420px;
  }
  .hero-img {
    left: 0;
    width: 100%;
    opacity: 0.78;
  }
  .hero-overlay {
    background:
      linear-gradient(to right,
        rgba(0,0,0,0.94) 0%,
        rgba(0,0,0,0.74) 52%,
        rgba(0,0,0,0.30) 100%),
      linear-gradient(to bottom,
        rgba(0,0,0,0.22) 0%,
        rgba(0,0,0,0.12) 45%,
        rgba(0,0,0,0.70) 100%);
  }
  .hero-content {
    width: 88%;
    max-width: 520px;
    padding: 24px;
  }
  .hero-title {
    font-size: clamp(28px, 8.2vw, 40px);
    line-height: 1.02;
  }
}

/* ===========================
   ARCHIVE PAGINATION
=========================== */
.archive-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #222;
}
.archive-pagination .page-numbers {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  color: #ddd;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  background: #080808;
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: #cc0000;
  border-color: #cc0000;
  color: #fff;
}
.archive-pagination .next,
.archive-pagination .prev {
  padding: 0 14px;
}

/* ===========================
   V3.2 CONCERT CALENDAR
=========================== */
.concert-calendar-page {
  background: #000;
  color: #fff;
}
.calendar-hero {
  padding: 56px 0 28px;
  background: radial-gradient(circle at 75% 20%, rgba(204,0,0,0.22), transparent 30%), #000;
  border-bottom: 1px solid #191919;
}
.calendar-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 8px 0 12px;
}
.calendar-hero p {
  max-width: 680px;
  color: #bbb;
  font-size: 15px;
  line-height: 1.7;
}
.calendar-search-section {
  padding: 26px 0;
  background: #0b0b0b;
  border-bottom: 3px solid #cc0000;
  position: sticky;
  top: 0;
  z-index: 20;
}
.admin-bar .calendar-search-section { top: 32px; }
.calendar-search-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 90px 150px 150px auto;
  gap: 12px;
  align-items: end;
}
.calendar-field label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 6px;
}
.calendar-field input {
  width: 100%;
  background: #fff;
  color: #111;
  border: 1px solid #333;
  min-height: 44px;
  padding: 10px 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  outline: none;
}
.calendar-field input:focus {
  border-color: #cc0000;
  box-shadow: 0 0 0 2px rgba(204,0,0,0.22);
}
.calendar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.calendar-actions button,
.calendar-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.calendar-actions button {
  background: #cc0000;
  color: #fff;
  border: none;
  padding: 0 18px;
  cursor: pointer;
}
.calendar-actions button:hover { background: #aa0000; }
.calendar-actions a {
  color: #bbb;
  padding: 0 4px;
}
.calendar-actions a:hover { color: #fff; }
.calendar-results-section {
  padding: 38px 0 72px;
}
.calendar-results-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding-bottom: 16px;
  border-bottom: 3px solid #333;
  margin-bottom: 24px;
}
.calendar-results-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 8px;
}
.calendar-results-header p {
  color: #aaa;
  margin: 0;
}
.calendar-count {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: #cc0000;
  padding: 7px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.calendar-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.calendar-event-card {
  display: grid;
  grid-template-columns: 220px 72px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: #111;
  border: 1px solid #242424;
  padding: 14px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.calendar-event-card:hover {
  border-color: #cc0000;
  background: #151515;
  transform: translateY(-1px);
}
.calendar-event-img-wrap {
  display: block;
  width: 100%;
  height: 124px;
  overflow: hidden;
  background: #050505;
}
.calendar-event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s, opacity 0.25s;
}
.calendar-event-card:hover .calendar-event-img-wrap img {
  transform: scale(1.04);
  opacity: 0.9;
}
.calendar-event-date {
  background: #cc0000;
  color: #fff;
  text-align: center;
  min-width: 66px;
  padding: 10px 8px;
  border-radius: 2px;
}
.calendar-event-date span {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}
.calendar-event-date strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  line-height: 1;
  margin-top: 4px;
}
.calendar-event-topline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.calendar-event-topline span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #bbb;
  text-transform: uppercase;
}
.calendar-event-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.calendar-event-body h3 a:hover { color: #cc0000; }
.calendar-event-meta,
.calendar-event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #aaa;
  font-size: 13px;
  line-height: 1.4;
}
.calendar-event-details {
  margin-top: 8px;
  color: #d3d3d3;
}
.calendar-event-details strong { color: #fff; }

.calendar-status-row {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.calendar-price {
  color: #fff;
}

.calendar-status {
  color: #fff !important;
  background: #2f2f2f;
  border: 1px solid #4a4a4a;
  padding: 2px 7px;
  border-radius: 2px;
}
.calendar-status.status-onsale,
.calendar-status.status-presale {
  background: rgba(0, 128, 0, 0.18);
  border-color: rgba(0, 170, 0, 0.45);
  color: #e9ffe9 !important;
}
.calendar-status.status-offsale,
.calendar-status.status-soldout {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
  color: #ccc !important;
}
.calendar-status.status-cancelled,
.calendar-status.status-canceled {
  background: rgba(204,0,0,0.22);
  border-color: rgba(204,0,0,0.58);
}
.calendar-status.status-rescheduled,
.calendar-status.status-postponed {
  background: rgba(204,112,0,0.22);
  border-color: rgba(204,112,0,0.58);
}
.calendar-ticket-count {
  color: #e7ffe7;
}

.calendar-ticket-button {
  background: #fff;
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 16px;
  border: 1px solid #fff;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.calendar-ticket-button:hover {
  background: #cc0000;
  border-color: #cc0000;
  color: #fff;
}
.calendar-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.calendar-pagination a,
.calendar-pagination span {
  border: 1px solid #333;
  padding: 10px 14px;
  color: #fff;
  background: #111;
}
.calendar-pagination a:hover {
  background: #cc0000;
  border-color: #cc0000;
}
.calendar-empty-state {
  background: #111;
  border: 1px solid #333;
  color: #ddd;
  padding: 28px;
  font-size: 15px;
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, background 160ms ease, color 160ms ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top:hover { background: #fff; color: #111; }

@media (max-width: 1100px) {
  .calendar-search-form { grid-template-columns: 1fr 1fr 90px 1fr 1fr; }
  .calendar-actions { grid-column: 1 / -1; }
  .calendar-event-card { grid-template-columns: 180px 64px minmax(0, 1fr); }
  .calendar-ticket-button { grid-column: 3; justify-self: start; }
}
@media (max-width: 760px) {
  .admin-bar .calendar-search-section,
  .calendar-search-section { position: static; top: auto; }
  .calendar-search-form { grid-template-columns: 1fr; }
  .calendar-results-header { flex-direction: column; align-items: flex-start; }
  .calendar-event-card { grid-template-columns: 76px minmax(0, 1fr); align-items: start; }
  .calendar-event-img-wrap { grid-column: 1 / -1; height: 190px; }
  .calendar-event-date { grid-column: 1; grid-row: 2; }
  .calendar-event-body { grid-column: 2; grid-row: 2; }
  .calendar-ticket-button { grid-column: 1 / -1; justify-self: stretch; text-align: center; }
  .calendar-event-body h3 { font-size: 21px; }
  .back-to-top { right: 16px; bottom: 16px; }
}


/* ===========================
   V3.3 COMPACT CONCERT CALENDAR
=========================== */
.concert-calendar-page .container {
  max-width: 1120px;
}
.calendar-hero {
  padding: 48px 0 22px;
}
.calendar-hero h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 10px;
}
.calendar-search-section {
  padding: 20px 0;
}
.calendar-search-form {
  grid-template-columns: 1.25fr 0.85fr 80px 132px 132px auto;
  gap: 10px;
}
.calendar-field input,
.calendar-actions button,
.calendar-actions a {
  min-height: 40px;
}
.calendar-results-section {
  padding: 32px 0 64px;
}
.calendar-results-header h2 {
  font-size: 28px;
}
.calendar-list {
  gap: 14px;
}
.calendar-event-card {
  grid-template-columns: 170px 62px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 12px;
}
.calendar-event-img-wrap {
  height: 96px;
}
.calendar-event-date {
  min-width: 58px;
  padding: 8px 7px;
}
.calendar-event-date span {
  font-size: 11px;
}
.calendar-event-date strong {
  font-size: 28px;
}
.calendar-event-topline {
  margin-bottom: 4px;
}
.calendar-event-body h3 {
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.calendar-event-meta,
.calendar-event-details {
  font-size: 12px;
  gap: 6px 14px;
}
.calendar-ticket-button {
  padding: 9px 13px;
}
@media (max-width: 1100px) {
  .calendar-search-form { grid-template-columns: 1fr 1fr 80px 1fr 1fr; }
  .calendar-event-card { grid-template-columns: 150px 58px minmax(0, 1fr); }
}
@media (max-width: 760px) {
  .concert-calendar-page .container { max-width: 1200px; }
  .calendar-hero h1 { font-size: 36px; }
  .calendar-event-card { grid-template-columns: 70px minmax(0, 1fr); }
  .calendar-event-img-wrap { height: 175px; }
}


/* ===========================
   V3.5 VENUE GUIDE
=========================== */
.venues-page {
  background: #050505;
  color: #fff;
}
.venues-hero {
  background:
    linear-gradient(135deg, rgba(204,0,0,0.18), rgba(0,0,0,0) 42%),
    linear-gradient(180deg, #090909 0%, #000 100%);
  border-bottom: 1px solid #222;
  padding: 54px 0 34px;
}
.venues-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}
.venues-kicker {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 8px;
  margin-bottom: 14px;
}
.venues-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.venues-hero p {
  max-width: 650px;
  color: #bdbdbd;
  font-size: 15px;
}
.venues-radius-badge {
  min-width: 160px;
  border: 1px solid #333;
  background: #101010;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.venues-radius-badge strong {
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  line-height: 1;
  color: #cc0000;
}
.venues-radius-badge span {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ddd;
}
.venues-search-section {
  background: #111;
  border-top: 3px solid #cc0000;
  border-bottom: 1px solid #252525;
  padding: 20px 0;
}
.venues-search-form {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 90px auto;
  gap: 12px;
  align-items: end;
}
.venues-grid-section,
.venue-detail-section {
  padding: 42px 0 72px;
}
.venues-results-header {
  margin-bottom: 24px;
}
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.venue-card {
  background: #111;
  border: 1px solid #242424;
  transition: border-color .2s, transform .2s, background .2s;
  min-height: 100%;
}
.venue-card:hover {
  border-color: #cc0000;
  background: #141414;
  transform: translateY(-2px);
}
.venue-card-main {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 15px;
  padding: 16px;
  color: inherit;
}
.venue-logo-tile {
  min-height: 86px;
  background:
    linear-gradient(135deg, #cc0000, #700000),
    #cc0000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 0 0 5px rgba(0,0,0,0.18);
}
.venue-logo-large {
  width: 150px;
  height: 150px;
  font-size: 48px;
  flex: 0 0 150px;
}
.venue-card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.venue-card-body p,
.venue-card-body span {
  color: #aaa;
  font-size: 13px;
  line-height: 1.35;
}

.venue-capacity {
  display: inline-block;
  margin-top: 10px;
  background: rgba(204,0,0,0.14);
  border: 1px solid rgba(204,0,0,0.45);
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 7px;
}
.venues-note {
  color: #8f8f8f;
  font-size: 12px;
  margin-top: 8px;
}

.venue-card-actions {
  display: flex;
  border-top: 1px solid #242424;
}
.venue-card-actions a {
  flex: 1;
  text-align: center;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 10px;
}
.venue-card-actions a + a {
  border-left: 1px solid #242424;
}
.venue-card-actions a:hover {
  background: #cc0000;
  color: #fff;
}
.venue-back-link {
  display: inline-block;
  color: #cc0000;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.venue-detail-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #111;
  border: 1px solid #292929;
  padding: 22px;
  margin-bottom: 34px;
}
.venue-detail-main h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.venue-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #bdbdbd;
  font-size: 14px;
  margin-bottom: 18px;
}
.venue-detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.venue-detail-actions a,
.venue-ticket-button {
  display: inline-block;
  background: #fff;
  color: #111;
  border: 1px solid #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 14px;
}
.venue-detail-actions a:hover,
.venue-ticket-button:hover {
  background: #cc0000;
  color: #fff;
  border-color: #cc0000;
}
.venue-detail-heading {
  border-bottom: 3px solid #262626;
  margin-bottom: 18px;
}
.venue-detail-heading h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.venue-event-list {
  display: grid;
  gap: 12px;
}
.venue-event-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background: #111;
  border: 1px solid #242424;
  padding: 14px;
}
.venue-event-date {
  background: #cc0000;
  color: #fff;
  text-align: center;
  padding: 8px 7px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.venue-event-date span {
  display: block;
  font-size: 11px;
  line-height: 1;
}
.venue-event-date strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-top: 4px;
}
.venue-event-time {
  display: block;
  color: #aaa;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.venue-event-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0 0 7px;
}
.venue-event-info h4 a:hover {
  color: #cc0000;
}
.venue-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #ccc;
  font-size: 12px;
}
@media (max-width: 980px) {
  .venues-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .venues-search-form { grid-template-columns: 1fr 1fr 90px; }
  .venues-search-form .calendar-actions { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .venues-hero-inner,
  .venue-detail-card { flex-direction: column; align-items: flex-start; }
  .venues-radius-badge { width: 100%; }
  .venues-grid { grid-template-columns: 1fr; }
  .venues-search-form { grid-template-columns: 1fr; }
  .venue-card-main { grid-template-columns: 76px minmax(0, 1fr); }
  .venue-logo-tile { min-height: 76px; font-size: 24px; }
  .venue-logo-large { width: 120px; height: 120px; font-size: 38px; }
  .venue-event-row { grid-template-columns: 62px minmax(0, 1fr); }
  .venue-ticket-button { grid-column: 1 / -1; text-align: center; }
}


/* ===========================
   V3.7 VENUES REFINEMENT
=========================== */
.venues-page-header {
  background: #000;
  padding: 46px 0 18px;
}
.venues-page .archive-header {
  margin-bottom: 0;
  border-bottom: 3px solid #262626;
  padding-bottom: 16px;
}
.venues-page .archive-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 58px;
  line-height: .95;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.venues-page .archive-description {
  max-width: 760px;
  color: #b7b7b7;
}
.venues-search-section {
  background: #0b0b0b;
  border-top: none;
  border-bottom: 1px solid #1f1f1f;
  padding: 18px 0 20px;
}
.venues-search-form {
  grid-template-columns: 1.35fr .85fr 90px auto;
}
.venues-grid-section,
.venue-detail-section {
  padding-top: 28px;
}
.venues-results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}
.venues-results-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.venues-results-header p {
  color: #9d9d9d;
  font-size: 13px;
}
.venues-note { display:none; }
.venues-grid { gap: 16px; }
.venue-card-main {
  grid-template-columns: 92px minmax(0,1fr);
  align-items: center;
}
.venue-logo-tile {
  min-height: 92px;
  background: linear-gradient(180deg, #b70000 0%, #7f0000 100%);
  box-shadow: inset 0 0 0 4px rgba(0,0,0,.16);
  padding: 12px;
}
.venue-logo-tile svg {
  width: 100%;
  height: 100%;
  display: block;
}
.venue-logo-large {
  width: 140px;
  height: 140px;
  min-height: 140px;
  padding: 18px;
}
.venue-card-body h3 {
  font-size: 20px;
}
.venue-card-body p, .venue-card-body span {
  display: block;
}
.venue-capacity { margin-top: 8px; }
.venue-card-actions a {
  padding: 12px 10px;
}
.venue-detail-card {
  padding: 20px;
}
.venue-detail-main h2 {
  font-size: clamp(30px, 4.3vw, 52px);
}
.venue-detail-heading {
  margin-bottom: 14px;
}
.venue-detail-heading h3 {
  font-size: 24px;
}
@media (max-width: 720px) {
  .venues-page .archive-header h1 { font-size: 42px; }
  .venues-results-header { flex-direction: column; align-items: flex-start; }
  .venue-logo-tile { min-height: 76px; padding: 10px; }
  .venue-logo-large { width: 120px; height: 120px; min-height: 120px; padding: 14px; }
}


/* ===========================
   V3.8 VENUES POLISH
=========================== */
.venues-page-header {
  background: #000;
  padding: 40px 0 14px;
}
.venues-page .venues-archive-header {
  margin-bottom: 0;
  border-bottom: 3px solid #262626;
  padding-bottom: 16px;
}
.venues-page .venues-archive-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.venues-page .venues-archive-header .archive-description {
  max-width: 760px;
  color: #b8b8b8;
  line-height: 1.65;
}
.venues-search-section {
  background: #0b0b0b;
  border-top: none;
  border-bottom: 1px solid #1e1e1e;
  padding: 18px 0 20px;
}
.venues-search-form {
  grid-template-columns: 1.35fr .8fr 90px auto;
  gap: 12px;
}
.venues-grid-section,
.venue-detail-section {
  padding: 28px 0 72px;
}
.venues-results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 16px;
}
.venues-results-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.venues-results-header p {
  color: #9e9e9e;
  font-size: 13px;
  margin: 0;
}
.venues-grid { gap: 16px; }
.venue-card-main {
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
}
.venue-logo-tile {
  min-height: 92px;
  padding: 12px;
  background: linear-gradient(180deg, #b50000 0%, #7b0000 100%);
  box-shadow: inset 0 0 0 4px rgba(0,0,0,0.16);
}
.venue-logo-tile svg {
  width: 100%;
  height: 100%;
  display: block;
}
.venue-logo-tile svg * {
  vector-effect: non-scaling-stroke;
}
.venue-logo-large {
  width: 140px;
  height: 140px;
  min-height: 140px;
  padding: 16px;
}
.venue-card-body h3 { font-size: 19px; }
.venue-card-body p, .venue-card-body span { display:block; }
.venue-capacity { margin-top: 8px; }
.venues-note { display: none; }
@media (max-width: 980px) {
  .venues-search-form { grid-template-columns: 1fr 1fr 90px; }
  .venues-search-form .calendar-actions { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .venues-page .venues-archive-header h1 { font-size: 38px; }
  .venues-results-header { flex-direction: column; align-items: flex-start; }
}


/* ===========================
   V3.9 VENUES REDESIGN
=========================== */
.venues-page { background: #050505; }
.venues-page-header {
  background: #050505;
  padding: 28px 0 8px;
}
.venues-page .venues-archive-header {
  border-bottom: none;
  padding-bottom: 0;
}
.venues-page .venues-archive-header h1 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: .96;
  margin: 0 0 8px;
}
.venues-page .venues-archive-header .archive-description {
  max-width: 880px;
  color: #b8b8b8;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.venues-search-section {
  background: #050505;
  border-top: none;
  border-bottom: 1px solid #202020;
  padding: 14px 0 22px;
}
.venues-search-shell {
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  padding: 16px 18px;
}
.venues-search-form {
  display: grid;
  grid-template-columns: 1.4fr 0.78fr 88px auto;
  gap: 12px;
  align-items: end;
}
.venues-grid-section,
.venue-detail-section {
  padding: 24px 0 72px;
}
.venues-results-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 3px solid #242424;
}
.venues-results-header h2 {
  font-size: 22px;
  margin: 0 0 3px;
}
.venues-results-header p {
  margin: 0;
  color: #9b9b9b;
  font-size: 13px;
}
.venues-grid { gap: 18px; }
.venue-card { border-color: #232323; }
.venue-card-main {
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}
.venue-logo-tile {
  min-height: 88px;
  padding: 12px;
  background: linear-gradient(180deg, #ba0000 0%, #7c0000 100%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 4px rgba(0,0,0,.18);
}
.venue-logo-tile svg {
  width: 100%;
  height: 100%;
  display: block;
}
.venue-logo-large {
  width: 132px;
  height: 132px;
  min-height: 132px;
  padding: 16px;
}
.venue-card-body h3 {
  font-size: 18px;
  line-height: 1.08;
  margin-bottom: 7px;
}
.venue-card-body p, .venue-card-body span {
  font-size: 13px;
  line-height: 1.35;
}
.venue-capacity {
  margin-top: 8px;
  font-size: 10px !important;
  letter-spacing: .9px;
}
.venue-card-actions a { padding: 12px 10px; }
.venue-detail-card {
  gap: 20px;
  padding: 20px;
}
.venue-detail-main h2 {
  font-size: clamp(30px, 4.3vw, 52px);
}
.venue-detail-heading { margin-bottom: 16px; }
.venue-detail-heading h3 { font-size: 24px; }
@media (max-width: 980px) {
  .venues-search-form { grid-template-columns: 1fr 1fr 88px; }
  .venues-search-form .calendar-actions { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .venues-page .venues-archive-header h1 { font-size: 36px; }
  .venues-search-shell { padding: 14px; }
  .venues-search-form { grid-template-columns: 1fr; }
  .venues-results-header { align-items: flex-start; flex-direction: column; }
  .venues-grid { grid-template-columns: 1fr; }
}


/* ===========================
   V4.0 VENUES CLEANUP
=========================== */
.venues-page-header {
  padding: 18px 0 0;
  background: linear-gradient(180deg, #040404 0%, #050505 100%);
}
.venues-page .venues-archive-header {
  padding: 0 0 14px;
  border-bottom: 1px solid #1f1f1f;
}
.venues-page .venues-archive-header h1 {
  font-size: clamp(40px, 4.8vw, 56px);
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.venues-page .venues-archive-header .archive-description {
  max-width: 920px;
  font-size: 15px;
  line-height: 1.6;
}
.venues-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.venues-header-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  background: #101010;
  border: 1px solid #242424;
  color: #d9d9d9;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.venues-search-section {
  padding: 12px 0 18px;
  border-bottom: 1px solid #171717;
}
.venues-search-shell {
  padding: 14px 16px;
  background: linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
  border: 1px solid #232323;
  box-shadow: 0 0 0 1px rgba(255,255,255,.02) inset;
}
.venues-search-form { gap: 10px; }
.venues-grid-section { padding-top: 18px; }
.venues-results-header {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #242424;
}
.venues-results-header h2 {
  font-size: 20px;
  margin-bottom: 4px;
}
.venues-results-header p { line-height: 1.5; }
.venues-grid { gap: 16px; }
.venue-card {
  background: linear-gradient(180deg, #0e0e0e 0%, #0b0b0b 100%);
  border: 1px solid #242424;
}
.venue-card-main {
  grid-template-columns: 84px minmax(0,1fr);
  align-items: start;
  gap: 14px;
  padding: 14px;
}
.venue-logo-tile {
  min-height: 84px;
  padding: 11px;
  border-radius: 2px;
  background: linear-gradient(180deg, #cb0000 0%, #860000 100%);
}
.venue-card-body {
  display: flex;
  flex-direction: column;
  min-height: 104px;
}
.venue-card-body h3 {
  font-size: 18px;
  line-height: 1.02;
  margin: 0 0 8px;
}
.venue-card-body p {
  margin: 0 0 6px;
  color: #b8b8b8;
}
.venue-card-body span {
  color: #9f9f9f;
}
.venue-capacity {
  align-self: flex-start;
  margin-top: auto;
}
.venue-card-actions {
  background: #090909;
}
.venue-card-actions a {
  padding: 12px 10px;
  font-size: 11px;
}
.venue-logo-large {
  width: 128px;
  height: 128px;
  min-height: 128px;
}
.venue-detail-card {
  padding: 18px;
  gap: 18px;
}
@media (max-width: 720px) {
  .venues-header-meta { gap: 6px; }
  .venues-page .venues-archive-header h1 { font-size: 36px; }
  .venue-card-body { min-height: auto; }
}


/* V4.1 Venue feed expansion */
.venue-capacity.venue-live-feed {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: #efefef !important;
}


/* ===========================
   V4.2 VENUE ALL-IN
=========================== */
.venues-results-header p { color:#b8b8b8; }
.venue-card-body h3 { font-size: 17px; }
.venue-card { min-height: 0; }
.venue-logo-tile { background: radial-gradient(circle at 35% 20%, #ff1c1c 0%, #b40000 42%, #680000 100%); }
.venue-capacity { color:#fff !important; }


/* ===========================
   V4.3 VENUES IMPROVEMENTS
=========================== */
.venues-results-header p { color: #b0b0b0; }
.venue-logo-tile {
  background: linear-gradient(180deg, #cf0000 0%, #8a0000 100%);
  box-shadow: inset 0 0 0 3px rgba(0,0,0,.16);
}
.venue-logo-tile svg * { vector-effect: non-scaling-stroke; }
.venue-logo-tile svg { filter: drop-shadow(0 1px 0 rgba(0,0,0,.2)); }
.venue-local-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 30px;
}
.venue-local-card {
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  border: 1px solid #242424;
  padding: 18px;
}
.venue-local-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}
.venue-local-card p {
  color: #b7b7b7;
  line-height: 1.6;
  margin: 0 0 14px;
}
.venue-local-card a,
.venue-submit-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #d10000;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .8px;
}
.venue-submit-cta {
  padding: 10px 0 70px;
}
.venue-submit-cta-inner {
  background: linear-gradient(180deg, #111 0%, #090909 100%);
  border: 1px solid #252525;
  padding: 22px;
  text-align: center;
}
.venue-submit-cta-inner h3 {
  margin: 0 0 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}
.venue-submit-cta-inner p {
  color: #b7b7b7;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
@media (max-width: 720px) {
  .venue-local-guide { grid-template-columns: 1fr; }
}


/* ===========================
   V4.4 SKETCHY VENUE ICONS
=========================== */
.venue-logo-tile {
  background: linear-gradient(180deg, #d40000 0%, #880000 100%);
}
.venue-logo-tile svg {
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.22));
}
.venue-card:nth-child(odd) .venue-logo-tile svg,
.venue-detail-card .venue-logo-tile svg {
  transform: rotate(-2deg);
}
.venue-card:nth-child(even) .venue-logo-tile svg {
  transform: rotate(1.5deg);
}
.venue-logo-tile path,
.venue-logo-tile rect,
.venue-logo-tile line,
.venue-logo-tile polyline,
.venue-logo-tile circle {
  stroke-dasharray: 0.001 4.2;
  stroke-linecap: round;
}
.venue-submit-cta a {
  min-width: 190px;
}


/* ===========================
   V4.5 TRENDIER VENUE ICONS
=========================== */
.venue-logo-tile {
  background: radial-gradient(circle at 30% 22%, #ff2a2a 0%, #d30000 38%, #870000 100%) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.18), 0 8px 18px rgba(0,0,0,.22);
}
.venue-logo-tile svg {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.18));
}
.venue-card:nth-child(odd) .venue-logo-tile svg,
.venue-detail-card .venue-logo-tile svg {
  transform: rotate(-3deg);
}
.venue-card:nth-child(even) .venue-logo-tile svg {
  transform: rotate(2deg);
}
.venue-logo-tile path,
.venue-logo-tile rect,
.venue-logo-tile line,
.venue-logo-tile polyline,
.venue-logo-tile circle {
  stroke-dasharray: none !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.venue-logo-tile g {
  opacity: .98;
}


/* ===========================
   V4.6 VENUE LETTER MARKS
=========================== */
.venue-logo-tile {
  background: linear-gradient(180deg, #d50000 0%, #8b0000 100%) !important;
  color: #fff !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
.venue-logo-large {
  font-size: 46px !important;
}
.venue-logo-tile svg {
  display: none !important;
}


/* ===========================
   V4.9 SPOTHERO PARKING
=========================== */
.venue-local-card .venue-local-note {
  display: block;
  margin-top: 10px;
  color: #858585;
  font-size: 12px;
  line-height: 1.45;
}


/* ===========================
   V5.0 ABOUT PAGE
=========================== */
.about-page {
  background: #050505;
  color: #fff;
}
.about-hero {
  background:
    radial-gradient(circle at 20% 0%, rgba(204,0,0,.22), transparent 32%),
    linear-gradient(180deg, #070707 0%, #050505 100%);
  border-bottom: 1px solid #202020;
  padding: 54px 0 34px;
}
.about-kicker {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 9px;
  margin-bottom: 16px;
}
.about-hero h1 {
  max-width: 850px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.about-hero p {
  max-width: 780px;
  color: #c6c6c6;
  font-size: 16px;
  line-height: 1.7;
}
.about-content-section,
.contributors-section,
.about-submit-section {
  padding: 34px 0;
}
.about-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, .8fr);
  gap: 22px;
}
.about-main-card,
.about-contact-card,
.contributor-card,
.about-submit-box {
  background: linear-gradient(180deg, #111 0%, #090909 100%);
  border: 1px solid #252525;
}
.about-main-card,
.about-contact-card {
  padding: 24px;
}
.about-main-card h2,
.about-contact-card h2,
.about-section-header h2,
.about-submit-box h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.about-main-card p,
.about-contact-card p,
.about-section-header p,
.about-submit-box p,
.contributor-card p {
  color: #b9b9b9;
  line-height: 1.7;
}
.about-main-card p + p {
  margin-top: 14px;
}
.about-contact-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.about-contact-list a {
  display: block;
  border: 1px solid #2d2d2d;
  background: #0a0a0a;
  padding: 14px;
}
.about-contact-list a:hover {
  border-color: #cc0000;
}
.about-contact-list span {
  display: block;
  color: #999;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.about-contact-list strong {
  display: block;
  color: #fff;
  font-size: 14px;
}
.about-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 3px solid #262626;
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.about-section-header p {
  max-width: 520px;
  text-align: right;
}
.contributors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.contributor-card {
  padding: 18px;
  min-height: 100%;
}
.contributor-avatar {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d00000 0%, #850000 100%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.contributor-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.contributor-card span {
  display: block;
  color: #cc0000;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-submit-section {
  padding-bottom: 72px;
}
.about-submit-box {
  text-align: center;
  padding: 26px;
}
.about-submit-box p {
  max-width: 720px;
  margin: 0 auto 18px;
}
.about-submit-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 18px;
}
.about-submit-box a:hover {
  background: #fff;
  color: #111;
}
@media (max-width: 980px) {
  .about-content-grid,
  .contributors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .about-hero { padding: 38px 0 28px; }
  .about-content-grid,
  .contributors-grid {
    grid-template-columns: 1fr;
  }
  .about-section-header {
    display: block;
  }
  .about-section-header p {
    text-align: left;
    margin-top: 8px;
  }
}


/* ===========================
   V5.1 ABOUT CONTRIBUTORS
=========================== */
.contributors-grid-full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.contributors-grid-full .contributor-card {
  align-items: flex-start;
  min-height: 150px;
}
.contributors-grid-full .contributor-avatar {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  font-size: 22px;
}
.contributors-grid-full .contributor-card h3 {
  font-size: 22px;
  line-height: 1.05;
}
.contributors-grid-full .contributor-card span {
  display: block;
  margin-bottom: 8px;
}
.contributors-grid-full .contributor-card p {
  margin: 0;
}
@media (max-width: 1100px) {
  .contributors-grid-full { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .contributors-grid-full { grid-template-columns: 1fr; }
}


/* ===========================
   V5.2 ABOUT TEAM DESCRIPTIONS
=========================== */
.contributor-card-featured {
  border-color: rgba(204,0,0,.55);
  background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
}
.contributor-description {
  margin-top: 10px !important;
  color: #c8c8c8 !important;
  font-size: 13px;
  line-height: 1.55 !important;
}
.contributors-grid-full .contributor-card {
  min-height: 235px;
}
.contributors-grid-full .contributor-avatar {
  margin-bottom: 14px;
}


/* ===========================
   V5.3 CONTRIBUTOR CONTACT LINKS
=========================== */
.contributor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.contributor-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #cc0000;
  border: 1px solid #cc0000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 7px 10px;
}
.contributor-links a:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}
.contributor-card-featured {
  border-color: rgba(204,0,0,.6);
}


/* ===========================
   V5.6 ABOUT CONTRIBUTORS CLEANUP
=========================== */
.contributors-grid-full {
  gap: 26px 34px;
}
.contributors-grid-full .contributor-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 0 18px !important;
  display: block;
  border-bottom: 1px solid #202020 !important;
}
.contributors-grid-full .contributor-avatar {
  display: none !important;
}
.contributors-grid-full .contributor-card h3 {
  margin: 0 0 4px;
  font-size: 23px;
}
.contributors-grid-full .contributor-card span {
  display: block;
  position: relative;
  padding-bottom: 11px;
  margin-bottom: 12px;
}
.contributors-grid-full .contributor-card span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: #d10000;
}
.contributors-grid-full .contributor-card p {
  max-width: 520px;
}
.contributor-links {
  margin-top: 13px;
}


/* ===========================
   V5.7 ABOUT CONTACT REFINEMENT
=========================== */
.about-contact-list a[href^="tel:"] strong {
  letter-spacing: .5px;
}
.contributor-card-desk span::after {
  background: #d10000;
}


/* ===========================
   V6.0 ABOUT AMP BRAND BLOCK
=========================== */
.about-amp-difference {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #242424;
}
.about-amp-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.about-amp-heading span {
  color: #d10000;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.about-amp-heading strong {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}
.about-amp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.about-amp-card {
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
  border: 1px solid #242424;
  padding: 16px 15px 18px;
  min-height: 176px;
}
.about-amp-card::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 14px;
  width: 42px;
  height: 3px;
  background: #d10000;
}
.about-amp-card b {
  position: absolute;
  right: 10px;
  bottom: -18px;
  color: rgba(255,255,255,.045);
  font-family: 'Oswald', sans-serif;
  font-size: 112px;
  line-height: 1;
}
.about-amp-card h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 9px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}
.about-amp-card p {
  position: relative;
  z-index: 1;
  color: #bdbdbd !important;
  font-size: 13px;
  line-height: 1.55 !important;
  margin: 0 !important;
}
@media (max-width: 760px) {
  .about-amp-heading { align-items: flex-start; flex-direction: column; }
  .about-amp-grid { grid-template-columns: 1fr; }
  .about-amp-card { min-height: 140px; }
}


/* ===========================
   V6.1 CONTRIBUTOR CMS
=========================== */
.contributor-links a[href^="tel:"] {
  background: transparent;
  color: #d8d8d8;
  border-color: #333;
}
.contributor-links a[href^="tel:"]:hover {
  background: #d10000;
  border-color: #d10000;
  color: #fff;
}


/* ===========================
   V6.2 ABOUT PAGE TIGHTENING
=========================== */
.contributors-section {
  padding-top: 26px;
}
.about-section-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
}
.about-section-header p {
  display: none;
}
.about-content-section {
  padding-bottom: 22px;
}
.contributors-grid {
  margin-top: 0;
}
.about-main-card {
  padding-bottom: 26px;
}
.about-amp-difference {
  margin-top: 24px;
}


/* ===========================
   V6.3 ABOUT CONTACT FILL
=========================== */
.about-contact-extra {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.about-contact-extra div {
  border: 1px solid #252525;
  background: #0a0a0a;
  padding: 14px;
}
.about-contact-extra span {
  display: block;
  color: #d10000;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.about-contact-extra strong {
  display: block;
  color: #f5f5f5;
  font-size: 14px;
  line-height: 1.45;
}
.contributor-links a[href^="tel:"] {
  display: none !important;
}


/* ===========================
   V6.6 ABOUT HERO CLEANUP
=========================== */
.about-hero .about-hero-line {
  display: inline-flex;
  width: auto;
  max-width: none;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(204, 0, 0, 0.18);
  border-left: 4px solid #d00000;
  color: #f3f3f3;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* ===========================
   V6.7 ABOUT HERO CLEANUP
=========================== */
.about-hero .about-hero-line { display: none !important; }
.about-hero { padding-bottom: 68px; }


/* ===========================
   V6.9 SINGLE POST TEMPLATE
=========================== */
.amp-single-post {
  background: #050505;
  color: #e7e7e7;
}
.amp-single-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(204,0,0,.18), transparent 34%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
  border-bottom: 1px solid #1d1d1d;
  padding: 72px 0 32px;
}
.amp-single-hero-inner {
  max-width: 1040px;
}
.amp-single-kicker {
  display: inline-flex;
  background: #d00000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  padding: 9px 11px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.amp-single-hero h1 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .95;
  max-width: 980px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.amp-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: #a9a9a9;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.amp-single-meta span + span::before {
  content: '/';
  color: #d00000;
  margin-right: 10px;
}
.amp-single-wrap {
  padding: 34px 0 70px;
}
.amp-single-container {
  max-width: 980px;
}
.amp-single-article {
  background: linear-gradient(180deg, #0d0d0d 0%, #070707 100%);
  border: 1px solid #202020;
  padding: clamp(18px, 3vw, 34px);
}
.amp-single-featured-image {
  margin: 0 0 26px;
}
.amp-single-featured-image img,
.amp-single-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #242424;
}
.amp-single-content {
  color: #d7d7d7;
  font-size: 17px;
  line-height: 1.78;
}
.amp-single-content > *:first-child {
  margin-top: 0;
}
.amp-single-content p {
  margin: 0 0 20px;
}
.amp-single-content h2,
.amp-single-content h3,
.amp-single-content h4 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  line-height: 1.1;
  margin: 34px 0 14px;
  text-transform: uppercase;
}
.amp-single-content h2 {
  font-size: 32px;
  border-top: 2px solid #252525;
  padding-top: 22px;
}
.amp-single-content h3 {
  font-size: 24px;
}
.amp-single-content a {
  color: #fff;
  text-decoration-color: #d00000;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.amp-single-content a:hover {
  color: #ff2a2a;
}
.amp-single-content figure,
.amp-single-content .wp-block-image {
  margin: 28px 0;
}
.amp-single-content figcaption,
.wp-caption-text {
  color: #9e9e9e;
  font-size: 12px;
  margin-top: 9px;
  text-align: left;
}
.amp-single-content .wp-block-embed,
.amp-single-content .wp-block-video {
  margin: 28px 0;
}
.amp-single-content .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  border: 1px solid #242424;
}
.amp-single-content .wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.amp-single-content ul,
.amp-single-content ol {
  margin: 0 0 24px 22px;
  padding: 0;
}
.amp-single-content li {
  margin-bottom: 8px;
}
.amp-single-content blockquote {
  border-left: 4px solid #d00000;
  margin: 28px 0;
  padding: 8px 0 8px 18px;
  color: #f0f0f0;
  font-size: 20px;
  line-height: 1.55;
}
.amp-single-content .wp-block-button__link,
.amp-single-content .button,
.amp-single-content a.wp-block-button__link {
  background: #d00000;
  border-radius: 0;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-decoration: none;
}
.amp-single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  color: #ddd;
}
.amp-single-content th,
.amp-single-content td {
  border: 1px solid #242424;
  padding: 12px;
}
.amp-single-content th {
  color: #fff;
  background: #111;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
.amp-single-footer {
  border-top: 1px solid #252525;
  margin-top: 34px;
  padding-top: 18px;
  color: #aaa;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.amp-single-tags span {
  color: #d00000;
  margin-right: 6px;
}
@media (max-width: 700px) {
  .amp-single-hero { padding: 44px 0 24px; }
  .amp-single-wrap { padding-top: 22px; }
  .amp-single-article { border-left: none; border-right: none; }
  .amp-single-content { font-size: 16px; }
}


/* ===========================
   V7.1 SAFE SINGLE POST FIX
   Base restored from v6.9
=========================== */
.amp-single-hero {
  padding: 46px 0 24px;
}
.amp-single-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  max-width: 920px;
}
.amp-single-meta {
  margin-top: 14px;
}
.amp-single-wrap {
  padding: 26px 0 68px;
}
.amp-single-container {
  max-width: 940px;
}
.amp-single-article {
  padding: clamp(16px, 2.4vw, 28px);
}
.amp-single-featured-image {
  display: none !important;
}
.amp-single-content figure,
.amp-single-content .wp-block-image {
  margin: 22px 0;
}
.amp-single-content .wp-block-image img,
.amp-single-content figure img,
.amp-single-content > img {
  width: auto;
  max-width: 100%;
  max-height: 760px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
.amp-single-content h2 {
  font-size: 28px;
  margin-top: 28px;
  padding-top: 18px;
}
.amp-single-content h3 {
  font-size: 22px;
  margin-top: 26px;
}
@media (max-width: 700px) {
  .amp-single-hero { padding: 34px 0 20px; }
  .amp-single-hero h1 { font-size: clamp(30px, 10vw, 42px); }
  .amp-single-content .wp-block-image img,
  .amp-single-content figure img,
  .amp-single-content > img { max-height: 620px; }
}


/* ===========================
   V7.2 CONSISTENT POST SYSTEM
=========================== */
.amp-single-hero {
  padding: 34px 0 20px !important;
}
.amp-single-hero h1 {
  font-size: clamp(30px, 3.9vw, 48px) !important;
  max-width: 880px;
  line-height: 1.04;
}
.amp-single-kicker {
  margin-bottom: 14px;
}
.amp-single-meta {
  margin-top: 12px;
}
.amp-single-wrap {
  padding-top: 22px !important;
}
.amp-single-container {
  max-width: 860px !important;
}
.amp-single-article {
  padding: clamp(18px, 2.6vw, 26px) !important;
}
.amp-single-content {
  font-size: 16px;
  line-height: 1.72;
}
.amp-single-content > h1:first-child,
.amp-single-content > h2:first-child,
.amp-single-content > h3:first-child {
  margin-top: 0;
  border-top: 1px solid #252525;
}
.amp-single-content figure,
.amp-single-content .wp-block-image,
.amp-single-content .wp-block-embed,
.amp-single-content .wp-block-video {
  margin: 24px 0;
}
.amp-single-content .wp-block-image img,
.amp-single-content figure img,
.amp-single-content > img {
  max-height: 720px;
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.amp-single-content .wp-block-image.alignwide img,
.amp-single-content .wp-block-image.size-full img {
  width: auto;
}
.amp-single-content h2 {
  font-size: 26px !important;
  margin-top: 30px;
  padding-top: 18px;
}
.amp-single-content h3 {
  font-size: 21px !important;
}
.block-editor-block-list__layout .wp-block[data-type="core/image"] figcaption {
  font-size: 12px;
}
@media (max-width: 700px) {
  .amp-single-hero h1 { font-size: clamp(28px, 9vw, 38px) !important; }
  .amp-single-container { max-width: 100% !important; }
  .amp-single-content .wp-block-image img,
  .amp-single-content figure img,
  .amp-single-content > img { max-height: 600px; }
}


/* ===========================
   V7.5 FOOTER + LEGAL PAGES
=========================== */
.amp-footer {
  position: relative;
  overflow: hidden;
  background: #050505;
  border-top: 1px solid #161616;
  padding: 0 0 22px;
}
.footer-skyline {
  position: relative;
  min-height: 150px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, #050505 100%),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(180deg, #111 0%, #050505 75%);
  border-bottom: 1px solid #181818;
}
.footer-skyline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.95) 100%);
}
.skyline-building {
  position: absolute;
  bottom: 0;
  display: block;
  width: 6%;
  background: linear-gradient(180deg, #222 0%, #0d0d0d 100%);
  opacity: .82;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.skyline-building::after {
  content: "";
  position: absolute;
  inset: 12px 18% 8px;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.16) 0 2px, transparent 2px 11px);
  opacity: .35;
}
.skyline-building.b1 { left: 7%; height: 44px; width: 5%; }
.skyline-building.b2 { left: 14%; height: 72px; width: 4%; }
.skyline-building.b3 { left: 21%; height: 102px; width: 6%; }
.skyline-building.b4 { left: 30%; height: 62px; width: 7%; }
.skyline-building.b5 { left: 43%; height: 125px; width: 5%; }
.skyline-building.b6 { left: 52%; height: 86px; width: 7%; }
.skyline-building.b7 { left: 64%; height: 58px; width: 6%; }
.skyline-building.b8 { left: 74%; height: 96px; width: 5%; }
.skyline-building.b9 { left: 84%; height: 48px; width: 7%; }
.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.4fr) minmax(260px, 1fr);
  gap: 34px;
  padding: 34px 0 24px;
  border-bottom: 1px solid #1a1a1a;
}
.footer-brand-block p,
.footer-connect p {
  color: #a8a8a8;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 340px;
}
.footer-nav {
  align-content: start;
  display: grid;
  gap: 10px 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.footer-nav a {
  color: #d0d0d0;
  font-size: 12px;
  letter-spacing: .9px;
}
.footer-connect h3 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.footer-contact-button {
  display: inline-flex;
  margin: 14px 0 18px;
  background: #d30000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  font-size: 13px;
}
.footer-contact-button:hover { background: #fff; color: #000; }
.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 18px;
}
.legal-hero {
  background: radial-gradient(circle at 0 0, rgba(200,0,0,.26), transparent 38%), #050505;
  border-bottom: 1px solid #191919;
  padding: 86px 0 56px;
}
.legal-hero h1 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .95;
  text-transform: uppercase;
  margin: 12px 0 18px;
}
.legal-hero p {
  color: #bdbdbd;
  max-width: 820px;
  font-size: 17px;
  line-height: 1.7;
}
.legal-content-section { padding: 44px 0 80px; background: #050505; }
.legal-content-card {
  max-width: 940px;
  margin: 0 auto;
  background: linear-gradient(180deg, #101010 0%, #0a0a0a 100%);
  border: 1px solid #242424;
  padding: clamp(24px, 4vw, 48px);
}
.legal-content-card h2 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin: 28px 0 10px;
}
.legal-content-card h2:first-child { margin-top: 0; }
.legal-content-card h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: #d30000;
  margin-top: 10px;
}
.legal-content-card p {
  color: #c5c5c5;
  line-height: 1.75;
  margin: 0 0 18px;
}
.legal-updated {
  color: #777 !important;
  border-top: 1px solid #242424;
  padding-top: 18px;
  margin-top: 28px !important;
}
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-skyline { min-height: 110px; }
}


/* ===========================
   V7.6 MOCKUP-STYLE FOOTER
=========================== */
.amp-footer {
  background: #000 !important;
  border-top: 1px solid #111 !important;
  padding: 0 0 22px !important;
  overflow: hidden;
}
.amp-footer-top {
  display: grid;
  grid-template-columns: minmax(340px, 42%) 1fr;
  min-height: 178px;
  background: #030303;
  border-top: 1px solid #151515;
  border-bottom: 1px solid #151515;
}
.amp-footer-city {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  background: #050505;
}
.amp-city-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.18) 70%, #000 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 260'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23797979'/%3E%3Cstop offset='.52' stop-color='%233d3d3d'/%3E%3Cstop offset='1' stop-color='%23090909'/%3E%3C/linearGradient%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 .18'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3C/defs%3E%3Crect width='900' height='260' fill='url(%23sky)'/%3E%3Cg fill='%23101010'%3E%3Cpath d='M0 210h28v-62h24v-38h18v100h30v-78h34v78h26V94h18V70h28v140h20v-92h42v92h22V34h22V18h36v192h24v-84h42v84h22V64h26V46h34v164h22v-112h38v112h28V30h20V10h42v200h20v-72h36v72h22v-96h42v96h24v-54h54v54h70v50H0z'/%3E%3C/g%3E%3Cg stroke='%23d7d7d7' stroke-width='2' opacity='.4'%3E%3Cpath d='M142 92h38M142 112h38M142 132h38M294 44h58M294 70h58M294 96h58M294 122h58M294 148h58M560 42h70M560 70h70M560 98h70M560 126h70M560 154h70M724 132h46M724 154h46M724 176h46'/%3E%3C/g%3E%3Crect width='900' height='260' filter='url(%23grain)' opacity='.38'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center bottom;
  filter: grayscale(1) contrast(1.12);
  opacity: .92;
}
.amp-footer-signup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px min(5vw, 78px) 38px 46px;
  background: #000;
}
.amp-footer-signup h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.amp-footer-signup p {
  margin: 0;
  max-width: 365px;
  color: #c6c6c6;
  font-size: 14px;
  line-height: 1.55;
}
.footer-newsletter-form {
  flex-shrink: 0;
  display: flex;
  width: min(430px, 44vw);
}
.footer-newsletter-form input[type="email"] {
  width: 100%;
  min-width: 0;
  background: #050505;
  border: 1px solid #575757;
  color: #fff;
  height: 50px;
}
.footer-newsletter-form button {
  height: 50px;
  background: #d60000;
}
.footer-main-mockup {
  display: grid !important;
  grid-template-columns: minmax(180px, 1fr) minmax(420px, 1.5fr) minmax(180px, .8fr) !important;
  align-items: center;
  gap: 28px !important;
  padding: 26px 0 18px !important;
  border-bottom: none !important;
}
.footer-main-mockup .footer-brand-block p,
.footer-main-mockup .footer-connect { display: none !important; }
.footer-main-mockup .footer-logo .logo-atlanta { font-size: 34px !important; line-height: .86; }
.footer-main-mockup .footer-logo .logo-music-press { font-size: 18px !important; letter-spacing: 2px !important; }
.footer-main-mockup .footer-nav {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px !important;
}
.footer-main-mockup .footer-nav a {
  color: #f1f1f1 !important;
  font-family: 'Oswald', sans-serif;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: .8px !important;
  text-transform: uppercase;
}
.footer-main-mockup .footer-nav a:hover { color: #e00000 !important; }
.footer-social-large {
  justify-content: flex-end;
  gap: 18px !important;
}
.footer-social-large a { color: #f2f2f2 !important; }
.footer-social-large svg { width: 20px !important; height: 20px !important; }
.amp-footer .footer-bottom {
  padding-top: 8px !important;
  color: #777;
  border-top: none;
}
.amp-footer .footer-bottom span { color: #777; }
@media (max-width: 900px) {
  .amp-footer-top { grid-template-columns: 1fr; }
  .amp-footer-city { min-height: 150px; }
  .amp-footer-signup { padding: 30px 22px; flex-direction: column; align-items: flex-start; }
  .footer-newsletter-form { width: 100%; }
  .footer-main-mockup { grid-template-columns: 1fr !important; text-align: left; }
  .footer-main-mockup .footer-nav { justify-content: flex-start; }
  .footer-social-large { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .footer-newsletter-form { flex-direction: column; gap: 10px; }
  .footer-newsletter-form input[type="email"],
  .footer-newsletter-form button { width: 100%; }
}


/* ===========================
   V7.7 FOOTER FIX - REAL CITY IMAGE + ONE SIGNUP
=========================== */
/* Front page already has one footer signup, so remove old pre-footer newsletter if cached CSS/content appears. */
.newsletter-banner { display: none !important; }

.amp-footer-v77 {
  background: #000 !important;
  border-top: 1px solid #111 !important;
  padding: 0 0 22px !important;
}
.amp-footer-v77 .amp-footer-top {
  display: grid !important;
  grid-template-columns: minmax(360px, 42%) 1fr !important;
  min-height: 176px !important;
  background: #000 !important;
  border-top: 1px solid #151515 !important;
  border-bottom: 1px solid #111 !important;
}
.amp-footer-v77 .amp-footer-city {
  min-height: 176px !important;
  background: #000 !important;
  position: relative !important;
  overflow: hidden !important;
}
.amp-footer-v77 .amp-city-photo {
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.03) 0%, rgba(0,0,0,.15) 70%, #000 100%),
    url('assets/images/footer-atlanta-skyline.svg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  filter: grayscale(1) contrast(1.12) brightness(.82) !important;
  opacity: .95 !important;
}
.amp-footer-v77 .amp-footer-signup {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px !important;
  padding: 38px min(5vw, 74px) 38px 46px !important;
  background: #000 !important;
}
.amp-footer-v77 .amp-footer-signup h3 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 27px !important;
  line-height: 1 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}
.amp-footer-v77 .amp-footer-signup p {
  margin: 0 !important;
  max-width: 380px !important;
  color: #c7c7c7 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}
.amp-footer-v77 .footer-newsletter-form {
  flex-shrink: 0 !important;
  display: flex !important;
  width: min(430px, 44vw) !important;
}
.amp-footer-v77 .footer-newsletter-form input[type="email"] {
  width: 100% !important;
  height: 50px !important;
  min-width: 0 !important;
  background: #050505 !important;
  border: 1px solid #575757 !important;
  color: #fff !important;
}
.amp-footer-v77 .footer-newsletter-form button {
  height: 50px !important;
  background: #d60000 !important;
  color: #fff !important;
}
.amp-footer-v77 .footer-main-mockup {
  display: grid !important;
  grid-template-columns: minmax(180px, 1fr) minmax(460px, 1.6fr) minmax(180px, .8fr) !important;
  align-items: center !important;
  gap: 28px !important;
  padding: 28px 0 18px !important;
  border-bottom: none !important;
}
.amp-footer-v77 .footer-logo .logo-atlanta { font-size: 34px !important; line-height: .86 !important; }
.amp-footer-v77 .footer-logo .logo-music-press { font-size: 18px !important; letter-spacing: 2px !important; }
.amp-footer-v77 .footer-nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 22px !important;
}
.amp-footer-v77 .footer-nav a {
  color: #f1f1f1 !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .8px !important;
  text-transform: uppercase !important;
}
.amp-footer-v77 .footer-social-large { justify-content: flex-end !important; gap: 18px !important; }
.amp-footer-v77 .footer-social-large svg { width: 20px !important; height: 20px !important; }
.amp-footer-v77 .footer-bottom {
  padding-top: 8px !important;
  color: #777 !important;
  border-top: none !important;
  text-align: center !important;
}
@media (max-width: 900px) {
  .amp-footer-v77 .amp-footer-top { grid-template-columns: 1fr !important; }
  .amp-footer-v77 .amp-footer-city { min-height: 145px !important; }
  .amp-footer-v77 .amp-footer-signup { padding: 30px 22px !important; flex-direction: column !important; align-items: flex-start !important; }
  .amp-footer-v77 .footer-newsletter-form { width: 100% !important; }
  .amp-footer-v77 .footer-main-mockup { grid-template-columns: 1fr !important; text-align: left !important; }
  .amp-footer-v77 .footer-nav { justify-content: flex-start !important; }
  .amp-footer-v77 .footer-social-large { justify-content: flex-start !important; }
}
@media (max-width: 560px) {
  .amp-footer-v77 .footer-newsletter-form { flex-direction: column !important; gap: 10px !important; }
  .amp-footer-v77 .footer-newsletter-form input[type="email"],
  .amp-footer-v77 .footer-newsletter-form button { width: 100% !important; }
}


/* ===========================
   V7.8 FOOTER SHARPNESS + LIVE LINKS
=========================== */
.amp-footer-v77 .amp-city-photo {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.24) 72%, #000 100%),
    url('assets/images/footer-atlanta-skyline.svg') !important;
  background-size: cover !important;
  background-position: center bottom !important;
  image-rendering: auto !important;
  filter: grayscale(1) contrast(1.18) brightness(.92) !important;
  opacity: 1 !important;
}
.amp-simple-page .legal-content-card a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.amp-simple-page .legal-content-card ul { margin: 0 0 24px 22px; color: #d7d7d7; line-height: 1.8; }


/* ===========================
   V7.9 REAL SKYLINE FOOTER
=========================== */
.amp-footer-v77 .amp-footer-top {
  display: grid !important;
  grid-template-columns: minmax(380px, 44%) 1fr !important;
  min-height: 230px !important;
  background: #000 !important;
  border-top: 1px solid #111 !important;
  border-bottom: 1px solid #111 !important;
}
.amp-footer-v77 .amp-footer-city {
  min-height: 230px !important;
  background: #000 !important;
  overflow: hidden !important;
}
.amp-footer-v77 .amp-city-photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 230px !important;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.2) 58%, rgba(0,0,0,.78) 100%),
    url('assets/images/footer-atlanta-skyline.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: .94 !important;
  filter: contrast(1.08) brightness(.9) !important;
}
.amp-footer-v77 .amp-footer-signup {
  min-height: 230px !important;
  padding: 46px 70px 42px 42px !important;
  background: #000 !important;
  display: flex !important;
  align-items: center !important;
  gap: 38px !important;
}
.amp-footer-v77 .amp-footer-signup-copy { max-width: 360px !important; }
.amp-footer-v77 .amp-footer-signup h3 {
  font-size: 32px !important;
  line-height: 1 !important;
  margin: 0 0 12px !important;
}
.amp-footer-v77 .amp-footer-signup p {
  font-size: 15px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}
.amp-footer-v77 .footer-newsletter-form {
  flex: 1 1 420px !important;
  max-width: 520px !important;
}
.amp-footer-v77 .footer-newsletter-form input[type="email"] {
  background: #070707 !important;
  color: #fff !important;
  border: 1px solid #555 !important;
}
.amp-footer-v77 .footer-newsletter-form input[type="email"]::placeholder { color: #aaa !important; }
.amp-footer-v77 .footer-main-mockup {
  padding-top: 36px !important;
}
@media (max-width: 900px) {
  .amp-footer-v77 .amp-footer-top {
    grid-template-columns: 1fr !important;
  }
  .amp-footer-v77 .amp-footer-city,
  .amp-footer-v77 .amp-city-photo {
    min-height: 180px !important;
  }
  .amp-footer-v77 .amp-footer-signup {
    min-height: auto !important;
    padding: 30px 22px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}



/* ===========================
   V8.0 EXACT FOOTER IMAGE + SINGLE-LINE LINKS
=========================== */
.amp-footer-v77 .amp-city-photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 230px !important;
  background-image: url('assets/images/footer-atlanta-skyline-exact.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: 1 !important;
  filter: none !important;
}
.amp-footer-v77 .footer-main-mockup {
  grid-template-columns: minmax(180px, .95fr) minmax(640px, 2fr) minmax(140px, .75fr) !important;
  gap: 18px !important;
}
.amp-footer-v77 .footer-nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 18px !important;
  white-space: nowrap !important;
}
.amp-footer-v77 .footer-nav a {
  white-space: nowrap !important;
  font-size: 12px !important;
  letter-spacing: .65px !important;
}
@media (max-width: 1180px) {
  .amp-footer-v77 .footer-main-mockup {
    grid-template-columns: minmax(160px, .9fr) minmax(0, 1.7fr) minmax(120px, .6fr) !important;
  }
  .amp-footer-v77 .footer-nav {
    gap: 14px !important;
  }
  .amp-footer-v77 .footer-nav a {
    font-size: 11px !important;
    letter-spacing: .5px !important;
  }
}



/* ===========================
   V8.1 FOOTER FINAL FIXES
=========================== */
.amp-footer-v77 .amp-footer-top {
  display: grid !important;
  grid-template-columns: minmax(320px, 1.05fr) minmax(420px, 1fr) !important;
  align-items: stretch !important;
  background: #050505 !important;
}

.amp-footer-v77 .amp-footer-city {
  min-height: 240px !important;
  overflow: hidden !important;
  background: #000 !important;
}

.amp-footer-v77 .amp-city-photo,
.amp-footer-v77 .amp-city-photo-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 240px !important;
}

.amp-footer-v77 .amp-city-photo { display: none !important; }

.amp-footer-v77 .amp-city-photo-img {
  object-fit: cover !important;
  object-position: center center !important;
  filter: none !important;
  opacity: 1 !important;
}

.amp-footer-v77 .amp-footer-signup {
  background: #050505 !important;
  padding: 36px 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
}

.amp-footer-v77 .amp-footer-signup-copy {
  max-width: 400px !important;
}

.amp-footer-v77 .amp-footer-signup h3 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: .8px !important;
}

.amp-footer-v77 .amp-footer-signup p {
  margin: 0 !important;
  color: #d7d7d7 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  max-width: 420px !important;
}

.amp-footer-v77 .footer-newsletter-form {
  margin-left: auto !important;
  width: min(100%, 470px) !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 0 !important;
  border: 1px solid rgba(255,255,255,.16) !important;
}

.amp-footer-v77 .footer-newsletter-form input[type="email"] {
  min-width: 0 !important;
  height: 54px !important;
  border: 0 !important;
  border-right: 1px solid rgba(255,255,255,.12) !important;
  background: #0f0f0f !important;
  color: #fff !important;
  padding: 0 18px !important;
}

.amp-footer-v77 .footer-newsletter-form button {
  height: 54px !important;
  padding: 0 26px !important;
  border: 0 !important;
  background: #e00000 !important;
  color: #fff !important;
  font-size: 14px !important;
  letter-spacing: .8px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.amp-footer-v77 .footer-main-mockup {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  padding-top: 28px !important;
  padding-bottom: 18px !important;
}

.amp-footer-v77 .footer-brand-block {
  flex: 0 0 auto !important;
}

.amp-footer-v77 .footer-nav {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  white-space: nowrap !important;
}

.amp-footer-v77 .footer-nav a {
  display: inline-block !important;
  white-space: nowrap !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: .7px !important;
}

.amp-footer-v77 .footer-social-large {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 18px !important;
}

.amp-footer-v77 .footer-social-large a,
.amp-footer-v77 .footer-social-large svg {
  color: #fff !important;
  fill: currentColor !important;
}

@media (max-width: 1200px) {
  .amp-footer-v77 .footer-nav { gap: 16px !important; }
  .amp-footer-v77 .footer-nav a { font-size: 11px !important; letter-spacing: .55px !important; }
}

@media (max-width: 980px) {
  .amp-footer-v77 .amp-footer-top {
    grid-template-columns: 1fr !important;
  }
  .amp-footer-v77 .amp-footer-city {
    min-height: 220px !important;
  }
  .amp-footer-v77 .amp-footer-signup {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 28px 22px !important;
  }
  .amp-footer-v77 .footer-newsletter-form {
    width: 100% !important;
  }
  .amp-footer-v77 .footer-main-mockup {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .amp-footer-v77 .footer-nav {
    width: 100% !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 14px 18px !important;
  }
  .amp-footer-v77 .footer-social-large {
    justify-content: flex-start !important;
  }
}

@media (max-width: 640px) {
  .amp-footer-v77 .footer-newsletter-form {
    grid-template-columns: 1fr !important;
  }
  .amp-footer-v77 .footer-newsletter-form input[type="email"] {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
  }
}


/* ===========================
   V8.2 FOOTER COMPACT + ONE-LINE LINKS
=========================== */
.amp-footer-v77 .amp-footer-top {
  grid-template-columns: minmax(280px, 46%) minmax(520px, 54%) !important;
  min-height: 190px !important;
}
.amp-footer-v77 .amp-footer-city,
.amp-footer-v77 .amp-city-photo-img {
  min-height: 190px !important;
}
.amp-footer-v77 .amp-footer-signup {
  min-height: 190px !important;
  padding: 26px 40px !important;
  gap: 24px !important;
}
.amp-footer-v77 .amp-footer-signup h3 {
  font-size: 25px !important;
  margin-bottom: 9px !important;
}
.amp-footer-v77 .amp-footer-signup p {
  font-size: 14px !important;
  line-height: 1.45 !important;
  max-width: 360px !important;
}
.amp-footer-v77 .footer-newsletter-form {
  width: min(100%, 410px) !important;
  max-width: 410px !important;
}
.amp-footer-v77 .footer-newsletter-form input[type="email"],
.amp-footer-v77 .footer-newsletter-form button {
  height: 48px !important;
}
.amp-footer-v77 .footer-newsletter-form button {
  padding: 0 20px !important;
}
.amp-footer-v77 .footer-main-mockup {
  display: grid !important;
  grid-template-columns: 200px minmax(760px, 1fr) 150px !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 24px 0 16px !important;
}
.amp-footer-v77 .footer-nav {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  white-space: nowrap !important;
  width: 100% !important;
}
.amp-footer-v77 .footer-nav a {
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  font-size: 11px !important;
  letter-spacing: .55px !important;
  line-height: 1 !important;
}
.amp-footer-v77 .footer-social-large {
  justify-content: flex-end !important;
}
@media (min-width: 981px) and (max-width: 1320px) {
  .amp-footer-v77 .footer-main-mockup {
    grid-template-columns: 170px minmax(620px, 1fr) 130px !important;
    gap: 12px !important;
  }
  .amp-footer-v77 .footer-nav { gap: 13px !important; }
  .amp-footer-v77 .footer-nav a { font-size: 10px !important; letter-spacing: .35px !important; }
}
@media (max-width: 980px) {
  .amp-footer-v77 .amp-footer-top { grid-template-columns: 1fr !important; }
  .amp-footer-v77 .amp-footer-city,
  .amp-footer-v77 .amp-city-photo-img { min-height: 190px !important; }
  .amp-footer-v77 .amp-footer-signup { min-height: auto !important; padding: 28px 22px !important; }
  .amp-footer-v77 .footer-main-mockup {
    grid-template-columns: 1fr !important;
    align-items: flex-start !important;
  }
  .amp-footer-v77 .footer-nav {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    white-space: normal !important;
  }
}


/* ===========================
   V8.3 FOOTER HEIGHT TUNE
=========================== */
@media (min-width: 981px) {
  .amp-footer-v77 .amp-footer-top {
    min-height: 145px !important;
  }
  .amp-footer-v77 .amp-footer-city,
  .amp-footer-v77 .amp-city-photo-img {
    min-height: 145px !important;
    height: 145px !important;
  }
  .amp-footer-v77 .amp-footer-signup {
    min-height: 145px !important;
    padding: 20px 38px !important;
  }
  .amp-footer-v77 .amp-footer-signup h3 {
    font-size: 23px !important;
    margin-bottom: 7px !important;
  }
  .amp-footer-v77 .amp-footer-signup p {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
  .amp-footer-v77 .footer-newsletter-form input[type="email"],
  .amp-footer-v77 .footer-newsletter-form button {
    height: 44px !important;
  }
}

/* ===========================
   V8.4 FOOTER SKYLINE BALANCE
=========================== */
@media (min-width: 981px) {
  .amp-footer-v77 .amp-footer-top {
    min-height: 160px !important;
  }
  .amp-footer-v77 .amp-footer-city,
  .amp-footer-v77 .amp-city-photo-img {
    min-height: 160px !important;
    height: 160px !important;
  }
  .amp-footer-v77 .amp-city-photo-img {
    object-fit: cover !important;
    object-position: center 52% !important;
  }
  .amp-footer-v77 .amp-footer-signup {
    min-height: 160px !important;
    padding: 22px 38px !important;
  }
}

/* ===========================
   V8.5 FOOTER SKYLINE TUNING
=========================== */
@media (min-width: 981px) {
  .amp-footer-v77 .amp-footer-top {
    min-height: 185px !important;
  }
  .amp-footer-v77 .amp-footer-city,
  .amp-footer-v77 .amp-city-photo-img {
    min-height: 185px !important;
    height: 185px !important;
  }
  .amp-footer-v77 .amp-city-photo-img {
    object-fit: cover !important;
    object-position: center 44% !important;
  }
  .amp-footer-v77 .amp-footer-signup {
    min-height: 185px !important;
    padding: 24px 38px !important;
  }
}

/* ===========================
   V8.8 FOOTER SKYLINE MIDDLE GROUND
   - a little larger than v8.7
   - keeps full skyline visible
   - centers the skyline image in the band
=========================== */
@media (min-width: 981px) {
  .amp-footer-v77 .amp-footer-top {
    grid-template-columns: minmax(320px, 39%) minmax(0, 61%) !important;
    min-height: 185px !important;
  }

  .amp-footer-v77 .amp-footer-city {
    min-height: 185px !important;
    height: 185px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #000 !important;
  }

  .amp-footer-v77 .amp-city-photo-img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 185px !important;
    min-height: 185px !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #000 !important;
  }

  .amp-footer-v77 .amp-footer-signup {
    min-height: 185px !important;
    padding: 24px 34px !important;
  }
}


/* ===========================
   V8.9 FOOTER EXACT CROPPED ATL SKYLINE
   - uses Chris' cropped skyline image
   - starts image at far left
   - footer band height follows the image ratio
=========================== */
@media (min-width: 981px) {
  .amp-footer-v77 .amp-footer-top {
    grid-template-columns: minmax(360px, 39%) minmax(0, 61%) !important;
    min-height: 0 !important;
    align-items: stretch !important;
    background: #050505 !important;
  }

  .amp-footer-v77 .amp-footer-city {
    min-height: 0 !important;
    height: auto !important;
    display: block !important;
    overflow: visible !important;
    background: #000 !important;
  }

  .amp-footer-v77 .amp-city-photo-img {
    content: url('assets/images/footer-atlanta-skyline-cropped.jpg') !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    object-fit: unset !important;
    object-position: left top !important;
    background: #000 !important;
  }

  .amp-footer-v77 .amp-footer-signup {
    min-height: 0 !important;
    height: auto !important;
    padding: 26px 34px !important;
    display: flex !important;
    align-items: center !important;
  }
}


/* ===========================
   V9.0 FOOTER NEWSLETTER POLISH
   - keeps Chris' skyline placement
   - tightens and styles the text/form side
=========================== */
@media (min-width: 981px) {
  .amp-footer-v77 .amp-footer-top {
    grid-template-columns: minmax(380px, 40%) minmax(0, 60%) !important;
    background: #030303 !important;
    border-top: 1px solid #171717 !important;
    border-bottom: 1px solid #171717 !important;
  }

  .amp-footer-v77 .amp-footer-city {
    background: #000 !important;
  }

  .amp-footer-v77 .amp-city-photo-img {
    content: url('assets/images/footer-atlanta-skyline-cropped.jpg') !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .amp-footer-v77 .amp-footer-signup {
    position: relative !important;
    background: linear-gradient(90deg, #030303 0%, #080808 52%, #050505 100%) !important;
    padding: 34px 46px !important;
    display: grid !important;
    grid-template-columns: minmax(260px, 390px) minmax(360px, 460px) !important;
    align-items: center !important;
    justify-content: space-between !important;
    column-gap: 46px !important;
  }

  .amp-footer-v77 .amp-footer-signup::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 34px !important;
    bottom: 34px !important;
    width: 3px !important;
    background: #e00000 !important;
  }

  .amp-footer-v77 .amp-footer-signup-copy {
    max-width: 390px !important;
  }

  .amp-footer-v77 .amp-footer-signup h3 {
    font-size: 28px !important;
    line-height: 1 !important;
    letter-spacing: .7px !important;
    margin: 0 0 10px !important;
  }

  .amp-footer-v77 .amp-footer-signup p {
    max-width: 390px !important;
    font-size: 14px !important;
    line-height: 1.52 !important;
    color: #d2d2d2 !important;
    margin: 0 !important;
  }

  .amp-footer-v77 .footer-newsletter-form {
    width: 100% !important;
    max-width: 460px !important;
    margin: 0 !important;
    align-self: center !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,.08) !important;
  }

  .amp-footer-v77 .footer-newsletter-form input[type="email"],
  .amp-footer-v77 .footer-newsletter-form button {
    height: 50px !important;
  }

  .amp-footer-v77 .footer-newsletter-form input[type="email"] {
    background: #101010 !important;
    border: 0 !important;
    color: #fff !important;
    font-size: 14px !important;
  }

  .amp-footer-v77 .footer-newsletter-form button {
    min-width: 126px !important;
    background: #e00000 !important;
    font-size: 14px !important;
  }
}

@media (min-width: 981px) and (max-width: 1220px) {
  .amp-footer-v77 .amp-footer-signup {
    grid-template-columns: minmax(230px, 330px) minmax(310px, 400px) !important;
    column-gap: 30px !important;
    padding: 30px 32px !important;
  }
  .amp-footer-v77 .amp-footer-signup h3 { font-size: 24px !important; }
  .amp-footer-v77 .amp-footer-signup p { font-size: 13px !important; }
}


/* ===========================
   V9.1 FOOTER CLEANUP
   Remove red divider accent from Stay in the Know section
=========================== */
.amp-footer-v77 .amp-footer-signup,
.amp-footer-v77 .amp-footer-signup-copy {
  border-left: 0 !important;
}
.amp-footer-v77 .amp-footer-signup::before,
.amp-footer-v77 .amp-footer-signup::after,
.amp-footer-v77 .amp-footer-signup-copy::before,
.amp-footer-v77 .amp-footer-signup-copy::after {
  display: none !important;
  content: none !important;
}
@media (min-width: 981px) {
  .amp-footer-v77 .amp-footer-signup {
    padding-left: 38px !important;
  }
}


/* ===========================
   V9.4 BLOG / ALL POSTS ARCHIVE FIX
=========================== */
.blog-archive-page {
  background: #000 !important;
  color: #fff !important;
}

.blog-archive-header h1 {
  color: #fff !important;
}

.blog-archive-grid .blog-card {
  background: #0b0b0b;
  border: 1px solid #1f1f1f;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.blog-archive-grid .blog-card:hover {
  transform: translateY(-2px);
  border-color: #cc0000;
  background: #101010;
}

.blog-archive-grid .blog-card > a {
  display: block;
  color: inherit;
  height: 100%;
}

.blog-archive-grid .article-card-img {
  height: 230px;
  background: #111;
}

.blog-archive-grid .article-card-body {
  padding: 14px 14px 18px;
}

.blog-archive-grid .badge {
  display: inline-block;
  margin-bottom: 10px;
}

.blog-archive-grid .article-card-title {
  font-size: 20px;
}

.blog-archive-grid .article-card-excerpt {
  color: #bdbdbd !important;
}

@media (max-width: 960px) {
  .blog-archive-grid .article-card-img { height: 210px; }
}

@media (max-width: 700px) {
  .blog-archive-grid .article-card-img { height: 220px; }
}


/* ===========================
   V9.7 HOME POLISH
   Latest Articles slider, red section rules, larger news thumbs
=========================== */
.latest-articles-slider-section .latest-section-title {
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.latest-scroll-progress {
  position: relative;
  height: 3px;
  margin: 11px 0 18px;
  background: #333;
  overflow: hidden;
}
.latest-scroll-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 18%;
  background: #d00000;
  transform: translateX(0);
  transition: transform .18s ease, width .18s ease;
}
.latest-slider-shell {
  position: relative;
  overflow: hidden;
}
.latest-slider-track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.latest-slider-track::-webkit-scrollbar { display: none; }
.latest-slide-card {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
}
.latest-slide-card a { display: block; height: 100%; }
.three-col .section-title {
  border-bottom-color: #d00000 !important;
}
.news-item,
.news-item-link {
  gap: 14px;
}
.news-item-img {
  width: 104px !important;
  height: 74px !important;
}
.news-item-title {
  font-size: 14px;
}
.news-item-excerpt {
  font-size: 11px;
  line-height: 1.35;
}
@media (max-width: 960px) {
  .latest-slide-card { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 700px) {
  .latest-slide-card { flex-basis: 86%; }
  .news-item-img { width: 92px !important; height: 68px !important; }
}


/* ===========================
   V9.8 Latest Articles Progress Tuning
=========================== */
.latest-scroll-progress {
  height: 3px !important;
  margin: 10px 0 18px !important;
}
.latest-scroll-progress span {
  width: 11% !important;
  transform: none !important;
  left: 0;
  transition: left .14s ease-out !important;
}


/* ===========================
   V9.9 Latest Articles Progress Fix
   Uses pixel transform from JS so the red piece actually travels with horizontal scroll.
=========================== */
.latest-scroll-progress {
  height: 3px !important;
  margin: 10px 0 18px !important;
  background: #333 !important;
  overflow: hidden !important;
}
.latest-scroll-progress span {
  width: clamp(54px, 8%, 95px) !important;
  left: 0 !important;
  transform: translateX(var(--amp-latest-progress-x, 0px)) !important;
  transition: transform .12s ease-out !important;
  will-change: transform !important;
}


/* ===========================
   V10.0 LATEST ARTICLES RED SCROLL INDICATOR
=========================== */
.latest-scroll-progress {
  position: relative !important;
  height: 3px !important;
  margin: 10px 0 18px !important;
  background: #333 !important;
  overflow: hidden !important;
}
.latest-scroll-progress span {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 72px !important;
  max-width: 72px !important;
  min-width: 48px !important;
  height: 100% !important;
  background: #d00000 !important;
  transform: translate3d(0,0,0) !important;
  transition: transform .08s linear !important;
  will-change: transform !important;
}
.latest-slider-track {
  cursor: grab;
}
.latest-slider-track:active {
  cursor: grabbing;
}


/* ===========================
   V10.1 Latest Articles Progress Fix
   No mouse-wheel hijack. Bar follows real horizontal scroll only.
=========================== */
.latest-scroll-progress {
  position: relative !important;
  height: 3px !important;
  margin: 10px 0 18px !important;
  background: #333 !important;
  overflow: hidden !important;
}
.latest-scroll-progress span {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 62px !important;
  max-width: 62px !important;
  min-width: 44px !important;
  height: 100% !important;
  background: #d00000 !important;
  transform: translate3d(var(--amp-latest-progress-x, 0px), 0, 0) !important;
  transition: transform .08s linear !important;
  will-change: transform !important;
}
.latest-slider-track {
  cursor: grab;
  overscroll-behavior-x: contain;
}
.latest-slider-track:active { cursor: grabbing; }


/* ===========================
   V10.3 ABOUT SOCIAL LINKS
=========================== */
.about-social-block {
  padding-bottom: 16px !important;
}
.about-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.about-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: #121212;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.about-social-links a:hover {
  background: #e00000;
  border-color: #e00000;
  color: #fff;
}


/* ===========================
   V10.5 ABOUT SOCIAL ICONS
=========================== */
.about-social-links {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 12px !important;
}
.about-social-links a {
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  line-height: 1 !important;
}
.about-social-links a:hover {
  background: transparent !important;
  border-color: transparent !important;
  color: #e00000 !important;
}
.about-social-links svg {
  width: 22px !important;
  height: 22px !important;
  fill: currentColor !important;
  display: block !important;
}
.about-social-links svg path,
.about-social-links svg rect,
.about-social-links svg line {
  color: inherit !important;
}


/* ===========================
   V10.6 ABOUT SOCIAL CLEANUP
=========================== */
.about-contact-extra .about-social-block {
  border: 0 !important;
  background: transparent !important;
  padding: 2px 0 0 !important;
}
.about-social-block > span {
  display: none !important;
}
.about-social-block .about-social-links {
  margin-top: 0 !important;
  gap: 16px !important;
}
.about-social-block .about-social-links a {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}


/* ===========================
   V10.7 ABOUT SOCIAL MERGE
=========================== */
.about-contact-extra .about-coverage-social {
  display: block !important;
}
.about-contact-extra .about-coverage-social .about-social-links {
  margin-top: 14px !important;
  padding-top: 2px !important;
  gap: 16px !important;
}
.about-contact-extra .about-coverage-social .about-social-links a {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.about-contact-extra .about-coverage-social .about-social-links a:hover {
  color: #e00000 !important;
}
.about-contact-extra > .about-social-block {
  display: none !important;
}


/* ===========================
   V10.8 REMOVE SOCIAL BOX
=========================== */
.about-contact-extra .about-coverage-social .about-social-links {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-top: 14px !important;
}


/* ===========================
   V10.9 ABOUT SOCIAL OUTSIDE BOX
=========================== */
.about-contact-extra .about-coverage-social {
  border: 1px solid #252525 !important;
  background: #0a0a0a !important;
  padding: 14px !important;
}
.about-social-links-standalone {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 18px !important;
  margin-top: 14px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.about-social-links-standalone a {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-height: 0 !important;
}
.about-social-links-standalone svg {
  width: 22px !important;
  height: 22px !important;
}


/* ===========================
   V11.0 CENTER ABOUT SOCIAL ICONS
=========================== */
.about-social-links-standalone {
  justify-content: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* ===========================
   V11.4 LATEST ARTICLE CLICK FIX
=========================== */
.latest-slide-card a {
  position: relative !important;
  z-index: 2 !important;
  pointer-events: auto !important;
}
.latest-slide-card .article-card-img,
.latest-slide-card .article-card-body {
  pointer-events: none !important;
}


/* ===========================
   V11.5 LATEST ARTICLE LINK FIX
=========================== */
.latest-slider-track {
  cursor: default !important;
}
.latest-slider-track:active {
  cursor: default !important;
}
.latest-slide-card,
.latest-slide-card a {
  cursor: pointer !important;
}
.latest-slide-card a {
  display: block !important;
  position: relative !important;
  z-index: 5 !important;
  pointer-events: auto !important;
}
.latest-slide-card a * {
  pointer-events: none !important;
}


/* ===========================
   V11.6 LATEST ARTICLE DIRECT LINKS
=========================== */
.latest-slider-track > a.latest-slide-card {
  display: block !important;
  color: inherit !important;
  text-decoration: none !important;
  position: relative !important;
  z-index: 20 !important;
  pointer-events: auto !important;
}
.latest-slider-track > a.latest-slide-card * {
  pointer-events: none !important;
}


/* ===========================
   V11.7 LATEST ARTICLES HARD FIX
   Turn Latest Articles back into a normal static grid so links open cleanly.
=========================== */
.latest-static-shell {
  overflow: visible !important;
}
.latest-static-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  overflow: visible !important;
  scroll-snap-type: none !important;
  padding-bottom: 0 !important;
  cursor: default !important;
}
.latest-static-grid > a.article-card,
.latest-static-grid > a.latest-slide-card {
  display: block !important;
  flex: none !important;
  color: inherit !important;
  text-decoration: none !important;
  position: relative !important;
  z-index: 50 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
.latest-static-grid > a.article-card * {
  pointer-events: none !important;
}
.latest-static-progress span {
  width: 64px !important;
  transform: none !important;
}
@media (max-width: 960px) {
  .latest-static-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 700px) {
  .latest-static-grid { grid-template-columns: 1fr !important; }
}


/* ===========================
   V11.8 LATEST ARTICLES SCROLL RESTORE
   Horizontal scroll is back, but cards stay direct links.
=========================== */
.latest-articles-slider-section .latest-slider-shell {
  overflow: hidden !important;
}
.latest-articles-slider-section .latest-slider-track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 20px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  padding-bottom: 6px !important;
  cursor: default !important;
}
.latest-articles-slider-section .latest-slider-track::-webkit-scrollbar {
  display: none !important;
}
.latest-articles-slider-section .latest-slider-track > a.article-card,
.latest-articles-slider-section .latest-slider-track > a.latest-slide-card {
  display: block !important;
  flex: 0 0 calc((100% - 60px) / 4) !important;
  min-width: calc((100% - 60px) / 4) !important;
  max-width: calc((100% - 60px) / 4) !important;
  scroll-snap-align: start !important;
  color: inherit !important;
  text-decoration: none !important;
  position: relative !important;
  z-index: 50 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
.latest-articles-slider-section .latest-slider-track > a.article-card * {
  pointer-events: none !important;
}
@media (max-width: 960px) {
  .latest-articles-slider-section .latest-slider-track > a.article-card,
  .latest-articles-slider-section .latest-slider-track > a.latest-slide-card {
    flex-basis: calc((100% - 20px) / 2) !important;
    min-width: calc((100% - 20px) / 2) !important;
    max-width: calc((100% - 20px) / 2) !important;
  }
}
@media (max-width: 700px) {
  .latest-articles-slider-section .latest-slider-track > a.article-card,
  .latest-articles-slider-section .latest-slider-track > a.latest-slide-card {
    flex-basis: 82% !important;
    min-width: 82% !important;
    max-width: 82% !important;
  }
}


/* ===========================
   V12.0 MOBILE FOOTER NEWSLETTER FIX
=========================== */
@media (max-width: 700px) {
  .amp-footer-v77 .amp-footer-top {
    display: block !important;
    min-height: 0 !important;
  }

  .amp-footer-v77 .amp-footer-city {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .amp-footer-v77 .amp-city-photo,
  .amp-footer-v77 .amp-city-photo-img {
    min-height: 0 !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
  }

  .amp-footer-v77 .amp-footer-signup {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 28px 22px 30px !important;
  }

  .amp-footer-v77 .amp-footer-signup-copy {
    max-width: none !important;
    margin: 0 0 22px !important;
  }

  .amp-footer-v77 .amp-footer-signup h3 {
    font-size: 34px !important;
    line-height: .98 !important;
    margin: 0 0 12px !important;
  }

  .amp-footer-v77 .amp-footer-signup p {
    max-width: none !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
  }

  .amp-footer-v77 .footer-newsletter-form {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .amp-footer-v77 .footer-newsletter-form input[type="email"],
  .amp-footer-v77 .footer-newsletter-form button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .amp-footer-v77 .footer-newsletter-form input[type="email"] {
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.16) !important;
    padding: 0 18px !important;
  }

  .amp-footer-v77 .footer-newsletter-form button {
    border: 0 !important;
    padding: 0 18px !important;
  }

  .amp-footer-v77 .footer-main-mockup {
    padding-top: 26px !important;
    margin-top: 0 !important;
  }
}


/* ===========================
   V12.2 HERO FEATURED + MOBILE CLEANUP
=========================== */
@media (max-width: 700px) {
  .hero {
    height: 455px !important;
    min-height: 455px !important;
    margin-top: 0 !important;
  }

  .hero-img {
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: .72 !important;
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(0,0,0,.20) 0%,
        rgba(0,0,0,.42) 42%,
        rgba(0,0,0,.88) 100%),
      linear-gradient(to right,
        rgba(0,0,0,.68) 0%,
        rgba(0,0,0,.38) 58%,
        rgba(0,0,0,.18) 100%) !important;
  }

  .hero-content {
    top: auto !important;
    bottom: 36px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    padding: 0 28px !important;
  }

  .hero-title {
    max-width: 92% !important;
    font-size: clamp(27px, 8.7vw, 37px) !important;
    line-height: 1.01 !important;
    letter-spacing: .2px !important;
    margin: 0 !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,.9) !important;
  }

  .hero-dots {
    right: 22px !important;
    left: auto !important;
    bottom: 18px !important;
  }
}

@media (max-width: 420px) {
  .hero {
    height: 430px !important;
    min-height: 430px !important;
  }

  .hero-content {
    bottom: 38px !important;
    padding: 0 22px !important;
  }

  .hero-title {
    max-width: 95% !important;
    font-size: clamp(25px, 8.2vw, 34px) !important;
  }
}


/* ===========================
   V12.3 MOBILE HERO VISIBILITY
=========================== */
@media (max-width: 700px) {
  .hero-img {
    opacity: 1 !important;
    filter: brightness(1.12) contrast(1.04) !important;
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(0,0,0,.04) 0%,
        rgba(0,0,0,.12) 38%,
        rgba(0,0,0,.54) 100%),
      linear-gradient(to right,
        rgba(0,0,0,.30) 0%,
        rgba(0,0,0,.18) 55%,
        rgba(0,0,0,.08) 100%) !important;
  }

  .hero-title {
    text-shadow:
      0 3px 12px rgba(0,0,0,.95),
      0 0 22px rgba(0,0,0,.78) !important;
  }
}

@media (max-width: 420px) {
  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(0,0,0,.02) 0%,
        rgba(0,0,0,.10) 36%,
        rgba(0,0,0,.50) 100%),
      linear-gradient(to right,
        rgba(0,0,0,.26) 0%,
        rgba(0,0,0,.14) 58%,
        rgba(0,0,0,.06) 100%) !important;
  }
}


/* ===========================
   V12.5 MOBILE CALENDAR FORM CLEANUP
=========================== */
@media (max-width: 700px) {
  .concert-calendar-page .calendar-search-section {
    padding: 22px 0 24px !important;
  }

  .concert-calendar-page .calendar-search-form {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 12px !important;
    align-items: end !important;
  }

  .concert-calendar-page .calendar-field {
    min-width: 0 !important;
  }

  .concert-calendar-page .calendar-field-wide,
  .concert-calendar-page .calendar-field:nth-of-type(4),
  .concert-calendar-page .calendar-field:nth-of-type(5),
  .concert-calendar-page .calendar-actions {
    grid-column: 1 / -1 !important;
  }

  .concert-calendar-page .calendar-field:nth-of-type(2),
  .concert-calendar-page .calendar-field:nth-of-type(3) {
    grid-column: span 1 !important;
  }

  .concert-calendar-page .calendar-field label {
    display: block !important;
    margin-bottom: 7px !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    letter-spacing: 1.2px !important;
  }

  .concert-calendar-page .calendar-field input {
    width: 100% !important;
    max-width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 13px !important;
    font-size: 15px !important;
    line-height: 48px !important;
  }

  .concert-calendar-page .calendar-actions {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-top: 4px !important;
  }

  .concert-calendar-page .calendar-actions button {
    flex: 1 1 auto !important;
    min-height: 52px !important;
    padding: 0 18px !important;
    text-align: center !important;
  }

  .concert-calendar-page .calendar-actions a {
    flex: 0 0 auto !important;
    min-height: 52px !important;
    padding: 0 8px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
}

@media (max-width: 390px) {
  .concert-calendar-page .calendar-search-form {
    grid-template-columns: 1fr !important;
  }

  .concert-calendar-page .calendar-field:nth-of-type(2),
  .concert-calendar-page .calendar-field:nth-of-type(3) {
    grid-column: 1 / -1 !important;
  }
}


/* ===========================
   V12.6.2 HOMEPAGE MUSIC NEWS ONLY
   Force the small Music News blurbs on the homepage to exactly two lines.
=========================== */
.three-col-grid > div:first-child .news-list .news-item-excerpt {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.35 !important;
  max-height: 2.7em !important;
  margin-bottom: 4px !important;
}


/* ===========================
   V12.6.10 SINGLE POST SIDEBAR
   Cleaner desktop sidebar with compact shows and matching social icons.
=========================== */
@media (min-width: 1000px) {
  .amp-single-container {
    max-width: 1180px !important;
    display: grid;
    grid-template-columns: minmax(0, 820px) 300px;
    gap: 38px;
    align-items: start;
  }

  .amp-single-article {
    min-width: 0;
  }

  .amp-single-sidebar {
    display: block;
    position: sticky;
    top: 56px;
  }
}

.amp-single-sidebar {
  color: #e7e7e7;
}

.amp-sidebar-card {
  background: #0b0b0b;
  border: 1px solid #222;
  padding: 18px;
}

.amp-sidebar-card + .amp-sidebar-card {
  margin-top: 18px;
}

.amp-sidebar-heading {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 3px solid #d00000;
  text-transform: uppercase;
}

.amp-sidebar-post {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #202020;
  color: #fff;
  text-decoration: none;
}

.amp-sidebar-post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.amp-sidebar-post:hover .amp-sidebar-post-title {
  color: #ff2a2a;
}

.amp-sidebar-thumb {
  display: block;
  width: 78px;
  height: 55px;
  background: #111;
  overflow: hidden;
}

.amp-sidebar-thumb img,
.amp-sidebar-thumb-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amp-sidebar-post-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  transition: color .18s ease;
}

.amp-sidebar-post-date {
  display: block;
  color: #9b9b9b;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: .8px;
  margin-top: 6px;
  text-transform: uppercase;
}

.amp-sidebar-show {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #202020;
}

.amp-sidebar-show:last-of-type {
  border-bottom: 0;
}

.amp-sidebar-show-date {
  width: 42px;
  height: 42px;
  background: #d00000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.amp-sidebar-show-date span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .6px;
  margin-bottom: 3px;
}

.amp-sidebar-show-date strong {
  font-size: 18px;
  font-weight: 800;
}

.amp-sidebar-show-info {
  min-width: 0;
}

.amp-sidebar-show-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.amp-sidebar-show-venue {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #a8a8a8;
  font-size: 11px;
  line-height: 1.25;
  margin-top: 3px;
}

.amp-sidebar-ticket {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-top: 0;
  padding: 0 9px;
  background: #fff;
  color: #050505;
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .8px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease;
}

.amp-sidebar-ticket:hover {
  background: #d00000;
  color: #fff;
}

.amp-sidebar-view-all {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: #ff2a2a;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-top: 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.amp-sidebar-empty,
.amp-sidebar-follow-text {
  color: #aaa;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 14px;
}

.amp-sidebar-follow-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.amp-sidebar-follow-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #bdbdbd;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.amp-sidebar-follow-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.amp-sidebar-follow-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.amp-sidebar-follow-links svg path,
.amp-sidebar-follow-links svg rect,
.amp-sidebar-follow-links svg line,
.amp-sidebar-follow-links svg polygon {
  vector-effect: non-scaling-stroke;
}

@media (max-width: 999px) {
  .amp-single-sidebar {
    display: none;
  }
}


/* ===========================
   V12.6.15 SINGLE POST RELATED CARDS
   Automatic More From AMP section with images.
=========================== */
.amp-related-posts {
  margin: 44px 0 10px;
  padding-top: 28px;
  border-top: 1px solid #242424;
}

.amp-related-heading {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid #d00000;
  text-transform: uppercase;
}

.amp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.amp-related-card {
  display: block;
  min-width: 0;
  background: #0b0b0b;
  border: 1px solid #242424;
  color: #fff !important;
  overflow: hidden;
  text-decoration: none !important;
  transition: border-color .18s ease, transform .18s ease;
}

.amp-related-card:hover {
  border-color: #d00000;
  transform: translateY(-2px);
}

.amp-related-image {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #151515;
  overflow: hidden;
}

.amp-related-image img,
.amp-related-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amp-related-placeholder {
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d00000, #250000);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
}

.amp-related-body {
  display: block;
  padding: 13px 14px 15px;
}

.amp-related-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-bottom: 9px;
  padding: 0 7px;
  background: #d00000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .8px;
  line-height: 1;
  text-transform: uppercase;
}

.amp-related-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  transition: color .18s ease;
}

.amp-related-card:hover .amp-related-title {
  color: #ff2a2a;
}

.amp-related-date {
  display: block;
  color: #9d9d9d;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  margin-top: 10px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .amp-related-posts {
    margin-top: 34px;
    padding-top: 24px;
  }

  .amp-related-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .amp-related-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .amp-related-image {
    height: 100%;
    min-height: 112px;
    aspect-ratio: auto;
  }

  .amp-related-title {
    font-size: 15px;
    -webkit-line-clamp: 3;
  }
}


/* ===========================
   V12.6.22 SOCIAL ICON HOVER COLOR
   Keeps social icons white by default and red on hover.
=========================== */
.social-links a,
.footer-social a,
.footer-social-large a,
.about-social-links a,
.about-social-links-standalone a,
.amp-sidebar-follow-links a {
  color: #ffffff !important;
}

.social-links a:hover,
.footer-social a:hover,
.footer-social-large a:hover,
.about-social-links a:hover,
.about-social-links-standalone a:hover,
.amp-sidebar-follow-links a:hover {
  color: #e00000 !important;
}

.social-links svg,
.footer-social svg,
.footer-social-large svg,
.about-social-links svg,
.about-social-links-standalone svg,
.amp-sidebar-follow-links svg {
  fill: currentColor !important;
}

.social-links svg path,
.social-links svg rect,
.social-links svg line,
.footer-social svg path,
.footer-social svg rect,
.footer-social svg line,
.footer-social-large svg path,
.footer-social-large svg rect,
.footer-social-large svg line,
.about-social-links svg path,
.about-social-links svg rect,
.about-social-links svg line,
.about-social-links-standalone svg path,
.about-social-links-standalone svg rect,
.about-social-links-standalone svg line,
.amp-sidebar-follow-links svg path,
.amp-sidebar-follow-links svg rect,
.amp-sidebar-follow-links svg line {
  stroke: currentColor !important;
}


/* ===========================
   V12.6.22 SOCIAL ICON FINAL HOVER FIX
   White by default, red on hover, with outline Instagram icon restored.
=========================== */
.social-links a,
.footer-social a,
.footer-social-large a,
.amp-footer-v77 .footer-social-large a,
.about-social-links a,
.about-social-links-standalone a,
.about-coverage-social .about-social-links a,
.amp-sidebar-follow-links a {
  color: #ffffff !important;
}

.social-links a:hover,
.footer-social a:hover,
.footer-social-large a:hover,
.amp-footer-v77 .footer-social-large a:hover,
.about-social-links a:hover,
.about-social-links-standalone a:hover,
.about-coverage-social .about-social-links a:hover,
.amp-sidebar-follow-links a:hover {
  color: #e00000 !important;
}

.social-links svg rect,
.footer-social svg rect,
.footer-social-large svg rect,
.amp-footer-v77 .footer-social-large svg rect,
.about-social-links svg rect,
.about-social-links-standalone svg rect,
.about-coverage-social .about-social-links svg rect,
.amp-sidebar-follow-links svg rect {
  fill: none !important;
  stroke: currentColor !important;
}

.social-links svg line,
.footer-social svg line,
.footer-social-large svg line,
.amp-footer-v77 .footer-social-large svg line,
.about-social-links svg line,
.about-social-links-standalone svg line,
.about-coverage-social .about-social-links svg line,
.amp-sidebar-follow-links svg line {
  fill: none !important;
  stroke: currentColor !important;
}


/* ===========================
   V1.0 FOOTER SOCIAL HOVER LOCK
   Footer icons stay white normally and turn red when hovering the icon itself.
=========================== */
.amp-footer-v77 .footer-social-large a {
  color: #ffffff !important;
}

.amp-footer-v77 .footer-social-large a svg,
.amp-footer-v77 .footer-social-large a svg * {
  color: currentColor !important;
  transition: color .18s ease, fill .18s ease, stroke .18s ease;
}

.amp-footer-v77 .footer-social-large a:hover,
.amp-footer-v77 .footer-social-large a:hover svg {
  color: #e00000 !important;
}

.amp-footer-v77 .footer-social-large a svg path:not([fill="none"]),
.amp-footer-v77 .footer-social-large a svg polygon:not([fill="none"]) {
  fill: currentColor !important;
  stroke: none !important;
}

.amp-footer-v77 .footer-social-large a svg rect,
.amp-footer-v77 .footer-social-large a svg line,
.amp-footer-v77 .footer-social-large a svg path[fill="none"] {
  fill: none !important;
  stroke: currentColor !important;
}

.amp-footer-v77 .footer-social-large a[href*="youtube"] svg polygon {
  fill: #000 !important;
  stroke: none !important;
}


/* ===========================
   V1.0.7 MAILCHIMP FOOTER FORM
=========================== */
.amp-footer-v77 .amp-mc4wp-footer-form {
  margin-left: auto !important;
  width: min(100%, 470px) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-form,
.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-form-fields,
.amp-footer-v77 .amp-mc4wp-footer-form form {
  width: 100% !important;
  margin: 0 !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-form-fields,
.amp-footer-v77 .amp-mc4wp-footer-form form {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 0 !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form input[type="email"] {
  min-width: 0 !important;
  width: 100% !important;
  height: 54px !important;
  border: 0 !important;
  border-right: 1px solid rgba(255,255,255,.12) !important;
  background: #0f0f0f !important;
  color: #fff !important;
  padding: 0 18px !important;
  font: inherit !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form input[type="email"]::placeholder {
  color: #aaa !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form button,
.amp-footer-v77 .amp-mc4wp-footer-form input[type="submit"] {
  height: 54px !important;
  padding: 0 26px !important;
  border: 0 !important;
  background: #e00000 !important;
  color: #fff !important;
  font-size: 14px !important;
  letter-spacing: .8px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  font-weight: 800 !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form button:hover,
.amp-footer-v77 .amp-mc4wp-footer-form input[type="submit"]:hover {
  background: #aa0000 !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-response,
.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-alert {
  grid-column: 1 / -1 !important;
  color: #fff !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  background: #111 !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
}

@media (max-width: 640px) {
  .amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-form-fields,
  .amp-footer-v77 .amp-mc4wp-footer-form form {
    grid-template-columns: 1fr !important;
  }
  .amp-footer-v77 .amp-mc4wp-footer-form input[type="email"] {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
  }
  .amp-footer-v77 .amp-mc4wp-footer-form button,
  .amp-footer-v77 .amp-mc4wp-footer-form input[type="submit"] {
    width: 100% !important;
  }
}


/* V1.0.7 newsletter response polish, no-jump AJAX state, and auto-hide */
.amp-footer-v77 .amp-mc4wp-footer-form.is-submitting {
  opacity: .88 !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form .amp-newsletter-response,
.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-response p,
.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-alert p {
  margin: 0 !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form .amp-newsletter-response {
  color: #fff !important;
  padding: 11px 16px !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  background: #111 !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
  opacity: 1 !important;
  transition: opacity .25s ease !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form .amp-newsletter-response.is-hiding {
  opacity: 0 !important;
}


/* V1.0.7: hide MC4WP server-rendered footer messages on page load and after submit.
   AJAX creates the clean AMP message only after a fresh submit. */
.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-response,
.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-alert {
  display: none !important;
}


/* V1.0.7: keep MC4WP's default message from making the footer ugly.
   The theme shows its own small AMP message instead. */
.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-response,
.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-alert,
.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-success,
.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-error,
.amp-footer-v77 .amp-mc4wp-footer-form .mc4wp-notice {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form .amp-newsletter-response {
  grid-column: 1 / -1 !important;
  display: block !important;
  margin: 9px 0 0 0 !important;
  padding: 9px 12px 9px 14px !important;
  background: rgba(224,0,0,.10) !important;
  border: 1px solid rgba(224,0,0,.35) !important;
  border-left: 4px solid #e00000 !important;
  color: #f4f4f4 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: .1px !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form .amp-newsletter-response p {
  margin: 0 !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form .amp-newsletter-response.is-hiding {
  opacity: 0 !important;
  transform: translateY(-3px) !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form input[type="submit"].amp-sent,
.amp-footer-v77 .amp-mc4wp-footer-form button.amp-sent {
  background: #111 !important;
  color: #fff !important;
}


/* V1.0.7: cleaner subscribe confirmation and prevent browser autofill yellow box */
.amp-footer-v77 .amp-mc4wp-footer-form input[type="email"]:-webkit-autofill,
.amp-footer-v77 .amp-mc4wp-footer-form input[type="email"]:-webkit-autofill:hover,
.amp-footer-v77 .amp-mc4wp-footer-form input[type="email"]:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  box-shadow: 0 0 0 1000px #0f0f0f inset !important;
  transition: background-color 9999s ease-in-out 0s !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form .amp-newsletter-response {
  margin-top: 8px !important;
  padding: 8px 12px !important;
  background: rgba(255,255,255,.045) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-left: 3px solid #e00000 !important;
  color: #d8d8d8 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.amp-footer-v77 .amp-mc4wp-footer-form input[type="submit"].amp-sent,
.amp-footer-v77 .amp-mc4wp-footer-form button.amp-sent {
  background: #e00000 !important;
  color: #fff !important;
}
