/* ============================================================
   TOUR ANNOUNCEMENT - Premium Light Design System
   Logo palette: ink black, concrete white, tour red and sunset orange.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap");

:root {
  --purple: #e50931;
  --purple-light: #ff6b00;
  --purple-dark: #9f001f;
  --pink: #ff315a;
  --yellow: #ff9f1c;
  --green: #00b86b;
  --blue: #0f172a;
  --orange: #ff6b00;
  --cream: #fff4e6;
  --paper: #fffaf1;
  --bg: #fff8ed;
  --bg-alt: #fff1df;
  --bg-card: #ffffff;
  --text: #080808;
  --text-muted: #68625b;
  --text-light: #9a9287;
  --border: #eadbc8;
  --dark: #070707;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --gradient-primary: linear-gradient(135deg, #e50931 0%, #ff6b00 100%);
  --gradient-warm: linear-gradient(135deg, #ff315a 0%, #ff9f1c 100%);
  --gradient-cool: linear-gradient(
    135deg,
    #111111 0%,
    #e50931 50%,
    #ff6b00 100%
  );
  --gradient-hero:
    radial-gradient(
      circle at 16% 18%,
      rgba(255, 107, 0, 0.28),
      transparent 32%
    ),
    radial-gradient(circle at 84% 16%, rgba(229, 9, 49, 0.26), transparent 34%),
    linear-gradient(135deg, #050505 0%, #15100e 48%, #3a070d 100%);
  --gradient-header: linear-gradient(
    135deg,
    #050505 0%,
    #140708 44%,
    #40020c 100%
  );
  --gradient-accent: linear-gradient(135deg, #e50931 0%, #ff6b00 100%);
  --shadow-sm: 0 2px 10px rgba(25, 9, 0, 0.07);
  --shadow-md: 0 9px 28px rgba(25, 9, 0, 0.1);
  --shadow-lg: 0 18px 55px rgba(25, 9, 0, 0.16);
  --shadow-colored: 0 12px 34px rgba(229, 9, 49, 0.2);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --max-width: 1220px;
  --content-width: 880px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}
a:hover {
  color: var(--purple);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

/* ============================================================
   DECORATIVE BACKGROUND SHAPES
   ============================================================ */

.hero-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-glow-one {
  width: 500px;
  height: 500px;
  background: var(--purple-light);
  top: -200px;
  right: -150px;
}
.hero-glow-two {
  width: 400px;
  height: 400px;
  background: var(--pink);
  bottom: -150px;
  left: -100px;
}

/* ============================================================
   HEADER / GLASS NAV
   ============================================================ */

.glass-nav {
  background: var(--gradient-header);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.glass-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo-link:hover {
  opacity: 0.85;
}

.brand-logo-img {
  height: 34px;
  width: auto;
}

.concert-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.concert-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 2px solid transparent;
}

.concert-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.concert-nav a.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  font-weight: 700;
}

.mini-search {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: auto;
}

.mini-search form {
  display: flex;
  align-items: center;
}

.mini-search input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: #fff;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  width: 160px;
  outline: none;
  transition: all 0.2s;
}

.mini-search input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.mini-search input:focus {
  border-color: var(--purple-light);
  background: rgba(255, 255, 255, 0.15);
}

.mini-search button {
  background: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #fff;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.mini-search button:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
}

.search-suggestions {
  position: relative;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: none;
  max-height: 400px;
  overflow-y: auto;
  margin-top: 4px;
}

.search-suggestions .suggestion-item {
  display: flex;
  align-items: center;
  text-align: start;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  color: var(--text);
}
.search-suggestions .suggestion-item:last-child {
  border-bottom: 0;
}
.search-suggestions .suggestion-item:hover {
  background: var(--bg-alt);
}

.search-suggestions .suggestion-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.search-suggestions .suggestion-item strong {
  display: block;
  font-size: 0.9rem;
}
.search-suggestions .suggestion-item small {
  color: var(--text-muted);
  font-size: 0.76rem;
}
.search-suggestions .suggestion-item i {
  margin-left: auto;
  color: var(--text-light);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb,
.clean-breadcrumb {
  font-size: 0.82rem;
  color: #f8f8ff;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.breadcrumb a,
.clean-breadcrumb a {
  color: #f8f8ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb a:hover,
.clean-breadcrumb a:hover {
  color: var(--purple);
}

/* ============================================================
   HERO BADGES
   ============================================================ */

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ff9f1c;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}
.hero-badge-pill i {
  color: var(--yellow);
}

.hero-badge-center {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}
.hero-badge-center i {
  color: var(--yellow);
}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */

.home-hanging-hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.home-hanging-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.home-hanging-hero h1 {
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.home-hanging-hero h1 span {
  background: linear-gradient(135deg, #fdcb6e, #fd79a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 1.25rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
}

.center-buttons {
  justify-content: center;
}

.hero-rope {
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  margin: 2rem 0;
  position: relative;
}
.hero-rope::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 10px;
  height: 8px;
  background: var(--purple-light);
  border-radius: 50%;
  transform: translateX(-50%);
}

/* Homepage Swiper Slider */
.hanging-swiper {
  overflow: visible;
  padding: 0.5rem 0;
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
}

.hanging-swiper .swiper-slide {
  transition: transform 0.35s ease;
}
.hanging-swiper .swiper-slide:hover {
  transform: translateY(-8px);
}

.hanging-card {
  display: block;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
  position: relative;
}

.hanging-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.hanging-card .card-clip {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
}

.hanging-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hanging-card strong {
  display: block;
  padding: 0.65rem 0.85rem 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text);
}

.hanging-card small {
  display: block;
  padding: 0 0.85rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hanging-card.card-1 {
  border-top: 4px solid var(--purple);
}
.hanging-card.card-2 {
  border-top: 4px solid var(--pink);
}
.hanging-card.card-3 {
  border-top: 4px solid var(--yellow);
}
.hanging-card.card-4 {
  border-top: 4px solid var(--green);
}
.hanging-card.card-5 {
  border-top: 4px solid var(--blue);
}

.hanging-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  color: var(--purple);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.hanging-arrow:hover {
  background: var(--purple);
  color: #fff;
}
.hanging-prev {
  left: -15px;
}
.hanging-next {
  right: -15px;
}

/* Homepage Search */
.hero-v3-search {
  max-width: 560px;
  margin: 2rem auto 0;
}

.hero-v3-search form {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hero-v3-search input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
}

.hero-v3-search select {
  border: none;
  border-left: 1px solid var(--border);
  padding: 0.75rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--bg-card);
  outline: none;
  cursor: pointer;
}

.hero-v3-search button {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity 0.2s;
}
.hero-v3-search button:hover {
  opacity: 0.9;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.neo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.neo-btn-green {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-colored);
}
.neo-btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(108, 92, 231, 0.3);
  color: #fff;
}

.neo-btn-light {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
.neo-btn-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-colored);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(108, 92, 231, 0.3);
  color: #fff;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.section-heading-clean {
  margin-bottom: 2rem;
}

.section-heading-clean > span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.section-heading-clean h2 {
  margin-bottom: 0.4rem;
}

.section-heading-clean p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 640px;
}

.section-heading-clean.compact {
  margin-bottom: 1.5rem;
}
.section-heading-clean.compact h2 {
  font-size: 1.4rem;
}
.section-heading-clean.compact p {
  font-size: 0.9rem;
}

.home-section-title {
  margin-bottom: 2rem;
}

.home-section-title > span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.3rem;
}

.home-section-title h2 {
  margin-bottom: 0.4rem;
}

.home-section-title p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 640px;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

/* ============================================================
   HOMEPAGE EDITORIAL SECTION (Featured Desk)
   ============================================================ */

.home-editorial-two {
  background: var(--bg-alt);
}

.editorial-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.editorial-two-grid > div > h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.compact-news-grid {
  grid-template-columns: 1fr;
}

.home-post-card {
  display: flex;
  gap: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.home-post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.home-post-card img {
  width: 100px;
  min-height: 90px;
  object-fit: cover;
  flex-shrink: 0;
}

.home-post-card > div {
  padding: 0.75rem 0.75rem 0.75rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-post-card > div > span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
}

.home-post-card h3,
.home-post-card h4 {
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.home-post-card h3 a:hover,
.home-post-card h4 a:hover {
  color: var(--purple);
}

.home-post-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ============================================================
   HOMEPAGE CATEGORY PERFORMER SECTIONS
   ============================================================ */

.category-performer-slab {
  position: relative;
}
.category-performer-slab:nth-child(even) {
  background: var(--bg-alt);
}

.performer-tight-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.compact-masonry {
  gap: 0.85rem;
}
.no-gap-masonry {
  gap: 0.85rem;
}

.performer-tight-card {
  display: block;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.performer-tight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.performer-tight-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.performer-tight-card:hover img {
  transform: scale(1.06);
}

.performer-tight-copy {
  padding: 0.7rem 0.85rem;
  background: #fff;
}

.performer-tight-copy span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.15rem;
}

.performer-tight-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ============================================================
   HOMEPAGE RECENT POSTS
   ============================================================ */

.home-newsroom-strip {
  background: var(--bg-alt);
}

/* ============================================================
   PERFORMER LISTING PAGE
   ============================================================ */

.ta-logo-hero,
.performer-index-hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.ta-logo-hero-grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.ta-logo-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.ta-logo-hero p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
}

.ta-logo-showcase {
  text-align: center;
}

.ta-logo-showcase img {
  max-width: 160px;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.logo-theme-strip {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.logo-theme-strip span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.logo-theme-strip span:nth-child(1) {
  background: var(--purple-light);
}
.logo-theme-strip span:nth-child(2) {
  background: var(--pink);
}
.logo-theme-strip span:nth-child(3) {
  background: var(--yellow);
}

/* Feature band */
.ta-feature-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.ta-feature-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border: 2px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--bg-card);
}
.ta-feature-pill i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.performer-filter-form {
  display: flex;
}

.filter-search-big {
  display: flex;
  flex: 1;
  position: relative;
}

.filter-search-big input {
  flex: 1;
  padding: 0.6rem 0.85rem;
  border: 2px solid var(--border);
  border-right: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  min-width: 0;
  background: var(--bg-card);
}
.filter-search-big input:focus {
  border-color: var(--purple);
}

.filter-search-big select {
  border: 2px solid var(--border);
  border-left: 0;
  padding: 0.6rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--bg-card);
  outline: none;
  cursor: pointer;
}

.filter-search-big button {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: opacity 0.2s;
}
.filter-search-big button:hover {
  opacity: 0.9;
}

.filter-search-big .search-suggestions {
  top: 100%;
}

/* Card grid */
.card-grid,
.ta-artist-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.card-grid a,
.ta-artist-directory-grid a {
  display: block;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.card-grid a:hover,
.ta-artist-directory-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-grid img,
.ta-artist-directory-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-grid a:hover img,
.ta-artist-directory-grid a:hover img {
  transform: scale(1.06);
}

/* Pagination */
.lux-pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.lux-pagination a,
.lux-pagination button,
.lux-pagination .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 0.45rem 0.8rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-card);
}

.lux-pagination button {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

.lux-pagination button:hover {
  opacity: 0.9;
  color: #fff;
}

.lux-pagination a:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.lux-pagination .current {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  cursor: default;
}

/* Genre grid */
.internal-link-grid,
.ta-link-grid-strong {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.internal-link-grid form button,
.ta-link-grid-strong form button {
  width: 100%;
  text-align: left;
  padding: 0.8rem 1rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.internal-link-grid form button:hover,
.ta-link-grid-strong form button:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

.internal-link-grid form button i,
.ta-link-grid-strong form button i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 18px;
}
.internal-link-grid form button:hover i,
.ta-link-grid-strong form button:hover i {
  -webkit-text-fill-color: #fff;
}

/* FAQs */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq-list details {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.15s;
}

.faq-list details[open] {
  border-color: var(--purple);
}

.faq-list summary {
  padding: 0.7rem 1rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.15s;
}

.faq-list summary::before {
  content: "Q:";
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.faq-list summary:hover {
  background: var(--bg-alt);
}

.faq-list details[open] summary {
  border-bottom: 2px solid var(--border);
}

.faq-list details p {
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ============================================================
   PERFORMER DETAIL PAGE
   ============================================================ */

.performer-newsprint-hero,
.performer-editorial-hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.performer-newsprint-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-newsprint-copy {
}

.hero-newsprint-copy h1 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 0.65rem;
}

.hero-newsprint-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  max-width: 600px;
}

.performer-frontpage-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.performer-frontpage-stats span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.7rem;
}

.performer-frontpage-stats span b {
  color: #fff;
  font-size: 1.05rem;
}

.performer-frontpage-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.performer-frontpage-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.performer-frontpage-image span {
  display: block;
  text-align: center;
  padding: 0.45rem;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.82rem;
  background: var(--gradient-primary);
  color: #fff;
}

/* Sticky section nav */
.performer-section-bar-wrap {
  background: var(--bg-card);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 62px;
  z-index: 99;
}

.performer-section-bar {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.performer-section-bar a {
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-right: 1px solid var(--border);
  transition: all 0.15s;
  color: var(--text-muted);
}

.performer-section-bar a:last-child {
  border-right: 0;
}

.performer-section-bar a:hover {
  color: var(--purple);
  background: var(--bg-alt);
}

/* Main layout */
.performer-newsprint-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 2rem 0 4rem;
}

.performer-news-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Section cards */
.newsprint-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.newsprint-card.section {
  padding: 1.5rem;
}

.newsprint-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.newsprint-card > .section-heading-clean p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Ticket list */
.premium-ticket-list,
.performer-ticket-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.premium-ticket-list .load-item,
.performer-ticket-list .load-item {
  display: block;
}

/* Performer article grid */
.performer-article-grid,
.performer-article-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.performer-article-grid article,
.performer-article-grid-v2 article {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid var(--border);
}
.performer-article-grid article:hover,
.performer-article-grid-v2 article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--purple-light);
}

.performer-article-grid img,
.performer-article-grid-v2 img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.performer-article-grid article > span,
.performer-article-grid-v2 article > span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.6rem 0.75rem 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.performer-article-grid h3,
.performer-article-grid-v2 h3 {
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
}
.performer-article-grid h3 a:hover,
.performer-article-grid-v2 h3 a:hover {
  color: var(--purple);
}

.performer-article-grid p,
.performer-article-grid-v2 p {
  padding: 0 0.75rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Sidebar */
.performer-news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-news-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-news-card h2 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.sidebar-news-card h2 i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Social icons */
.social-icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.social-icon-grid a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
}

.social-icon-grid a:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* Spotify card */
.spotify-card-wrap {
  background: linear-gradient(135deg, #1db954, #169c46);
  border: none;
}
.spotify-card-wrap h2 {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.spotify-card-wrap h2 i {
  -webkit-text-fill-color: #fff;
  background: none;
}
.spotify-card-wrap iframe {
  border-radius: var(--radius-sm) !important;
}

.spotify-fallback-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
  transition: all 0.15s;
}
.spotify-fallback-card:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}
.spotify-fallback-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* Mini post list */
.mini-post-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mini-post-list a {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.mini-post-list a img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.mini-post-list a b {
  display: block;
  font-size: 0.84rem;
  font-family: var(--font-display);
  line-height: 1.3;
  margin-bottom: 0.1rem;
}

.mini-post-list a small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.mini-post-list a:hover b {
  color: var(--purple);
}

/* Related artists */
.related-artist-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.related-artist-list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.related-artist-list a:hover {
  border-color: var(--purple);
  background: var(--bg-alt);
}

.related-artist-list a img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.related-artist-list a span {
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-display);
}

/* Performer about sidebar */
.linked-about {
  font-size: 0.9rem;
  line-height: 1.7;
}
.linked-about p {
  margin-bottom: 0.6rem;
}
.linked-about a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   NEWS / BLOG LISTING PAGE
   ============================================================ */

.blog-hero-creative,
.newspaper-listing-hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.blog-hero-creative h1,
.newspaper-listing-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.blog-hero-creative p,
.newspaper-listing-hero p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
}

.blog-poster-grid,
.newspaper-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.blog-poster-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-poster-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-poster-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-poster-card > div {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-poster-card > div > span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.35rem;
}

.blog-poster-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.blog-poster-card h2 a:hover {
  color: var(--purple);
}

.blog-poster-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
  flex: 1;
}

.text-arrow {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}

.text-arrow:hover {
  gap: 0.5rem;
  color: var(--purple-dark);
}

/* ============================================================
   ARTICLE DETAIL PAGE
   ============================================================ */

.newspaper-article-detail {
  padding: 2rem 0 4rem;
}

.article-newsprint-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
}

.article-main-column {
  max-width: 100%;
}

.article-main-column h1 {
  margin-bottom: 0.75rem;
}

.article-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.article-hero-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.newspaper-body {
  font-size: 1.03rem;
  line-height: 1.8;
}

.newspaper-body h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
  padding-top: 0.5rem;
}

.newspaper-body h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.newspaper-body p {
  margin-bottom: 1rem;
}

.newspaper-body a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.newspaper-body a:hover {
  color: var(--purple-dark);
}

.newspaper-body ul,
.newspaper-body ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.newspaper-body li {
  margin-bottom: 0.35rem;
}

.newspaper-body blockquote {
  border-left: 4px solid var(--purple);
  padding: 0.85rem 1.25rem;
  margin: 1.25rem 0;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-style: italic;
}

.newspaper-body img {
  border-radius: var(--radius);
  margin: 1.25rem 0;
  box-shadow: var(--shadow-sm);
  justify-self: center;
}

/* TOC */
.article-toc,
.article-toc-mobile {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.article-toc strong,
.article-toc-mobile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.article-toc a,
.article-toc-mobile a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.article-toc a:hover,
.article-toc-mobile a:hover {
  color: var(--purple);
}

.article-toc a.toc-l3,
.article-toc-mobile a.toc-l3 {
  padding-left: 1rem;
}

.performer-profile-mobile-toc {
  margin-bottom: 1.25rem;
}

/* FAQ block in article */
.article-faq-block {
  margin-top: 2.5rem;
}

.article-faq-block h2 {
  margin-bottom: 1rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq-accordion details {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-accordion details[open] {
  border-color: var(--purple);
}

.faq-accordion summary {
  padding: 0.7rem 1rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.15s;
}

.faq-accordion summary::before {
  content: "Q:";
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.faq-accordion summary:hover {
  background: var(--bg-alt);
}
.faq-accordion details[open] summary {
  border-bottom: 2px solid var(--border);
}

.faq-accordion details p {
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Article sidebar column */
.article-side-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */

.listing-hero-lux {
  background: var(--gradient-hero);
  color: #fff;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.listing-hero-lux h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.listing-hero-lux .hero-v3-search {
  margin-top: 1.5rem;
}

.performer-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
}

.performer-mini-grid a {
  display: block;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}

.performer-mini-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.performer-mini-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.performer-mini-grid strong {
  display: block;
  padding: 0.5rem 0.5rem 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
}

.performer-mini-grid small {
  display: block;
  padding: 0 0.5rem 0.6rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ============================================================
   404 PAGE
   ============================================================ */

.page-404 {
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.page-404 h1 {
  font-size: 6rem;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.page-404 p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* ============================================================
   TICKET ROW
   ============================================================ */

.ticket-row {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.ticket-row:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-colored);
}

.ticket-date {
  text-align: center;
  flex-shrink: 0;
  min-width: 50px;
}

.ticket-date .month {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--purple);
  letter-spacing: 0.04em;
}

.ticket-date .day {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.ticket-copy {
  flex: 1;
  min-width: 0;
}

.ticket-copy h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ticket-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ticket-meta i {
  color: var(--purple);
  font-size: 0.7rem;
}

.ticket-actions {
  flex-shrink: 0;
  text-align: right;
}

.ticket-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.ticket-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 0.3rem 0.65rem;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.ticket-cta:hover {
  opacity: 0.9;
  color: #fff;
}

/* ============================================================
   NEWSLETTER CTA
   ============================================================ */

.concert-alert-cta,
.ink-alert-cta {
  background: var(--gradient-primary);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.alert-card-max {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.alert-card-max h2 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.alert-card-max p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  position: relative;
}

.newsletter-form input[type="email"] {
  padding: 0.6rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-right: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  min-width: 210px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  background: #fff;
  border: 2px solid #fff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #f8f8ff;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.newsletter-form button:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
  color: #fff;
}

.newsletter-message {
  position: absolute;
  bottom: -1.3rem;
  left: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.concert-footer,
.newspaper-footer {
  background: #1a1a2e;
  color: #b0afc0;
  padding: 3rem 0 1.5rem;
}

.footer-max-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.concert-footer h3,
.newspaper-footer h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.concert-footer h3 span,
.newspaper-footer h3 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.concert-footer h4,
.newspaper-footer h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.concert-footer p,
.newspaper-footer p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.7;
}

.concert-footer a,
.newspaper-footer a {
  display: block;
  color: #b0afc0;
  font-size: 0.88rem;
  padding: 0.2rem 0;
  transition: color 0.15s;
}

.concert-footer a:hover,
.newspaper-footer a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  opacity: 0.5;
  margin-bottom: 0;
}

/* ============================================================
   SETLIST ACCORDION
   ============================================================ */

.setlist-accordion details {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.setlist-accordion details[open] {
  border-color: var(--purple);
}

.setlist-accordion summary {
  padding: 0.7rem 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
  transition: background 0.15s;
}

.setlist-accordion summary:hover {
  background: var(--bg-alt);
}

.setlist-accordion summary i {
  color: var(--purple);
}

.setlist-accordion .setlist-body {
  padding: 0.75rem 1rem;
  border-top: 2px solid var(--border);
}

.setlist-accordion .setlist-body h4 {
  font-size: 0.88rem;
  margin: 0.5rem 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.setlist-accordion .setlist-body p {
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
  padding-left: 0.5rem;
}

.setlist-accordion .setlist-body p i {
  color: var(--purple);
  margin-right: 0.35rem;
}

/* ============================================================
   PERFORMER PROFILE STORY
   ============================================================ */

.performer-profile-story {
  font-size: 1rem;
  line-height: 1.75;
}

.performer-profile-story p {
  margin-bottom: 0.75rem;
}

/* ============================================================
   CARD COMPONENT (used in performer-card.php)
   ============================================================ */

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-image img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.6rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.03em;
}
.card-badge i {
  color: var(--yellow);
}

.card-body {
  padding: 0.75rem 0.85rem 0.35rem;
}
.card-title {
  font-size: 0.92rem;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
}
.card-title a:hover {
  color: var(--purple);
}

.card-footer {
  padding: 0.25rem 0.85rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple);
}
.card-link:hover {
  gap: 0.45rem;
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */

.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
}
.empty-state h3 {
  margin-bottom: 0.5rem;
}
.empty-state p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.center-link {
  text-align: center;
  margin-top: 1rem;
}
.center-button {
  text-align: center;
}

.is-hidden {
  display: none !important;
}

.animate-in {
}

.tags {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  padding: 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--gradient-primary);
  color: #fff;
}

.separator {
  height: 2px;
  background: var(--border);
  margin: 2rem 0;
}

.count-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .editorial-two-grid {
    grid-template-columns: 1fr;
  }
  .performer-newsprint-layout,
  .article-newsprint-grid,
  .performer-newsprint-grid,
  .ta-logo-hero-grid {
    grid-template-columns: 1fr;
  }
  .performer-frontpage-image {
    max-width: 240px;
  }
  .footer-max-grid {
    grid-template-columns: 1fr 1fr;
  }
  .performer-section-bar {
    overflow-x: auto;
  }
  .blog-poster-grid,
  .newspaper-post-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  .ta-logo-showcase {
    display: none;
  }
}

@media (max-width: 768px) {
  .concert-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a2e;
    padding: 0.75rem;
    gap: 0.15rem;
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .concert-nav.is-open {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mini-search {
    margin-left: 0;
  }
  .mini-search input {
    width: 120px;
  }
  .glass-nav-inner {
    flex-wrap: wrap;
  }
  .glass-nav-inner .mini-search {
    order: 3;
    width: 100%;
  }
  .glass-nav-inner .mini-search form {
    width: 100%;
  }
  .glass-nav-inner .mini-search input {
    flex: 1;
    width: auto;
  }

  .performer-tight-masonry {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .card-grid,
  .ta-artist-directory-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .home-post-card {
    flex-direction: column;
  }
  .home-post-card img {
    width: 100%;
    height: 160px;
  }
  .home-post-card > div {
    padding: 0.65rem 0.75rem;
  }

  .alert-card-max {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    width: 100%;
  }
  .newsletter-form input {
    flex: 1;
  }

  .footer-max-grid {
    grid-template-columns: 1fr;
  }

  .hanging-arrow {
    display: none;
  }
  .hero-v3-search select {
    width: 100%;
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .hero-v3-search form {
    flex-wrap: wrap;
  }

  .performer-section-bar a {
    font-size: 0.78rem;
    padding: 0.5rem 0.7rem;
  }

  .performer-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .performer-tight-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .card-grid,
  .ta-artist-directory-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .performer-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 2.5rem 0;
  }
}

/* ============================================================
   TOUR ANNOUNCEMENT LOGO-TONE POLISH OVERRIDES
   Red / orange / black premium theme, old homepage slider, smoother cards.
   ============================================================ */
body.ta-concert-body {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 107, 0, 0.1), transparent 26%),
    radial-gradient(circle at 90% 7%, rgba(229, 9, 49, 0.08), transparent 28%),
    linear-gradient(180deg, #fff8ed 0%, #fffdf8 50%, #fff4e6 100%);
}
body.ta-concert-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(8, 8, 8, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.18)
  );
}
a:hover {
  color: var(--purple);
}
.glass-nav {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.glass-nav-inner {
  padding: 0.72rem 1.5rem;
}
.brand-logo-img {
  height: 84px;
  max-width: 165px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 8px 18px rgba(229, 9, 49, 0.24));
}
.concert-nav a.active,
.mini-search button,
.btn-primary,
.neo-btn-green,
.tag,
.section-heading-clean > span,
.home-section-title > span,
.section-kicker,
.ta-feature-pill i,
.filter-search-big button,
.hero-v3-search button {
  background: var(--gradient-primary);
}
.concert-nav a.active {
  box-shadow: 0 9px 24px rgba(229, 9, 49, 0.22);
}
.mini-search input:focus,
.filter-search-big input:focus,
.faq-list details[open],
.faq-accordion details[open],
.setlist-accordion details[open] {
  border-color: rgba(229, 9, 49, 0.55);
}
.home-hanging-hero.premium-tour-hero {
  background: var(--gradient-hero);
  color: #fff;
  min-height: auto;
  padding: 4.4rem 0 4.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.home-hanging-hero.premium-tour-hero::before,
.home-hanging-hero.premium-tour-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  opacity: 0.35;
}
.home-hanging-hero.premium-tour-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
}
.home-hanging-hero.premium-tour-hero::after {
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 52%,
    rgba(255, 107, 0, 0.14) 52.2%,
    rgba(229, 9, 49, 0.22) 74%,
    transparent 74.2%
  );
}
.premium-tour-hero .home-hanging-inner {
  position: relative;
  z-index: 3;
}
.hero-badge-center {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge-center i {
  color: var(--orange);
}
.premium-tour-hero h1 {
  max-width: 100%;
  margin: 1.1rem auto 0.8rem;
  font-size: clamp(2.55rem, 5.1vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-transform: none;
  text-wrap: balance;
}
.premium-tour-hero h1 span {
  background: linear-gradient(
    90deg,
    #fff 0%,
    #ff9f1c 30%,
    #e50931 70%,
    #ff6b00 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.premium-tour-hero .hero-lead {
  max-width: 770px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.hero-buttons.center-buttons {
  margin-top: 1.25rem;
}
.neo-btn,
.btn-primary {
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}
.neo-btn-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}
.neo-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.22rem;
  border-radius: 999px;
  font-weight: 900;
  background: #fff;
  color: #111;
  border: 2px solid #fff;
}
.neo-btn-dark:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.2rem auto 0.5rem;
}
.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.78rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  font-size: 0.88rem;
}
.hero-proof-row i {
  color: #ff9f1c;
}
.hero-rope {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  margin: 2rem auto 1.4rem;
  max-width: 1060px;
}
.hero-rope::after {
  background: var(--gradient-primary);
  box-shadow: 0 0 0 7px rgba(229, 9, 49, 0.18);
}
.hero-glow-one {
  background: #ff6b00;
  opacity: 0.25;
}
.hero-glow-two {
  background: #e50931;
  opacity: 0.24;
}
.ta-shape {
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.22));
}
.ta-shape-plane {
  right: 8%;
  top: 19%;
  font-size: clamp(4rem, 9vw, 9rem);
  color: rgba(255, 107, 0, 0.22);
  transform: rotate(-18deg);
}
.ta-shape-record {
  left: 7%;
  bottom: 14%;
  font-size: clamp(4rem, 9vw, 8rem);
  color: rgba(255, 255, 255, 0.07);
}
.ta-shape-ticket {
  left: 15%;
  top: 16%;
  font-size: clamp(3rem, 7vw, 6rem);
  color: rgba(229, 9, 49, 0.22);
  transform: rotate(16deg);
}
.old-home-slider.hanging-swiper {
  max-width: 1140px;
  padding: 1.15rem 0 1.25rem;
}
.hanging-card {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.55);
  transform-origin: 50% 0;
}
.hanging-card:hover {
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.3);
}
.hanging-card img {
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center top;
  background: #111;
}
.hanging-card strong {
  font-size: 0.96rem;
  padding: 0.8rem 0.92rem 0.1rem;
}
.hanging-card small {
  color: #756b62;
  padding-bottom: 0.9rem;
}
.hanging-card .card-clip {
  background: var(--gradient-primary);
  box-shadow: 0 10px 24px rgba(229, 9, 49, 0.28);
}
.hanging-card.card-1 {
  border-top: 4px solid #e50931;
}
.hanging-card.card-2 {
  border-top: 4px solid #ff6b00;
}
.hanging-card.card-3 {
  border-top: 4px solid #111;
}
.hanging-card.card-4 {
  border-top: 4px solid #ff9f1c;
}
.hanging-card.card-5 {
  border-top: 4px solid #c90024;
}
.hanging-arrow {
  background: #fff;
  color: #111;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}
.hanging-arrow:hover {
  background: var(--gradient-primary);
  color: #fff;
}
.hero-v3-search form {
  border-radius: 999px;
  background: #fff;
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}
.hero-v3-search input,
.hero-v3-search select {
  background: transparent;
}
.hero-v3-search button {
  border-radius: 999px;
}
.hero-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 1rem auto 0;
  max-width: 960px;
}
.hero-logo-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}
.hero-logo-row a:hover {
  color: #111;
  background: #fff;
  transform: translateY(-2px);
}
.hero-logo-row i {
  color: #ff9f1c;
}
.home-editorial-two,
.home-newsroom-strip,
.category-performer-slab:nth-child(even) {
  background: transparent;
}
.ta-lift-section {
  position: relative;
}
.ta-lift-section::before {
  content: "";
  position: absolute;
  inset: 1.25rem auto auto 4%;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  transform: rotate(12deg);
  background: linear-gradient(
    135deg,
    rgba(229, 9, 49, 0.08),
    rgba(255, 107, 0, 0.12)
  );
  pointer-events: none;
}
.home-section-title {
  position: relative;
  z-index: 2;
}
.home-section-title > span,
.section-heading-clean > span,
.section-kicker {
  color: #e50931;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.home-section-title h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: #111;
}
.home-section-title p {
  max-width: 760px;
  color: #625b53;
}
.editorial-two-grid {
  gap: 1.2rem;
}
.editorial-column {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(234, 219, 200, 0.9);
  border-radius: 30px;
  padding: 1.1rem;
  box-shadow: 0 24px 70px rgba(35, 12, 0, 0.08);
  backdrop-filter: blur(10px);
}
.editorial-two-grid > div > h3 {
  color: #111;
}
.home-post-card {
  border: 1px solid rgba(234, 219, 200, 0.92);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(29, 11, 0, 0.07);
}
.home-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(29, 11, 0, 0.13);
}
.home-post-card img {
  width: 120px;
  min-height: 112px;
  object-position: center top;
}
.home-post-card > div > span {
  color: #e50931;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.home-post-card h3 a:hover,
.home-post-card h4 a:hover,
.card-title a:hover,
.mini-post-list a:hover b {
  color: #e50931;
}
.home-radar-section {
  padding-top: 4.6rem;
  background: linear-gradient(
    180deg,
    rgba(255, 245, 231, 0.86),
    rgba(255, 255, 255, 0.46)
  );
}
.category-head-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: end;
  gap: 1.25rem;
  margin-bottom: 1.2rem;
}
.category-stat-card {
  border-radius: 26px;
  padding: 1rem;
  background: #111;
  color: #fff;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
}
.category-stat-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -30px;
  top: -35px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.85;
}
.category-stat-card strong,
.category-stat-card span,
.category-stat-card small {
  position: relative;
  z-index: 2;
  display: block;
}
.category-stat-card strong {
  font-size: 2.35rem;
  line-height: 1;
  color: #ff9f1c;
}
.category-stat-card span {
  font-weight: 900;
  margin-top: 0.25rem;
}
.category-stat-card small {
  color: rgba(255, 255, 255, 0.68);
}
.category-performer-slab {
  overflow: hidden;
}
.category-bg-icon {
  position: absolute;
  right: 4%;
  top: 24px;
  font-size: clamp(5rem, 13vw, 13rem);
  color: rgba(229, 9, 49, 0.055);
  pointer-events: none;
}
.performer-tight-masonry,
.category-card-wall,
.featured-performer-wall {
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 1rem;
}
.performer-tight-card {
  border-radius: 24px;
  border: 1px solid rgba(234, 219, 200, 0.92);
  box-shadow: 0 14px 36px rgba(35, 12, 0, 0.075);
  background: #fff;
  overflow: hidden;
}
.performer-tight-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.performer-tight-card:hover::after {
  transform: scaleX(1);
}
.performer-tight-card:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 26px 60px rgba(35, 12, 0, 0.16);
}
.performer-tight-card img {
  aspect-ratio: 1 / 1.05;
  object-position: center top;
  background: #111;
}
.performer-tight-copy {
  min-height: 92px;
  padding: 0.78rem 0.86rem 0.9rem;
  background: linear-gradient(180deg, #fff 0%, #fff8ed 100%);
}
.performer-tight-copy span {
  color: #e50931;
  font-weight: 900;
  font-size: 0.66rem;
}
.performer-tight-copy strong {
  font-size: 0.96rem;
  color: #111;
  letter-spacing: -0.025em;
}
.logo-theme-strip span:nth-child(1) {
  background: #e50931;
}
.logo-theme-strip span:nth-child(2) {
  background: #ff6b00;
}
.logo-theme-strip span:nth-child(3) {
  background: #111;
}
.concert-alert-cta.ink-alert-cta {
  background: linear-gradient(135deg, #050505 0%, #170708 52%, #3b030b 100%);
}
.alert-card-max {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.28);
}
.newsletter-form button {
  background: var(--gradient-primary);
}
.newsletter-form button:hover {
  background: linear-gradient(135deg, #ff6b00, #e50931);
}
.concert-footer,
.newspaper-footer {
  background: #080808;
}
.concert-footer a:hover,
.newspaper-footer a:hover {
  color: #ff6b00;
}
@media (max-width: 900px) {
  .category-head-row {
    grid-template-columns: 1fr;
  }
  .category-stat-card {
    max-width: 260px;
  }
  .performer-tight-masonry,
  .category-card-wall,
  .featured-performer-wall {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}
@media (max-width: 768px) {
  .concert-nav {
    background: rgba(8, 8, 8, 0.98);
  }
  .hero-v3-search form {
    border-radius: 22px;
  }
  .hero-v3-search button {
    width: 100%;
  }
  .home-post-card img {
    width: 100%;
  }
  .premium-tour-hero h1 {
    font-size: clamp(2.35rem, 14vw, 4.2rem);
  }
}
@media (max-width: 480px) {
  .performer-tight-masonry,
  .category-card-wall,
  .featured-performer-wall {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .hero-proof-row span {
    width: 100%;
    justify-content: center;
  }
  .hero-logo-row a {
    flex: 1 1 calc(50% - 0.65rem);
    justify-content: center;
  }
}

/* ============================================================
   LIVE 12-PAGE RESTORE PATCH
   Keeps the uploaded old public design while supporting the
   simplified 12-page database/admin build.
   ============================================================ */
:root {
  --ta-red: #e50931;
  --ta-orange: #ff6b00;
  --ta-black: #050505;
  --ta-paper: #fffaf1;
  --ta-line: #eadbc8;
}
.glass-nav .concert-nav a[href*="news"],
.glass-nav .concert-nav a[href*="blog"] {
  display: none !important;
}
.ta-page-main {
  min-height: 60vh;
}
.narrow-container {
  max-width: 920px;
  margin-inline: auto;
}
.ta-legacy-article-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.05rem;
}
.ta-legacy-article-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(234, 219, 200, 0.92);
  box-shadow: 0 18px 44px rgba(35, 12, 0, 0.08);
  overflow: hidden;
  transition: 0.25s ease;
}
.ta-legacy-article-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 66px rgba(229, 9, 49, 0.16);
}
.ta-legacy-article-card img {
  width: 100%;
  aspect-ratio: 1.35/1;
  object-fit: cover;
  object-position: center top;
  background: #111;
}
.ta-legacy-article-card .article-card-body {
  padding: 1rem;
}
.ta-legacy-article-card span {
  display: block;
  color: var(--ta-red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.ta-legacy-article-card h3 {
  font-size: 1.05rem;
  line-height: 1.14;
  margin: 0.2rem 0 0.5rem;
}
.ta-legacy-article-card p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #6c6259;
  margin-bottom: 0.7rem;
}
.ta-legacy-article-card .read-more {
  font-weight: 900;
  color: var(--ta-orange);
  font-size: 0.84rem;
}
.performer-index-wall {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.performer-index-faqs {
  padding-top: 1rem;
}
.toc-card ol {
  margin: 0;
  padding-left: 1.25rem;
}
.toc-card li {
  margin: 0.55rem 0;
  font-weight: 800;
  line-height: 1.25;
}
.toc-card li.toc-l3 {
  margin-left: 0.9rem;
  font-size: 0.9rem;
  color: #665f59;
}
.toc-card a:hover {
  color: var(--ta-red);
}
.performer-newsprint-layout-v2 {
  align-items: start;
}
.performer-news-main {
  min-width: 0;
}
.fullwidth-setlist-section,
.fullwidth-faq-section {
  padding-top: 1.5rem;
  background: rgba(255, 250, 241, 0.72);
}
.fullwidth-setlist-section .container,
.fullwidth-faq-section .container {
  max-width: 1120px;
}
.performer-ticket-list .load-item.is-hidden {
  display: none;
}
.ticket-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: 18px;
  background: #fffdf8;
  border: 1px solid rgba(234, 219, 200, 0.92);
  box-shadow: 0 10px 26px rgba(35, 12, 0, 0.055);
}
.ticket-date {
  border: 2px solid var(--ta-red);
  border-radius: 16px;
  text-align: center;
  background: #fff;
  padding: 0.42rem 0.35rem;
}
.ticket-date span {
  display: block;
  color: var(--ta-red);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.ticket-date strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.08;
  color: #111;
}
.ticket-info strong {
  display: block;
  font-weight: 900;
  color: #111;
  margin-bottom: 0.25rem;
}
.ticket-info small {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: #6a625c;
  font-size: 0.82rem;
}
.ticket-action span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(135deg, var(--ta-red), var(--ta-orange));
  color: #fff;
  font-weight: 900;
  font-size: 0.78rem;
  white-space: nowrap;
}
.content-image-block {
  margin: 2rem 0;
  border-radius: 26px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 107, 0, 0.55);
  box-shadow: 0 20px 48px rgba(35, 12, 0, 0.12);
}
.content-image-block img {
  width: 100%;
  height: auto;
}
.content-image-block figcaption {
  padding: 0.85rem 1rem;
  color: #ffd7c2;
  font-size: 0.82rem;
}
.youtube-frame {
  position: relative;
  margin: 2rem 0;
  border-radius: 24px;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255, 107, 0, 0.6);
  min-height: 280px;
  display: grid;
  place-items: center;
}
.youtube-frame iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}
.youtube-search a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  padding: 2rem;
  text-align: center;
}
.youtube-search i {
  font-size: 3.2rem;
  color: #ff0000;
}
.social-icon-grid a span {
  display: none;
}
.spotify-card-wrap iframe {
  background: #111;
  min-height: 360px;
}
.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5rem 1.5rem;
}
.not-found h1 {
  font-size: clamp(3rem, 10vw, 8rem);
  font-family: var(--font-display);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--ta-red), var(--ta-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.not-found p {
  max-width: 680px;
  margin-inline: auto;
  color: #6a625c;
}
.not-found .neo-btn {
  margin-top: 1rem;
}

/* Admin panel restore: clean, stable and production friendly. */
.admin-body,
.login-body {
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(20, 20, 20, 0.035) 1px, transparent 1px), #fff8ed;
  background-size:
    48px 48px,
    48px 48px,
    100% 100%;
  color: #111;
  font-family: Inter, system-ui, sans-serif;
}
.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.login-card {
  width: min(440px, 94vw);
  background: #fff;
  border: 1px solid var(--ta-line);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 26px 70px rgba(35, 12, 0, 0.16);
}
.login-card img {
  width: 130px;
  margin: 0 auto 1rem;
  background: #050505;
  border-radius: 18px;
  padding: 0.4rem;
}
.login-card h1 {
  text-align: center;
  font-family: var(--font-display);
}
.login-card label,
.editor-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 900;
  margin: 0.85rem 0;
  color: #111;
}
.login-card input,
.editor-form input,
.editor-form textarea,
.editor-form select {
  width: 100%;
  border: 1px solid var(--ta-line);
  border-radius: 14px;
  padding: 0.82rem 0.95rem;
  font: inherit;
  background: #fffdf8;
  color: #111;
}
.login-card button,
.editor-form button {
  font: inherit;
}
.admin-shell {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  min-height: 100vh;
}
.admin-sidebar {
  background: linear-gradient(145deg, #050505 0%, #170708 55%, #3b030b 100%);
  color: #fff;
  padding: 1.35rem;
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-logo img {
  width: 112px;
  background: #050505;
  border-radius: 18px;
  margin: 0 0 1.25rem;
}
.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.86rem 1rem;
  border-radius: 16px;
  margin-bottom: 0.4rem;
  font-weight: 900;
}
.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  background: linear-gradient(135deg, var(--ta-red), var(--ta-orange));
  color: #fff;
  box-shadow: 0 14px 32px rgba(255, 91, 0, 0.25);
}
.admin-main {
  padding: 2rem;
  min-width: 0;
}
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.admin-top span {
  display: inline-flex;
  color: var(--ta-red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.admin-top h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-family: var(--font-display);
  margin: 0.2rem 0 0;
  letter-spacing: -0.04em;
}
.admin-card {
  background: #fff;
  border: 1px solid var(--ta-line);
  border-radius: 28px;
  box-shadow: 0 24px 68px rgba(35, 12, 0, 0.13);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.admin-list-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.admin-list-head h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0.1rem 0 0.35rem;
}
.admin-list-head p {
  color: #6a625c;
  max-width: 760px;
}
.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.55rem;
  margin-top: 1.2rem;
}
.admin-table th {
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #746a62;
  padding: 0.7rem 0.8rem;
}
.admin-table td {
  background: #fffaf1;
  border-top: 1px solid var(--ta-line);
  border-bottom: 1px solid var(--ta-line);
  padding: 0.9rem 0.8rem;
  vertical-align: middle;
}
.admin-table td:first-child {
  border-left: 1px solid var(--ta-line);
  border-radius: 16px 0 0 16px;
}
.admin-table td:last-child {
  border-right: 1px solid var(--ta-line);
  border-radius: 0 16px 16px 0;
}
.admin-table small {
  display: block;
  color: #71675f;
  margin-top: 0.2rem;
}
.status {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.74rem;
  background: #eee;
}
.status.published {
  background: #e8fff1;
  color: #087338;
}
.status.draft {
  background: #fff0ef;
  color: #bb1328;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid #111;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  font-weight: 900;
  cursor: pointer;
  background: #fff;
  color: #111;
  box-shadow: none;
  text-decoration: none;
}
.btn.primary {
  background: linear-gradient(135deg, var(--ta-red), var(--ta-orange));
  color: #fff;
  border: 0;
  box-shadow: 0 14px 32px rgba(229, 9, 49, 0.18);
}
.btn.ghost {
  background: #fff;
  color: #111;
}
.btn.mini {
  font-size: 0.78rem;
  padding: 0.5rem 0.7rem;
  margin: 0.12rem;
}
.btn.danger {
  border-color: var(--ta-red);
  color: var(--ta-red);
  background: #fff;
}
.admin-alert {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  font-weight: 900;
}
.admin-alert.success {
  background: #e8fff1;
  color: #087338;
}
.admin-alert.error {
  background: #fff0ef;
  color: #bb1328;
}
.editor-tabs {
  position: sticky;
  top: 0;
  z-index: 9;
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid var(--ta-line);
  border-radius: 22px;
  padding: 0.65rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.editor-tabs a {
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ta-line);
  font-weight: 900;
  padding: 0.72rem 0.9rem;
}
.edit-box {
  border-top: 1px solid var(--ta-line);
  padding: 1.2rem 0;
  scroll-margin-top: 100px;
}
.edit-box h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0.2rem 0 1rem;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.section-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}
.section-checks label {
  background: #fffaf1;
  border: 1px solid var(--ta-line);
  border-radius: 16px;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.section-checks input {
  width: auto !important;
}
.code-textarea {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}
.faq-admin-pair {
  background: #fffaf1;
  border: 1px solid var(--ta-line);
  border-radius: 18px;
  padding: 0.9rem;
  margin: 0.85rem 0;
}
.sticky-save {
  position: sticky;
  bottom: 1rem;
  z-index: 8;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid var(--ta-line);
  border-radius: 22px;
  padding: 0.85rem;
  box-shadow: 0 18px 60px rgba(35, 12, 0, 0.12);
}
.hint {
  background: #fff7eb;
  border-left: 4px solid var(--ta-orange);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: #665f59;
}
.image-select {
  max-height: 48px;
}
@media (max-width: 1100px) {
  .ta-legacy-article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    height: auto;
  }
  .form-grid-4,
  .section-checks {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .ta-legacy-article-grid {
    grid-template-columns: 1fr;
  }
  .ticket-row {
    grid-template-columns: 64px 1fr;
  }
  .ticket-action {
    grid-column: 2;
  }
  .form-grid-2,
  .form-grid-4,
  .section-checks {
    grid-template-columns: 1fr;
  }
  .admin-main {
    padding: 1rem;
  }
  .admin-table {
    font-size: 0.86rem;
  }
  .glass-nav-inner {
    flex-wrap: wrap;
  }
  .mini-search {
    width: 100%;
  }
}

/* Admin live-data editor improvements */
.admin-actions-stack {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.admin-table code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  background: #fff;
  border: 1px solid var(--ta-line);
  border-radius: 10px;
  padding: 0.25rem 0.45rem;
  color: #53010b;
}
.admin-live-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 0 0 1.15rem;
  padding: 1rem;
  border: 1px solid var(--ta-line);
  border-radius: 20px;
  background: linear-gradient(135deg, #fffdf8, #fff3e5);
}
.admin-live-preview div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}
.admin-live-preview strong {
  font-weight: 900;
  color: #1d1714;
}
.admin-live-preview span,
.admin-live-preview a {
  color: #65020d;
  word-break: break-word;
  font-weight: 700;
}
.section-checks-clean .section-toggle-tickets,
.section-checks-clean .section-toggle-setlists,
.section-checks-clean .section-toggle-spotify {
  background: linear-gradient(
    135deg,
    rgba(229, 9, 49, 0.09),
    rgba(255, 107, 0, 0.09)
  );
  border-color: rgba(229, 9, 49, 0.28);
}
.note-editor.note-frame {
  border: 1px solid var(--ta-line) !important;
  border-radius: 18px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 38px rgba(35, 12, 0, 0.06);
}
.note-toolbar {
  background: #fff8ed !important;
  border-bottom: 1px solid var(--ta-line) !important;
}
.note-editable {
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  color: #111 !important;
  background: #fffdf8 !important;
}
.note-editable h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 1.4rem 0 0.75rem;
}
.note-editable h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.2rem 0 0.55rem;
}
.note-btn {
  border-radius: 9px !important;
  border-color: var(--ta-line) !important;
}
.editor-form code {
  background: #fff;
  border: 1px solid var(--ta-line);
  border-radius: 8px;
  padding: 0.1rem 0.35rem;
  color: #a10619;
  font-weight: 900;
}
@media (max-width: 760px) {
  .admin-live-preview div {
    grid-template-columns: 1fr;
  }
  .admin-actions-stack {
    justify-content: flex-start;
  }
}

/* ============================================================
   AJAX SEARCH + ADMIN SETTINGS UPGRADE
   ============================================================ */
.js-search-wrap {
  position: relative;
}
.search-suggestions {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  right: 0 !important;
  display: none;
  z-index: 99999;
  background: #fffdf8;
  border: 1px solid rgba(234, 219, 200, 0.96);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(24, 10, 0, 0.18);
  overflow: hidden;
  max-height: 430px;
  overflow-y: auto;
}
.search-suggestions.is-open {
  display: block;
}
.search-suggestions .suggestion-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 0.82rem;
  padding: 0.78rem 0.9rem;
  border-bottom: 1px solid rgba(234, 219, 200, 0.86);
  color: #15110e;
  text-decoration: none;
  background: #fffdf8;
}
.search-suggestions .suggestion-item:last-child {
  border-bottom: 0;
}
.search-suggestions .suggestion-item:hover,
.search-suggestions .suggestion-item:focus {
  background: linear-gradient(135deg, #fff5e7, #fff);
  outline: none;
}
.search-suggestions .suggestion-item img,
.search-suggestions .suggestion-fallback {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--ta-red), var(--ta-orange));
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.search-suggestions .suggestion-item span {
  min-width: 0;
}
.search-suggestions .suggestion-item em {
  display: inline-flex;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ta-red);
  margin-bottom: 0.13rem;
}
.search-suggestions .suggestion-item strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.1;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-suggestions .suggestion-item small {
  display: block;
  margin-top: 0.18rem;
  color: #71675f;
  font-size: 0.76rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-suggestions .suggestion-item > i {
  color: var(--ta-orange);
}
.suggestion-empty {
  padding: 0.9rem 1rem;
  color: #71675f;
  font-weight: 800;
  background: #fffdf8;
}
.suggestion-loading {
  color: #111;
}
.hero-v3-search .search-suggestions {
  text-align: left;
}
.mini-search .search-suggestions {
  min-width: 310px;
}

.password-field {
  position: relative;
  display: flex;
  align-items: center;
}
.password-field input {
  padding-right: 3.2rem !important;
}
.password-toggle {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0 !important;
  border-radius: 12px !important;
  background: #fff0e6 !important;
  color: var(--ta-red) !important;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: none !important;
  padding: 0 !important;
}
.password-toggle:hover {
  background: #ffe1cc !important;
}
.muted-password-field > i {
  position: absolute;
  right: 0.95rem;
  color: #766d66;
}
.ta-secure-login p {
  color: #6b625b;
  line-height: 1.5;
  text-align: center;
  margin: 0.3rem 0 1rem;
}

.admin-dashboard-hero {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, #fff, #fff4e6);
}
.admin-dashboard-hero h2 {
  margin: 0.15rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}
.admin-dashboard-hero p {
  color: #6a625c;
  max-width: 760px;
}
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.admin-stat-card {
  background: #fff;
  border: 1px solid var(--ta-line);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 18px 45px rgba(35, 12, 0, 0.09);
}
.admin-stat-card i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--ta-red), var(--ta-orange));
  margin-bottom: 0.8rem;
}
.admin-stat-card span {
  display: block;
  color: #746a62;
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.admin-stat-card strong {
  display: block;
  color: #111;
  font-size: 2rem;
  line-height: 1;
  margin-top: 0.4rem;
}
.live-pill,
.draft-pill,
.candidate-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 900;
  font-size: 0.78rem;
  white-space: nowrap;
}
.live-pill {
  background: #e8fff1;
  color: #087338;
}
.draft-pill {
  background: #fff0ef;
  color: #bb1328;
}
.candidate-count-pill {
  background: #fff0df;
  color: #9b3600;
}
.admin-opportunity-table td {
  vertical-align: middle;
}
.admin-opportunity-table .btn.primary {
  color: #fff;
}
.normal-save {
  position: static;
  margin-top: 1rem;
}
.admin-settings-form .password-field input {
  width: 100%;
}

@media (max-width: 900px) {
  .admin-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-dashboard-hero {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .admin-stat-grid {
    grid-template-columns: 1fr;
  }
  .mini-search .search-suggestions {
    min-width: 100%;
  }
  .search-suggestions .suggestion-item {
    grid-template-columns: 42px minmax(0, 1fr) 16px;
  }
}

/* Performer posting upgrade */
.field-hint {
  margin: -0.35rem 0 0.75rem;
  color: #746a62;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 700;
}
.field-hint code,
.admin-opportunity-table code {
  display: inline-block;
  border: 1px solid rgba(255, 96, 25, 0.2);
  border-radius: 10px;
  padding: 0.15rem 0.45rem;
  background: #fff8ef;
  color: #7b0712;
  font-weight: 900;
}
.admin-opportunity-table small {
  display: block;
  margin-top: 0.35rem;
}

/* Newsletter CTA database subscribe feedback */
.newsletter-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.newsletter-form button:disabled,
.newsletter-form.is-loading button {
  opacity: 0.72;
  cursor: wait;
}

.newsletter-message.is-success {
  color: #84f7ad;
}

.newsletter-message.is-error {
  color: #ffb2b2;
}

.newsletter-admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.newsletter-admin-stat {
  border: 1px solid var(--ta-line);
  border-radius: 20px;
  padding: 1rem;
  background: #fffaf1;
}

.newsletter-admin-stat span {
  display: block;
  color: #75675d;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.newsletter-admin-stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-top: 0.45rem;
}

@media (max-width: 800px) {
  .newsletter-admin-stats {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

/* Newsletter AJAX fix: hide honeypot and show right-side success/error popup */
.newsletter-form .newsletter-hp,
.newsletter-hp {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  pointer-events: none !important;
}

.newsletter-form .newsletter-message {
  display: block;
  margin-top: 0.55rem;
}

.ta-toast-wrap {
  position: fixed;
  top: 96px;
  right: 24px;
  z-index: 99999;
  pointer-events: none;
}

.ta-toast {
  min-width: 290px;
  max-width: min(420px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #140006, #ff2a2a 65%, #ff5a16);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: translateX(calc(100% + 40px));
  opacity: 0;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
  pointer-events: auto;
}

.ta-toast.is-show {
  transform: translateX(0);
  opacity: 1;
}

.ta-toast.is-error {
  background: linear-gradient(135deg, #2a0505, #d71920 65%, #ff5a16);
}

.ta-toast-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.ta-toast-text {
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 800;
}

.ta-toast-close {
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .ta-toast-wrap {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .ta-toast {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}
