/* ═══════════════════════════════════════════════════════════════════════════
   CulturadeCLUB — main.css  v2.0
   Design system completo: tokens, reset, layout, nav, hero, ticker, stats,
   search, cards, sections, footer, utilities
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  /* Palette */
  --cc-black:       #0c0c0a;
  --cc-black-soft:  #141412;
  --cc-black-mid:   #1e1e1b;
  --cc-charcoal:    #2a2a26;
  --cc-mid:         #3d3d38;
  --cc-light:       #9a9589;
  --cc-pale:        #c8c2b8;
  --cc-cream:       #eae5da;
  --cc-white:       #f4f0e8;
  --cc-pure:        #ffffff;

  --cc-accent:      #e800b0;
  --cc-accent-dark: #b8008a;
  --cc-accent-glow: rgba(232,0,176,.18);
  --cc-gold:        #c8a44a;
  --cc-gold-pale:   rgba(200,164,74,.15);

  --cc-green:       #16a34a;
  --cc-red:         #dc2626;

  /* Typography */
  --ff-display:     'Bebas Neue', sans-serif;
  --ff-body:        'DM Sans', sans-serif;
  --ff-italic:      'Playfair Display', serif;

  /* Spacing */
  --sp-xs:   4px;
  --sp-sm:   8px;
  --sp-md:   16px;
  --sp-lg:   24px;
  --sp-xl:   40px;
  --sp-2xl:  64px;
  --sp-3xl:  96px;

  /* Layout */
  --cc-nav-h:      60px;
  --cc-max-w:      1280px;
  --cc-gutter:     40px;

  /* Radius */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  20px;

  /* Shadows */
  --sh-card:   0 2px 12px rgba(0,0,0,.08);
  --sh-hover:  0 12px 40px rgba(0,0,0,.16);
  --sh-heavy:  0 24px 64px rgba(0,0,0,.28);

  /* Transitions */
  --tr-fast:   .15s ease;
  --tr-base:   .25s ease;
  --tr-slow:   .4s ease;
}

/* ── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html                   { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cc-white);
  color: var(--cc-black);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video  { max-width: 100%; height: auto; display: block; }
a           { color: inherit; text-decoration: none; }
button      { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }
ul, ol      { list-style: none; }
input, select, textarea { font-family: var(--ff-body); }

/* ── LAYOUT UTILITIES ────────────────────────────────────────────────────── */
.cc-container {
  max-width: var(--cc-max-w);
  margin: 0 auto;
  padding: 0 var(--cc-gutter);
}

.cc-section {
  padding: var(--sp-3xl) 0;
}
.cc-section--light  { background: var(--cc-white); }
.cc-section--cream  { background: var(--cc-cream); }
.cc-section--dark   { background: var(--cc-black); }
.cc-section--sponsor { background: var(--cc-cream); padding: var(--sp-xl) 0; border-top: 1px solid #d8d2c4; border-bottom: 1px solid #d8d2c4; }

.cc-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-xl);
  border-bottom: 2px solid var(--cc-black);
  padding-bottom: 14px;
}
.cc-section__header--light { border-color: rgba(255,255,255,.15); }
.cc-section__title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: 1.5px;
  line-height: 1;
}
.cc-section__title--light { color: var(--cc-white); }

.cc-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cc-accent);
  margin-bottom: 6px;
}
.cc-eyebrow--dim { color: var(--cc-light); }

.cc-link-arrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--cc-accent);
  white-space: nowrap;
  transition: gap var(--tr-fast);
}
.cc-link-arrow:hover { text-decoration: underline; }
.cc-link-arrow--light { color: var(--cc-pale); }
.cc-link-arrow--light:hover { color: var(--cc-white); }

/* ── GRIDS ───────────────────────────────────────────────────────────────── */
.cc-grid {
  display: grid;
  gap: 20px;
}
.cc-grid--2       { grid-template-columns: repeat(2, 1fr); }
.cc-grid--3       { grid-template-columns: repeat(3, 1fr); }
.cc-grid--4       { grid-template-columns: repeat(4, 1fr); }
.cc-grid--artists { grid-template-columns: repeat(6, 1fr); }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--tr-fast);
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
}
.cc-btn--accent       { background: var(--cc-accent);  color: #fff; border-color: var(--cc-accent); }
.cc-btn--accent:hover { background: var(--cc-accent-dark); border-color: var(--cc-accent-dark); }
.cc-btn--outline      { background: transparent; border: 1.5px solid var(--cc-black); color: var(--cc-black); }
.cc-aside-box .cc-btn--outline { border-color: rgba(255,255,255,.3); color: var(--cc-white); }
.cc-aside-box .cc-btn--outline:hover { border-color: var(--cc-accent); color: var(--cc-accent); }
.cc-btn--outline:hover { background: var(--cc-black); color: var(--cc-white); }
.cc-btn--outline-light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); color: var(--cc-white); }
.cc-btn--outline-light:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.cc-btn--full         { width: 100%; justify-content: center; }
.cc-btn--lg           { padding: 14px 30px; font-size: 14px; }

/* ── TAGS & BADGES ───────────────────────────────────────────────────────── */
.cc-tag {
  display: inline-block;
  background: var(--cc-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.cc-tag--genre {
  background: transparent;
  border: 1.5px solid currentColor;
  color: var(--cc-accent);
}
.cc-tag--tipo {
  background: var(--cc-charcoal);
  color: var(--cc-pale);
}

.cc-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  z-index: 3;
  pointer-events: none;
}
.cc-badge--green { background: var(--cc-green);  color: #fff; }
.cc-badge--red   { background: var(--cc-red);    color: #fff; }
.cc-badge--gold  { background: var(--cc-gold);   color: var(--cc-black); }
.cc-badge--dark  { background: var(--cc-charcoal); color: var(--cc-pale); }

/* ── CHIPS ───────────────────────────────────────────────────────────────── */
.cc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: var(--cc-white);
  font-size: 13px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 99px;
}
.cc-chip a          { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.cc-chip--gold      { background: var(--cc-gold-pale); color: var(--cc-gold); }
.cc-chip--dark      { background: var(--cc-cream); color: var(--cc-mid); }

/* ── PILLS ───────────────────────────────────────────────────────────────── */
.cc-pill {
  display: inline-block;
  border: 1.5px solid #ccc;
  background: transparent;
  padding: 5px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cc-mid);
  cursor: pointer;
  transition: all var(--tr-fast);
  text-decoration: none;
}
.cc-pill:hover,
.cc-pill--active     { background: var(--cc-black); border-color: var(--cc-black); color: var(--cc-white); }
.cc-pill--accent,
.cc-pill--active.cc-pill--accent { background: var(--cc-accent); border-color: var(--cc-accent); color: #fff; }
.cc-pill--sm         { font-size: 12px; padding: 3px 12px; }
.cc-pill__count      { opacity: .55; font-size: .85em; }

/* ═══════════════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--cc-black);
  border-bottom: 2px solid var(--cc-accent);
  height: var(--cc-nav-h);
  min-height: var(--cc-nav-h);
  max-height: var(--cc-nav-h);
  overflow: visible;   /* allow dropdowns but contain the bar itself */
  will-change: transform; /* GPU layer — prevents reflow jank */
}
.cc-header__inner {
  max-width: var(--cc-max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--cc-gutter);
  gap: 24px;
}

/* Logo */
.cc-header__logo, .cc-footer__logo { text-decoration: none; display: inline-flex; align-items: center; }
.cc-logo-text__main   { font-family: var(--ff-display); font-size: 26px; letter-spacing: 2px; color: var(--cc-white); }
.cc-logo-text__accent { font-family: var(--ff-display); font-size: 26px; letter-spacing: 2px; color: var(--cc-accent); }

/* Nav links */
.cc-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cc-nav__list li a {
  display: block;
  padding: 6px 12px;
  color: var(--cc-pale);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: color var(--tr-fast), background var(--tr-fast);
}
.cc-nav__list li a:hover         { color: var(--cc-white); background: rgba(255,255,255,.07); }
.cc-nav__list li.current-menu-item > a { color: var(--cc-accent); }

/* Nav actions */
.cc-header__actions { display: flex; align-items: center; gap: 12px; }
.cc-header__search-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: var(--cc-pale);
  border-radius: var(--r-sm);
  transition: all var(--tr-fast);
}
.cc-header__search-toggle:hover { color: var(--cc-white); background: rgba(255,255,255,.08); }
.cc-header__cta {
  background: var(--cc-accent);
  color: #fff !important;
  padding: 7px 18px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: background var(--tr-fast);
}
.cc-header__cta:hover { background: var(--cc-accent-dark); }

/* Burger */
.cc-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.cc-header__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cc-white);
  border-radius: 2px;
  transition: all var(--tr-base);
}
.cc-header__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cc-header__burger.is-active span:nth-child(2) { opacity: 0; }
.cc-header__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search drawer */
.cc-search-drawer {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--cc-black-soft);
  border-bottom: 1px solid var(--cc-charcoal);
  padding: 20px var(--cc-gutter);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--tr-base);
  z-index: 400;
}
.cc-search-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cc-search-drawer__inner { max-width: var(--cc-max-w); margin: 0 auto; }
.cc-search-drawer__box {
  display: flex; align-items: center;
  background: var(--cc-charcoal);
  border: 1px solid var(--cc-mid);
  border-radius: var(--r-sm);
  padding: 0 16px;
  gap: 12px;
}
.cc-search-drawer__box svg { color: var(--cc-light); flex-shrink: 0; }
#cc-global-search {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--cc-white);
  font-size: 16px;
  padding: 14px 0;
}
#cc-global-search::placeholder { color: var(--cc-mid); }
.cc-search-drawer__close {
  color: var(--cc-light); font-size: 18px; line-height: 1;
  transition: color var(--tr-fast);
}
.cc-search-drawer__close:hover { color: var(--cc-white); }
.cc-search-drawer__results {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
}
.cc-search-result-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--cc-black-mid);
  padding: 10px 12px;
  border-radius: var(--r-sm);
  transition: background var(--tr-fast);
}
.cc-search-result-item:hover { background: var(--cc-charcoal); }
.cc-search-result-item__thumb {
  width: 40px; height: 40px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cc-charcoal);
}
.cc-search-result-item__type { font-size: 10px; color: var(--cc-accent); text-transform: uppercase; letter-spacing: 1px; display: block; }
.cc-search-result-item__title { font-size: 13px; color: var(--cc-white); font-weight: 500; line-height: 1.3; }
.cc-search-drawer__hints {
  display: flex; gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--cc-charcoal);
}
.cc-search-drawer__hints a {
  font-size: 13px; color: var(--cc-light);
  transition: color var(--tr-fast);
}
.cc-search-drawer__hints a:hover { color: var(--cc-white); }

/* Mobile nav */
.cc-mobile-nav {
  position: fixed;
  top: var(--cc-nav-h); left: 0; right: 0; bottom: 0;
  background: var(--cc-black);
  z-index: 490;
  transform: translateX(100%);
  transition: transform var(--tr-base);
  overflow-y: auto;
}
.cc-mobile-nav.is-open { transform: translateX(0); }
.cc-mobile-nav__inner  { padding: 24px; }
.cc-mobile-nav__list li { border-bottom: 1px solid var(--cc-charcoal); }
.cc-mobile-nav__list li a {
  display: block; padding: 16px 0;
  font-size: 22px; font-family: var(--ff-display);
  letter-spacing: 2px; color: var(--cc-white);
  transition: color var(--tr-fast);
}
.cc-mobile-nav__list li a:hover { color: var(--cc-accent); }
.cc-mobile-nav__cta { color: var(--cc-accent) !important; }

.cc-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 480;
  backdrop-filter: blur(2px);
}
.cc-overlay.is-active { display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-hero {
  margin-top: var(--cc-nav-h);
  position: relative;
  min-height: clamp(520px, 75vh, 800px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
/* Slider hero — full rewrite for reliability */
.cc-hero--slider {
  margin-top: var(--cc-nav-h);   /* same as .cc-hero — clear the fixed nav */
  padding-top: 0;
  min-height: clamp(480px, 68vh, 700px);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.cc-hero__bg { position: absolute; inset: 0; }
.cc-hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.cc-hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,12,10,.95) 0%,
    rgba(12,12,10,.75) 45%,
    rgba(12,12,10,.25) 75%,
    rgba(12,12,10,.05) 100%
  );
}
/* Also gradient from bottom */
.cc-hero__bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to top, var(--cc-black) 0%, transparent 100%);
  pointer-events: none;
}
.cc-hero__bg--gradient {
  background: linear-gradient(135deg, #0c0c0a 0%, #1e0a28 40%, #3a0d1e 70%, #1a1208 100%);
}

.cc-hero__watermark {
  position: absolute;
  font-family: var(--ff-display);
  font-size: clamp(120px, 22vw, 320px);
  color: rgba(255,255,255,.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 12px;
  user-select: none;
  z-index: 0;
}

.cc-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(0, 300px);
  gap: 32px;
  align-items: end;
  padding-bottom: var(--sp-xl);
  padding-top: var(--sp-md);
  box-sizing: border-box;
}
/* Slider version: full height content with nav clearance at top */
.cc-hero--slider .cc-hero__content {
  height: 100%;
  align-items: end;
  padding-top: var(--sp-xl);    /* just breathing room, nav is cleared by margin-top */
}
.cc-hero__left {}

.cc-hero__meta {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  /* ensure meta row is always visible above title */
  position: relative;
  z-index: 3;
}
.cc-hero__country {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}

.cc-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(56px, 9vw, 120px);
  color: var(--cc-white);
  line-height: .9;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.cc-hero__title a { color: inherit; }
.cc-hero__title a:hover { color: var(--cc-gold); }

.cc-hero__excerpt {
  color: rgba(255,255,255,.6);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 24px;
}
.cc-hero__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.cc-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero aside — mini agenda */
.cc-hero__aside {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 16px;
  margin-bottom: 4px;
  min-width: 0;       /* prevent grid blowout */
  overflow: hidden;
  max-width: 300px;
}
.cc-hero__aside-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cc-accent);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cc-hero__mini-event {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: opacity var(--tr-fast);
}
.cc-hero__mini-event:last-of-type { border-bottom: none; }
.cc-hero__mini-event:hover        { opacity: .8; }
.cc-hero__mini-thumb img,
.cc-hero__mini-placeholder {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.cc-hero__mini-placeholder { background: var(--cc-charcoal); }
.cc-hero__mini-body        { display: flex; flex-direction: column; gap: 2px; }
.cc-hero__mini-genre       { font-size: 10px; color: var(--cc-accent); text-transform: uppercase; letter-spacing: 1px; }
.cc-hero__mini-title       { font-size: 13px; font-weight: 500; color: var(--cc-white); line-height: 1.3; }
.cc-hero__mini-date        { font-size: 11px; color: var(--cc-light); }
.cc-hero__aside-more {
  display: block;
  text-align: right;
  font-size: 12px;
  color: var(--cc-light);
  margin-top: 12px;
  transition: color var(--tr-fast);
}
.cc-hero__aside-more:hover { color: var(--cc-white); }

/* ── Hero animations ── */
@keyframes cc-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cc-hero__meta      { animation: cc-fade-up .5s .1s both; }
.cc-hero__title     { animation: cc-fade-up .5s .2s both; }
.cc-hero__excerpt   { animation: cc-fade-up .5s .3s both; }
.cc-hero__chips     { animation: cc-fade-up .5s .38s both; }
.cc-hero__actions   { animation: cc-fade-up .5s .45s both; }
.cc-hero__aside     { animation: cc-fade-up .5s .3s both; }

/* ═══════════════════════════════════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-ticker {
  background: var(--cc-black-soft);
  border-top: 1px solid var(--cc-charcoal);
  border-bottom: 1px solid var(--cc-charcoal);
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cc-ticker__label {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
  padding: 0 20px 0 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cc-accent);
  border-right: 1px solid var(--cc-charcoal);
  height: 100%;
  background: var(--cc-black);
}
.cc-ticker__dot {
  width: 7px; height: 7px;
  background: var(--cc-accent);
  border-radius: 50%;
  animation: cc-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes cc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}
.cc-ticker__track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.cc-ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: cc-ticker-scroll 40s linear infinite;
  will-change: transform;
}
.cc-ticker__track:hover { animation-play-state: paused; }
@keyframes cc-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cc-ticker__item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 20px;
  height: 44px;
  transition: background var(--tr-fast);
}
.cc-ticker__item:hover { background: rgba(255,255,255,.04); }
.cc-ticker__genre   { font-size: 10px; color: var(--cc-accent); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.cc-ticker__title   { font-size: 13px; color: var(--cc-white); font-weight: 500; }
.cc-ticker__date    { font-size: 12px; color: var(--cc-light); }
.cc-ticker__country { font-size: 12px; color: var(--cc-mid); }
.cc-ticker__sep     { color: var(--cc-charcoal); font-size: 8px; margin: 0 4px; }

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-searchbar {
  background: var(--cc-cream);
  border-bottom: 1px solid #d4cec4;
  padding: 20px 0;
  /* NOT sticky — JS adds .is-sticky after hero */
  position: relative;
  z-index: 10;
}
.cc-searchbar__inner {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.cc-searchbar__input-wrap {
  display: flex; align-items: center;
  background: var(--cc-white);
  border: 1.5px solid #ccc;
  border-radius: var(--r-sm);
  padding: 0 14px;
  flex: 1; min-width: 200px;
  gap: 8px;
  transition: border-color var(--tr-fast);
}
.cc-searchbar__input-wrap:focus-within { border-color: var(--cc-accent); box-shadow: 0 0 0 3px var(--cc-accent-glow); }
.cc-searchbar__input-wrap svg { color: var(--cc-light); flex-shrink: 0; }
.cc-searchbar__input-wrap input {
  border: none; background: transparent; outline: none;
  padding: 11px 0;
  font-size: 14px;
  color: var(--cc-black);
  width: 100%;
}
.cc-searchbar__input-wrap input::placeholder { color: var(--cc-light); }

.cc-searchbar__select {
  padding: 11px 14px;
  border: 1.5px solid #ccc;
  border-radius: var(--r-sm);
  background: var(--cc-white);
  font-size: 13px;
  color: var(--cc-mid);
  cursor: pointer;
  outline: none;
  min-width: 140px;
  transition: border-color var(--tr-fast);
}
.cc-searchbar__select:focus { border-color: var(--cc-accent); }

.cc-genre-pills {
  display: flex; flex-wrap: wrap; gap: 7px;
  padding-top: 14px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-stats-bar {
  background: var(--cc-black-mid);
  border-bottom: 1px solid var(--cc-charcoal);
  padding: 0;
}
.cc-stats-bar__grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.cc-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  flex: 1;
  max-width: 200px;
  text-align: center;
}
.cc-stat-item--sep {
  width: 1px;
  background: var(--cc-charcoal);
  min-height: 40px;
  flex: 0;
  padding: 0;
  align-self: center;
  height: 40px;
}
.cc-stat-item__num {
  font-family: var(--ff-display);
  font-size: 38px;
  color: var(--cc-white);
  line-height: 1;
  letter-spacing: 1px;
  display: block;
}
.cc-stat-item__label {
  font-size: 11px;
  color: var(--cc-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DISCOVER TILES
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-discover { padding: 0; }
.cc-discover__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 280px;
}
.cc-discover-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-right: 1px solid var(--cc-charcoal);
  transition: all var(--tr-base);
}
.cc-discover-tile:last-child { border-right: none; }
.cc-discover-tile__bg {
  position: absolute; inset: 0;
  transition: transform var(--tr-slow);
}
.cc-discover-tile--artistas .cc-discover-tile__bg {
  background: linear-gradient(135deg, #1a0533 0%, #4a0e6e 60%, #7b2d8b 100%);
}
.cc-discover-tile--locales .cc-discover-tile__bg {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 60%, #2d6a9f 100%);
}
.cc-discover-tile--noticias .cc-discover-tile__bg {
  background: linear-gradient(135deg, #1a1208 0%, #3d2a05 60%, #6a4a0a 100%);
}
.cc-discover-tile:hover .cc-discover-tile__bg { transform: scale(1.04); }

.cc-discover-tile__body {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.cc-discover-tile__icon  { font-size: 36px; margin-bottom: 4px; }
.cc-discover-tile__title { font-family: var(--ff-display); font-size: 32px; letter-spacing: 2px; color: var(--cc-white); line-height: 1; }
.cc-discover-tile__desc  { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 300; line-height: 1.6; }
.cc-discover-tile__count { font-size: 12px; color: var(--cc-gold); font-weight: 600; margin-top: 4px; }
.cc-discover-tile__arrow {
  font-size: 13px; color: rgba(255,255,255,.4);
  margin-top: auto;
  padding-top: 20px;
  transition: color var(--tr-fast), letter-spacing var(--tr-fast);
}
.cc-discover-tile:hover .cc-discover-tile__arrow { color: var(--cc-white); letter-spacing: 1px; }

/* ═══════════════════════════════════════════════════════════════════════════
   GENRE EXPLORER
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-genre-explorer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cc-genre-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cc-white);
  border: 1.5px solid #ddd8ce;
  border-radius: var(--r-md);
  transition: all var(--tr-fast);
  text-decoration: none;
}
.cc-genre-tile:hover {
  border-color: var(--cc-accent);
  background: var(--cc-cream);
  transform: translateY(-2px);
  box-shadow: var(--sh-hover);
}
.cc-genre-tile__icon   { font-size: 28px; line-height: 1; flex-shrink: 0; }
.cc-genre-tile__body   { flex: 1; }
.cc-genre-tile__name   { display: block; font-weight: 600; font-size: 14px; color: var(--cc-black); }
.cc-genre-tile__count  { display: block; font-size: 12px; color: var(--cc-light); margin-top: 2px; }
.cc-genre-tile__arrow  { color: var(--cc-light); font-size: 18px; transition: color var(--tr-fast), transform var(--tr-fast); }
.cc-genre-tile:hover .cc-genre-tile__arrow { color: var(--cc-accent); transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════════════════════
   NEWS EDITORIAL LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-news-editorial {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: start;      /* don't stretch items to fill empty rows */
}
.cc-news-editorial .cc-card--noticia-featured {
  grid-row: auto;   /* don't span rows — causes blank space when few posts */
}
/* When there are secondary cards, featured card gets extra height naturally */
.cc-news-editorial.has-secondary .cc-card--noticia-featured {
  grid-row: 1 / span 2;
}
.cc-news-editorial .cc-card--noticia:not(.cc-card--noticia-featured) {
  grid-column: 2;
}
/* Mobile — single column, no row spanning, no height stretching */
@media (max-width: 768px) {
  .cc-news-editorial {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .cc-news-editorial .cc-card--noticia-featured {
    grid-row: auto;
  }
  .cc-news-editorial .cc-card--noticia:not(.cc-card--noticia-featured) {
    grid-column: auto;
  }
  /* Prevent cards from stretching to fill grid rows on mobile */
  .cc-news-editorial .cc-card {
    height: auto !important;
    align-self: start;
  }
  .cc-news-editorial .cc-card__body {
    flex: 0 0 auto;  /* don't grow to fill empty space */
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COUNTRIES GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-countries-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.cc-country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  text-decoration: none;
  text-align: center;
  transition: all var(--tr-fast);
}
.cc-country-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--cc-accent);
  transform: translateY(-3px);
}
.cc-country-card__flag  { font-size: 32px; line-height: 1; }
.cc-country-card__name  { font-size: 12px; font-weight: 600; color: var(--cc-white); }
.cc-country-card__count {
  font-size: 11px; color: var(--cc-light);
  background: rgba(255,255,255,.07);
  padding: 1px 8px; border-radius: 99px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-newsletter {
  background: var(--cc-black);
  padding: var(--sp-3xl) 0;
  position: relative;
  overflow: hidden;
}
.cc-newsletter::before {
  content: 'NEWSLETTER';
  position: absolute;
  font-family: var(--ff-display);
  font-size: clamp(80px, 15vw, 200px);
  color: rgba(255,255,255,.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 8px;
}
.cc-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cc-newsletter__title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 68px);
  color: var(--cc-white);
  line-height: .92;
  letter-spacing: 2px;
  margin: 10px 0 14px;
}
.cc-newsletter__title em {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--cc-gold);
}
.cc-newsletter__sub {
  color: var(--cc-light);
  font-size: 15px;
  font-weight: 300;
}
.cc-newsletter__input-row {
  display: flex; gap: 0;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color .2s;
}
.cc-newsletter__input-row:focus-within {
  border-color: var(--cc-accent);
}
.cc-newsletter__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--cc-white);
  font-size: 14px;
  padding: 14px 18px;
  font-family: var(--ff-body);
}
.cc-newsletter__input::placeholder { color: rgba(255,255,255,.35); }
.cc-newsletter__input-row .cc-btn {
  border-radius: 0;
  padding: 14px 24px;
  border: none;
  font-size: 13px;
  letter-spacing: 1px;
}
.cc-newsletter__powered {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin-top: 12px;
}
.cc-newsletter__powered a { color: rgba(255,255,255,.4); }
.cc-newsletter__powered a:hover { color: var(--cc-accent); }
.cc-newsletter__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-footer {
  background: var(--cc-black);
  border-top: 1px solid var(--cc-charcoal);
  padding: var(--sp-2xl) 0 var(--sp-xl);
}
.cc-footer__top {
  max-width: var(--cc-max-w);
  margin: 0 auto;
  padding: 0 var(--cc-gutter) var(--sp-xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--cc-charcoal);
  margin-bottom: var(--sp-xl);
}
.cc-footer__logo {
  font-family: var(--ff-display);
  display: block;
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 6px;   /* reduced — tagline has its own margin-top */
}
.cc-footer__logo .cc-logo-text__main  { font-size: 30px; }
.cc-footer__logo .cc-logo-text__accent { font-size: 30px; }
.cc-footer__tagline {
  font-size: 13px;
  color: var(--cc-light);
  font-weight: 300;
  line-height: 1.7;
  max-width: 260px;
  margin-top: 6px;       /* breathing room after logo */
  margin-bottom: 20px;
}
.cc-footer__social { display: flex; gap: 10px; }
.cc-social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--cc-charcoal);
  border-radius: 50%;
  color: var(--cc-light);
  font-size: 14px;
  transition: all var(--tr-fast);
}
.cc-social-link:hover { background: var(--cc-accent); border-color: var(--cc-accent); color: #fff; }
.cc-footer__col h4 {
  font-family: var(--ff-display);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--cc-white);
  margin-bottom: 16px;
}
.cc-footer__col ul li { margin-bottom: 10px; }
.cc-footer__col a     { font-size: 13px; color: var(--cc-light); transition: color var(--tr-fast); }
.cc-footer__col a:hover { color: var(--cc-white); }
.cc-footer__bottom {
  max-width: var(--cc-max-w); margin: 0 auto;
  padding: 0 var(--cc-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #4a4a44;
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ARCHIVE / PAGES SHARED
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-archive-header {
  margin-top: var(--cc-nav-h);
  background: var(--cc-black);
  padding: 56px 0 48px;
}
.cc-archive-header__inner { }
.cc-archive-header__title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 7vw, 88px);
  color: var(--cc-white);
  line-height: .9;
  letter-spacing: 2px;
  margin: 10px 0 12px;
}
.cc-archive-header__desc  { color: var(--cc-light); font-size: 15px; font-weight: 300; }
.cc-archive-header__count {
  display: inline-block; margin-top: 12px;
  background: rgba(255,255,255,.08); color: var(--cc-light);
  font-size: 12px; padding: 3px 14px; border-radius: 99px;
}
.cc-archive-filter { padding: 18px 0; }

.cc-archive-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-3xl);
  align-items: start;
}
.cc-archive-main  { }
.cc-archive-sidebar { position: sticky; top: calc(var(--cc-nav-h) + 20px); }

.cc-pagination {
  display: flex; justify-content: center;
  gap: 8px; margin-top: var(--sp-xl);
  flex-wrap: wrap;
}
.cc-pagination .page-numbers {
  padding: 8px 14px;
  border: 1.5px solid #ccc;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--tr-fast);
}
.cc-pagination .page-numbers:hover,
.cc-pagination .current { background: var(--cc-black); border-color: var(--cc-black); color: var(--cc-white); }

.cc-empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--cc-light);
  font-style: italic;
}
.cc-empty--full { grid-column: 1 / -1; }

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-search-page-header {
  margin-top: var(--cc-nav-h);
  padding: 48px 0 32px;
  background: var(--cc-black);
}
.cc-search-page-header__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--cc-white);
  letter-spacing: 1px;
  margin: 8px 0 20px;
}
.cc-search-page-header__title em { font-family: var(--ff-italic); font-style: italic; color: var(--cc-gold); }
.cc-search-page-header__meta { font-size: 14px; color: var(--cc-light); margin-bottom: 20px; }
.cc-search-page-form {
  display: flex; gap: 0;
  background: var(--cc-charcoal);
  border: 1px solid var(--cc-mid);
  border-radius: var(--r-sm);
  overflow: hidden;
  max-width: 600px;
}
.cc-search-page-form input[type=search] {
  flex: 1; background: none; border: none; outline: none;
  color: var(--cc-white); font-size: 15px; padding: 13px 18px;
}
.cc-search-page-form .cc-btn { border-radius: 0; border: none; }
.cc-search-group         { margin-bottom: var(--sp-2xl); }
.cc-search-group__count  { opacity: .5; }
.cc-search-empty { padding: var(--sp-2xl) 0; text-align: center; }
.cc-search-empty__title { font-family: var(--ff-display); font-size: 32px; letter-spacing: 1px; margin-bottom: 16px; }
.cc-search-empty__links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE / POST
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-page-wrap {
  margin-top: var(--cc-nav-h);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-3xl);
  align-items: start;
}
.cc-page-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--cc-black);
  padding-bottom: 16px;
}
.cc-page-hero-img { margin-bottom: 28px; border-radius: var(--r-md); overflow: hidden; }
.cc-page-hero-img img { width: 100%; height: 400px; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR WIDGETS
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-sidebar-inner {}
.cc-widget {
  background: var(--cc-white);
  border: 1px solid #e2ddd4;
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 20px;
}
.cc-widget--newsletter {
  background: var(--cc-black);
  border-color: var(--cc-black);
  color: var(--cc-white);
}
.cc-widget--newsletter h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--cc-white);
  margin-bottom: 6px;
}
.cc-widget--newsletter p { font-size: 13px; color: var(--cc-light); margin-bottom: 14px; font-weight: 300; }
.cc-widget__title {
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--cc-black);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.cc-widget__more {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--cc-accent);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.cc-widget-country-list li { border-bottom: 1px solid var(--cc-cream); }
.cc-widget-country-list a  {
  display: flex; align-items: center;
  padding: 9px 0;
  transition: color var(--tr-fast);
}
.cc-widget-country-list a:hover .cc-widget-country__name { color: var(--cc-accent); }
.cc-widget-country__name  { flex: 1; font-size: 14px; font-weight: 500; }
.cc-widget-country__count {
  font-size: 11px; color: var(--cc-light);
  background: var(--cc-cream); padding: 2px 8px; border-radius: 99px;
}
.cc-widget-genres { display: flex; flex-wrap: wrap; gap: 6px; }
.cc-sidebar-event, .cc-sidebar-news {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cc-cream);
  transition: opacity var(--tr-fast);
}
.cc-sidebar-event:hover, .cc-sidebar-news:hover { opacity: .75; }
.cc-sidebar-event__thumb,
.cc-sidebar-news__thumb { width: 52px; height: 52px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.cc-sidebar-event__thumb--ph,
.cc-sidebar-news__thumb--ph { background: var(--cc-charcoal); }
.cc-sidebar-event__genre  { font-size: 10px; color: var(--cc-accent); text-transform: uppercase; letter-spacing: 1px; display: block; }
.cc-sidebar-event__title,
.cc-sidebar-news__title   { font-size: 13px; font-weight: 500; line-height: 1.35; display: block; }
.cc-sidebar-event__date,
.cc-sidebar-news__date    { font-size: 11px; color: var(--cc-light); display: block; margin-top: 2px; }
.cc-widget-newsletter-form { }
.cc-widget-newsletter__input {
  width: 100%;
  padding: 10px 12px;
  background: var(--cc-charcoal);
  border: 1px solid var(--cc-mid);
  border-radius: var(--r-sm);
  color: var(--cc-white);
  font-size: 13px;
  outline: none;
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --cc-gutter: 28px; }
  .cc-grid--artists     { grid-template-columns: repeat(4, 1fr); }
  .cc-countries-grid    { grid-template-columns: repeat(4, 1fr); }
  .cc-genre-explorer    { grid-template-columns: repeat(3, 1fr); }
  .cc-footer__top       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .cc-hero__content     { grid-template-columns: 1fr; padding-top: var(--sp-lg); }
  .cc-hero__aside       { display: none; }
  .cc-archive-wrap,
  .cc-page-wrap         { grid-template-columns: 1fr; }
  .cc-archive-sidebar   { display: none; }
  .cc-newsletter__inner { grid-template-columns: 1fr; gap: 32px; }
  .cc-discover__grid    { grid-template-columns: 1fr; }
  .cc-discover-tile     { border-right: none; border-bottom: 1px solid var(--cc-charcoal); min-height: 160px; }
}

@media (max-width: 768px) {
  :root {
    --cc-gutter: 20px;
    --sp-3xl: 60px;
    --sp-2xl: 44px;
  }
  .cc-header__burger  { display: flex; }
  .cc-nav, .cc-header__cta { display: none; }
  .cc-header__search-toggle { display: flex; }

  .cc-hero            { min-height: 480px; }
  .cc-hero__title     { font-size: clamp(48px, 13vw, 72px); }
  .cc-hero__bg-overlay {
    background: linear-gradient(to bottom, rgba(12,12,10,.5) 0%, rgba(12,12,10,.9) 100%);
  }

  .cc-stats-bar__grid { flex-wrap: wrap; }
  .cc-stat-item       { min-width: 50%; padding: 16px 20px; max-width: none; }
  .cc-stat-item--sep  { display: none; }

  .cc-grid--2,
  .cc-grid--3,
  .cc-grid--4         { grid-template-columns: 1fr; }
  .cc-grid--artists   { grid-template-columns: repeat(2, 1fr); }
  .cc-countries-grid  { grid-template-columns: repeat(4, 1fr); }
  .cc-genre-explorer  { grid-template-columns: repeat(2, 1fr); }

  /* cc-news-editorial mobile handled separately above */

  .cc-searchbar__inner { gap: 8px; }
  .cc-searchbar__select,
  .cc-searchbar__input-wrap { width: 100%; min-width: 0; }

  .cc-footer__top    { grid-template-columns: 1fr; gap: 28px; }
  .cc-footer__bottom { flex-direction: column; text-align: center; }

  .cc-search-drawer__results { grid-template-columns: 1fr 1fr; }
  .cc-ticker__track  { animation-duration: 25s; }
}

@media (max-width: 480px) {
  .cc-countries-grid  { grid-template-columns: repeat(3, 1fr); }
  .cc-genre-explorer  { grid-template-columns: 1fr 1fr; }
  .cc-grid--artists   { grid-template-columns: repeat(2, 1fr); }
  .cc-search-drawer__results { grid-template-columns: 1fr; }
}

/* ── LOGO — single authoritative rule ───────────────────────────────────── */
/* Default 38px. Overridden by customizer via #cc-dynamic-css injected in <head> */
.cc-header__logo img,
.cc-header__logo .custom-logo-link img,
/* logo — see definitive rule at end of file */

/* ── NAV FIX — ensure desktop nav visible ───────────────────────────────── */
@media (min-width: 769px) {
  .cc-nav          { display: block !important; }
  .cc-header__cta  { display: inline-flex !important; }
  .cc-header__burger { display: none !important; }
}

/* ── MOBILE NAV LOGO ────────────────────────────────────────────────────── */
.cc-mobile-nav__logo {
  display: block;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cc-charcoal);
}
.cc-mobile-nav__logo img { height: 36px; width: auto; }
.cc-mobile-nav__social {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--cc-charcoal);
}
.cc-mobile-nav__divider {
  border: none;
  border-top: 1px solid var(--cc-charcoal) !important;
  padding: 0 !important;
  margin: 8px 0;
}

/* ── FOOTER SOCIAL — SoundCloud + TikTok additions ──────────────────────── */
.cc-social-link--sc:hover { background: #ff5500 !important; border-color: #ff5500 !important; }
.cc-social-link--tk:hover { background: #010101 !important; border-color: #69c9d0 !important; color: #69c9d0 !important; }
.cc-social-link--fb:hover { background: #1877f2 !important; border-color: #1877f2 !important; }

/* ── PAGE — About / Legal layout ────────────────────────────────────────── */
.cc-page-about { max-width: 780px; }
.cc-about-lead { font-size: 18px; line-height: 1.7; color: var(--cc-mid); border-left: 3px solid var(--cc-accent); padding-left: 20px; margin-bottom: 32px !important; }
.cc-page-article h1 { font-size: clamp(32px,5vw,56px); }
.cc-page-article h2 { font-family: var(--ff-display); font-size: 26px; letter-spacing:1px; margin: 32px 0 14px; border-bottom: 1px solid var(--cc-cream); padding-bottom: 8px; }
.cc-page-article table { width:100%; border-collapse:collapse; margin:16px 0; }
.cc-page-article th, .cc-page-article td { padding:10px 14px; border:1px solid #ddd; font-size:14px; text-align:left; }
.cc-page-article th { background:var(--cc-cream); font-weight:700; }

/* ── ADMIN BAR compensation ─────────────────────────────────────────────── */
.admin-bar .cc-header { top: 32px; }
.admin-bar .cc-mobile-nav { top: calc(var(--cc-nav-h) + 32px); }
/* Prevent content jumping when nav changes scroll state */
html { scroll-padding-top: calc(var(--cc-nav-h) + 16px); }
/* Admin bar shifts nav down — compensate slider content padding */
.admin-bar .cc-hero--slider {
  margin-top: calc(var(--cc-nav-h) + 32px);   /* push below WP admin bar */
}
.admin-bar .cc-hero--slider .cc-hero__content {
  padding-top: var(--sp-xl);
}
@media (max-width: 782px) {
  .admin-bar .cc-header { top: 46px; }
  .admin-bar .cc-mobile-nav { top: calc(var(--cc-nav-h) + 46px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCHBAR v2 — collapsible filters, non-blocking sticky
   ═══════════════════════════════════════════════════════════════════════════ */

/* Searchbar — NEVER sticky, always flows with document */
.cc-searchbar,
.cc-searchbar.is-sticky {
  position: relative !important;
  top: auto !important;
}

/* Main row */
.cc-searchbar__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.cc-searchbar__input-wrap {
  flex: 1;
  display: flex; align-items: center;
  background: var(--cc-white);
  border: 1.5px solid #ccc;
  border-radius: var(--r-sm);
  padding: 0 14px;
  gap: 8px;
  min-width: 0;
  transition: border-color var(--tr-fast);
}
.cc-searchbar__input-wrap:focus-within {
  border-color: var(--cc-accent);
  box-shadow: 0 0 0 3px var(--cc-accent-glow);
}
.cc-searchbar__input-wrap svg { color: var(--cc-light); flex-shrink: 0; }
.cc-searchbar__input-wrap input {
  border: none; background: transparent; outline: none;
  padding: 10px 0; font-size: 14px;
  color: var(--cc-black); width: 100%;
}
.cc-searchbar__input-wrap input::placeholder { color: var(--cc-light); }

/* Filter toggle button */
.cc-searchbar__filter-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  background: var(--cc-white);
  border: 1.5px solid #ccc;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  color: var(--cc-mid);
  cursor: pointer;
  transition: all var(--tr-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.cc-searchbar__filter-toggle:hover,
.cc-searchbar__filter-toggle.is-active {
  border-color: var(--cc-accent);
  color: var(--cc-accent);
  background: rgba(var(--cc-accent), .05);
}
.cc-searchbar__filter-count {
  background: var(--cc-accent);
  color: #fff;
  font-size: 10px; font-weight: 800;
  border-radius: 99px;
  padding: 1px 6px;
  line-height: 1.4;
}

/* Advanced filters panel */
.cc-searchbar__advanced {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 8px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height .3s ease, opacity .25s ease, margin .3s ease;
  margin-top: 0;
}
.cc-searchbar__advanced.is-open {
  max-height: 100px;
  opacity: 1;
  pointer-events: auto;
  margin-top: 10px;
}
.cc-searchbar__select {
  padding: 10px 12px;
  border: 1.5px solid #ccc;
  border-radius: var(--r-sm);
  background: var(--cc-white);
  font-family: var(--ff-body);
  font-size: 13px; color: var(--cc-mid);
  cursor: pointer; outline: none;
  transition: border-color var(--tr-fast);
}
.cc-searchbar__select:focus { border-color: var(--cc-accent); }
.cc-searchbar__reset {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px;
  background: transparent;
  border: 1.5px solid #ccc;
  border-radius: var(--r-sm);
  font-size: 12px; color: var(--cc-light);
  cursor: pointer; white-space: nowrap;
  transition: all var(--tr-fast);
}
.cc-searchbar__reset:hover { border-color: var(--cc-red); color: var(--cc-red); }

/* Genre pills row */
.cc-genre-pills {
  display: flex; flex-wrap: wrap; gap: 7px;
  padding-top: 12px;
}

/* ── HEADER SUBMIT EVENT BUTTON ──────────────────────────────────────────── */
.cc-header__submit-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.7);
  font-size: 12px; font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--tr-fast);
}
.cc-header__submit-btn:hover {
  border-color: var(--cc-accent);
  color: var(--cc-accent);
}
.cc-header__submit-btn span { display: inline; }

/* ── MOBILE NAV IMPROVEMENTS ─────────────────────────────────────────────── */
.cc-mobile-nav__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cc-charcoal);
}
.cc-mobile-nav__close {
  color: var(--cc-light);
  transition: color var(--tr-fast);
  padding: 4px;
}
.cc-mobile-nav__close:hover { color: var(--cc-white); }
.cc-mobile-nav__submit-btn {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px;
  padding: 14px 20px;
  background: var(--cc-accent);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 14px; font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background var(--tr-fast);
}
.cc-mobile-nav__submit-btn:hover { background: var(--cc-accent-dark); }

/* ── HEADER SCROLL STATES ────────────────────────────────────────────────── */
.cc-header {
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.cc-header.cc-header--scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.cc-header.cc-header--hidden {
  transform: translateY(-100%);
}

/* ── RESPONSIVE SEARCHBAR ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cc-searchbar__advanced { grid-template-columns: 1fr 1fr; }
  .cc-searchbar__advanced.is-open { max-height: 200px; }
  .cc-header__submit-btn span { display: none; }
  .cc-header__submit-btn { padding: 7px 10px; }
}
@media (max-width: 768px) {
  .cc-searchbar__row { flex-wrap: wrap; }
  .cc-searchbar__advanced { grid-template-columns: 1fr; }
  .cc-searchbar__advanced.is-open { max-height: 320px; }
  .cc-header__submit-btn { display: none; }
}

/* ── SUBMIT EVENT PAGE ───────────────────────────────────────────────────── */
.cc-submit-page { max-width: 640px; margin: 0 auto; }
.cc-submit-page .cc-about-lead { font-size:16px; }

/* ═══════════════════════════════════════════════════════════════════════════
   AD ZONES — estilos de los espacios publicitarios
   ═══════════════════════════════════════════════════════════════════════════ */

/* Base ad zone wrapper */
.cc-ad-zone {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 0; /* avoid gap below images */
}
.cc-ad-zone__inner { display: inline-block; max-width: 100%; }

/* Leaderboard — banda superior bajo el header */
.cc-ad--leaderboard {
  background: var(--cc-black-soft);
  border-bottom: 1px solid var(--cc-charcoal);
  padding: 8px 0;
}
.cc-ad--leaderboard .cc-ad-zone__inner { max-width: 970px; }

/* Home mid / before events */
.cc-ad--home-mid {
  padding: var(--sp-xl) 0;
  background: var(--cc-cream);
  border-top: 1px solid #d8d2c6;
  border-bottom: 1px solid #d8d2c6;
}
.cc-ad--home-mid .cc-ad-zone__inner { max-width: 970px; }

/* Sidebar ad */
.cc-ad--sidebar {
  margin-bottom: 20px;
}
.cc-ad--sidebar .cc-ad-zone__inner { max-width: 300px; }

/* Inline article */
.cc-ad--article {
  margin: 28px 0;
  padding: 20px;
  background: var(--cc-cream);
  border-radius: var(--r-md);
  border: 1px solid #ddd8ce;
}
.cc-ad--article .cc-ad-zone__inner { max-width: 336px; }

/* Footer banner */
.cc-ad--footer-banner {
  background: var(--cc-black-mid);
  border-top: 1px solid var(--cc-charcoal);
  padding: 16px 0;
}
.cc-ad--footer-banner .cc-ad-zone__inner { max-width: 970px; }

/* Banner image */
.cc-ad-banner__img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-sm);
  display: inline-block;
}
.cc-ad-banner__link { display: inline-block; line-height: 0; }
.cc-ad-banner__link:hover { opacity: .92; }

/* AdSense wrapper */
.cc-ad-adsense { display: inline-block; }

/* ── PLACEHOLDER — solo admins ───────────────────────────────────────────── */
.cc-ad-placeholder {
  width: 100%;
  padding: 16px;
  background: repeating-linear-gradient(
    45deg,
    rgba(232,0,176,.04) 0px,
    rgba(232,0,176,.04) 10px,
    transparent 10px,
    transparent 20px
  );
  border: 2px dashed rgba(232,0,176,.3);
  border-radius: var(--r-md);
  margin: 12px 0;
}
.cc-ad-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
  text-align: center;
}
.cc-ad-placeholder__icon  { font-size: 24px; }
.cc-ad-placeholder__label { font-size: 13px; font-weight: 600; color: var(--cc-mid); }
.cc-ad-placeholder__size  { font-size: 11px; color: var(--cc-light); background: var(--cc-cream); padding: 2px 10px; border-radius: 99px; }
.cc-ad-placeholder__link  {
  font-size: 12px; color: var(--cc-accent); font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  margin-top: 6px;
}
.cc-ad-placeholder__link:hover { text-decoration: underline; }

/* Hide placeholder from public completely */
body:not(.logged-in) .cc-ad-placeholder { display: none !important; }


/* ════════════════════════════════════════════════════════════════════════════
   LOGO — SINGLE DEFINITIVE RULE
   ════════════════════════════════════════════════════════════════════════════ */
.cc-header__logo img,
.cc-header__logo img.custom-logo,
.cc-header__logo .custom-logo-link img,
.cc-header__logo a > img,
.cc-header .custom-logo {
  height: 34px !important;
  width: auto !important;
  max-width: 200px !important;
  max-height: 34px !important;
  min-height: unset !important;
  object-fit: contain !important;
  display: block !important;
  flex-shrink: 0;
}
.cc-header__logo,
.cc-header__logo .custom-logo-link,
.cc-header__logo a {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 0 !important;
  height: auto;
  overflow: visible;
}
@media (max-width: 768px) {
  .cc-header__logo img,
  .cc-header__logo img.custom-logo,
  .cc-header__logo .custom-logo-link img,
  .cc-header__logo a > img,
  .cc-header .custom-logo {
    height: 26px !important;
    max-height: 26px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEWSLETTER FORM — cc_newsletter_form() nativo
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-newsletter-form__row {
  display: flex;
  gap: 0;
  background: var(--cc-charcoal);
  border: 1px solid var(--cc-mid);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 10px;
}
.cc-newsletter-form__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--cc-white);
  font-family: var(--ff-body);
  font-size: 14px;
  padding: 13px 18px;
}
.cc-newsletter-form__input::placeholder { color: var(--cc-mid); }
.cc-newsletter-form__row .cc-btn        { border-radius: 0; border: none; flex-shrink: 0; }
.cc-newsletter-form__disclaimer         { font-size: 12px; color: var(--cc-mid); margin: 0; }
.cc-newsletter__powered {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--cc-mid);
  margin-top: 12px;
}

/* Sidebar context */
.cc-widget--newsletter .cc-newsletter-form__row {
  background: var(--cc-black-mid);
  border-color: var(--cc-charcoal);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-hero--slider { cursor: default; }

.cc-slides-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* All slides — base positioning */
.cc-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* INACTIVE slides hidden — CSS-only, no JS needed */
.cc-slide:not(.cc-slide--active) {
  display: none !important;
}

/* ACTIVE slide visible */
.cc-slide.cc-slide--active {
  display: block !important;
  pointer-events: auto;
}

/* Controls */
.cc-slider-controls {
  position: absolute;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cc-slider-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--cc-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--tr-fast);
}
.cc-slider-btn:hover { background: var(--cc-accent); border-color: var(--cc-accent); }

.cc-slider-dots { display: flex; gap: 8px; align-items: center; }
.cc-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none; cursor: pointer;
  transition: all var(--tr-fast);
  padding: 0;
}
.cc-slider-dot--active {
  background: var(--cc-accent);
  width: 24px; border-radius: 4px;
}

/* Progress bar */
.cc-slider-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.1);
  z-index: 10;
}
.cc-slider-progress__bar {
  height: 100%;
  background: var(--cc-accent);
  width: 0%;
  transition: width linear;
}

/* Slide badge */
.cc-slide__badge { margin-bottom: 10px; position: relative; z-index: 3; }

/* ═══════════════════════════════════════════════════════════════════════════
   MÚSICA / LANZAMIENTOS
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-music-embed-main {
  margin-bottom: var(--sp-xl);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cc-embed--spotify iframe,
.cc-embed--soundcloud iframe { border-radius: var(--r-md); }
.cc-embed--youtube { border-radius: var(--r-md); overflow: hidden; }

.cc-plataformas {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.cc-platform-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  transition: all var(--tr-fast);
  border: 1.5px solid transparent;
}
.cc-platform-btn__icon { font-size: 16px; }
.cc-platform-btn--spotify    { background: #1db954; color: #fff; }
.cc-platform-btn--spotify:hover { background: #17a349; }
.cc-platform-btn--youtube    { background: #ff0000; color: #fff; }
.cc-platform-btn--youtube:hover { background: #cc0000; }
.cc-platform-btn--soundcloud { background: #ff5500; color: #fff; }
.cc-platform-btn--soundcloud:hover { background: #e04a00; }
.cc-platform-btn--beatport   { background: #01ff95; color: #000; }
.cc-platform-btn--beatport:hover { background: #00e085; }
.cc-platform-btn--bandcamp   { background: #1da0c3; color: #fff; }
.cc-platform-btn--bandcamp:hover { background: #1890b0; }
.cc-platform-btn--apple      { background: #fc3c44; color: #fff; }
.cc-platform-btn--apple:hover { background: #e0353c; }

.cc-plataformas-section { margin-top: var(--sp-xl); }
.cc-plataformas-section__title {
  font-family: var(--ff-display);
  font-size: 22px; letter-spacing: 1px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--cc-black);
  padding-bottom: 8px;
}
.cc-music-description { margin-bottom: var(--sp-xl); }

/* Card música */
.cc-card--musica .cc-card__origin { font-size: 12px; color: var(--cc-light); margin: 2px 0; text-align: left; }

/* ═══════════════════════════════════════════════════════════════════════════
   FORMULARIO PUBLICA TU EVENTO — frontend submission
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-submit-wrap { max-width: 760px; }

.cc-submit-intro {
  background: var(--cc-cream);
  border-left: 3px solid var(--cc-accent);
  padding: 14px 18px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 32px;
  font-size: 14px; color: var(--cc-mid);
}

/* Sections */
.cc-submit-section {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: var(--r-md);
  padding: 24px;
  margin-bottom: 20px;
}
.cc-submit-section--legal { background: var(--cc-cream); }

.cc-submit-section__title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-display);
  font-size: 18px; letter-spacing: 1px;
  margin: 0 0 20px;
  color: var(--cc-black);
}
.cc-submit-section__num {
  width: 28px; height: 28px;
  background: var(--cc-accent); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-body);
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}

/* Grid */
.cc-submit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cc-submit-field { display: flex; flex-direction: column; gap: 5px; }
.cc-submit-field--full { grid-column: 1 / -1; }

.cc-submit-field label {
  font-size: 12px; font-weight: 700;
  color: var(--cc-mid);
  text-transform: uppercase; letter-spacing: .5px;
}
.cc-submit-field label small {
  font-weight: 400; text-transform: none; letter-spacing: 0;
  color: var(--cc-light); font-size: 11px;
}
.cc-req { color: var(--cc-accent); }

.cc-submit-field input[type="text"],
.cc-submit-field input[type="email"],
.cc-submit-field input[type="url"],
.cc-submit-field input[type="tel"],
.cc-submit-field input[type="date"],
.cc-submit-field input[type="time"],
.cc-submit-field input[type="number"],
.cc-submit-field select,
.cc-submit-field textarea {
  padding: 11px 14px;
  border: 1.5px solid #d0cbc2;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--cc-black);
  background: var(--cc-white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%; box-sizing: border-box;
}
.cc-submit-field input:focus,
.cc-submit-field select:focus,
.cc-submit-field textarea:focus {
  border-color: var(--cc-accent);
  box-shadow: 0 0 0 3px rgba(232,0,176,.1);
}
.cc-submit-field input:invalid:not(:placeholder-shown) { border-color: var(--cc-red); }
.cc-submit-field textarea { resize: vertical; min-height: 100px; }
.cc-submit-field select { cursor: pointer; }

.cc-submit-hint { font-size: 11px; color: var(--cc-light); margin: 0; }
.cc-submit-counter { font-size: 11px; color: #999; text-align: right; }

/* Checkbox */
.cc-submit-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--cc-mid);
  cursor: pointer; margin-bottom: 10px; line-height: 1.5;
}
.cc-submit-checkbox input { width: auto; margin-top: 3px; accent-color: var(--cc-accent); flex-shrink: 0; }
.cc-submit-checkbox:last-child { margin-bottom: 0; }

/* Actions */
.cc-submit-actions { margin-top: 8px; }
.cc-btn--lg { padding: 16px 40px; font-size: 15px; width: 100%; justify-content: center; gap: 10px; }
.cc-submit-legal-note { font-size: 11px; color: var(--cc-light); margin-top: 12px; line-height: 1.5; }

/* Success / Error states */
.cc-submit-success {
  text-align: center;
  padding: 60px 40px;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: var(--r-lg);
}
.cc-submit-success__icon { font-size: 56px; margin-bottom: 16px; }
.cc-submit-success h2 { font-family: var(--ff-display); font-size: 32px; letter-spacing: 2px; margin: 0 0 12px; }
.cc-submit-success p { color: var(--cc-mid); margin-bottom: 8px; }
.cc-submit-success .cc-btn { margin-top: 20px; display: inline-flex; }

.cc-submit-error {
  background: rgba(220,38,38,.08);
  border: 1px solid var(--cc-red);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: 13px; color: var(--cc-red);
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 640px) {
  .cc-submit-grid { grid-template-columns: 1fr; }
  .cc-submit-field--full { grid-column: 1; }
  .cc-submit-section { padding: 16px; }
}

/* Aside social links */
.cc-aside-social { display:flex; flex-direction:column; gap:6px; }
.cc-aside-social__link {
  display:block; padding:9px 14px;
  background: var(--cc-cream); color: var(--cc-black) !important;
  border-radius:var(--r-sm); font-size:13px; font-weight:600;
  text-decoration:none; transition: background var(--tr-fast);
}
.cc-aside-social__link:hover { background: var(--cc-accent); color:#fff !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   MAP EMBED
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-map-embed {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--cc-cream);
  margin-bottom: 12px;
}
.cc-map-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}
.cc-map-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--cc-mid);
  margin: 0;
  flex-wrap: wrap;
}
.cc-map-address svg { flex-shrink: 0; color: var(--cc-accent); }
.cc-map-link {
  color: var(--cc-accent);
  font-weight: 600;
  font-size: 12px;
  margin-left: 4px;
}
.cc-map-link:hover { text-decoration: underline; }
.cc-single-map-section { margin-bottom: var(--sp-xl); }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE NAV — brand text (no duplicate logo)
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-mobile-nav__brand {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--cc-white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOCIAL LINKS — proper icon sizing in nav + footer
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--cc-accent);   /* magenta border */
  color: var(--cc-accent);               /* magenta icon */
  background: transparent;
  transition: all .2s ease;
  flex-shrink: 0;
}
.cc-social-link svg { display: block; width: 16px; height: 16px; }
.cc-social-link:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  color: rgba(255,255,255,.7);           /* grey/white on hover */
}

/* Footer social */
.cc-footer__social { display: flex; flex-wrap: wrap; gap: 8px; }
.cc-footer__social .cc-social-link { width: 38px; height: 38px; }

/* Mobile nav social */
.cc-mobile-nav__social .cc-social-link { width: 42px; height: 42px; }
.cc-mobile-nav__social .cc-social-link svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════════════════
   ASIDE BOX — outline button on dark bg fix
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-aside-box--cta .cc-btn--outline {
  color: rgba(255,255,255,.8) !important;
  border-color: rgba(255,255,255,.25) !important;
}
.cc-aside-box--cta .cc-btn--outline:hover {
  color: var(--cc-accent) !important;
  border-color: var(--cc-accent) !important;
  background: rgba(232,0,176,.08) !important;
}

/* Aside social links — visible text buttons */
.cc-aside-social { display: flex; flex-direction: column; gap: 6px; }
.cc-aside-social__link {
  display: flex; align-items: center;
  padding: 9px 14px;
  background: var(--cc-cream);
  color: var(--cc-black) !important;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: all var(--tr-fast);
  border: 1px solid transparent;
}
.cc-aside-social__link:hover { background: var(--cc-accent); color: #fff !important; }
.cc-aside-social__link--web:hover  { background: #0066cc; }
.cc-aside-social__link--ig:hover   { background: #e1306c; }

/* ── MOBILE NAV brand (no duplicate logo) ───────────────────────────────── */
.cc-mobile-nav__brand {
  display: flex; align-items: center;
  gap: 0;
  text-decoration: none;
}
.cc-mobile-nav__brand .cc-logo-text__main,
.cc-mobile-nav__brand .cc-logo-text__accent {
  font-size: 20px;
  letter-spacing: 1.5px;
}

/* ── SOCIAL LINKS — unified size + visible icons ────────────────────────── */
.cc-footer__social,
.cc-mobile-nav__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cc-footer__social .cc-social-link,
.cc-mobile-nav__social .cc-social-link {
  width: 38px; height: 38px;
}

/* ── ASIDE ROW val — ensure links always visible ────────────────────────── */
.cc-aside-row__val,
.cc-aside-row__val a {
  word-break: break-word;
}
.cc-aside-row__val a {
  color: var(--cc-accent);
  font-weight: 600;
}
.cc-aside-row__val a:hover { text-decoration: underline; }

/* ── CHIPS on light backgrounds (facts grid, body sections) ─────────────── */
.cc-single-facts .cc-chip,
.cc-single-body .cc-chip,
.cc-archive-wrap .cc-chip,
.cc-single-aside .cc-chip {
  background: var(--cc-cream);
  color: var(--cc-mid);
  backdrop-filter: none;
}
.cc-single-facts .cc-chip a,
.cc-single-body  .cc-chip a { color: var(--cc-accent); }

/* ── HERO TITLE — noticias/posts usan fuente más pequeña ─────────────────── */
.cc-hero__title--post {
  font-size: clamp(26px, 3.5vw, 48px) !important;
  line-height: 1.1 !important;
  letter-spacing: .5px !important;
  max-width: 680px;
}

/* ── SINGLE HERO — título de noticia también más contenido ──────────────── */
.cc-single-hero--post .cc-single-hero__title {
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.05;
}

/* Tablet — hide aside panel to prevent overflow */
@media (max-width: 1100px) {
  .cc-hero__content { grid-template-columns: 1fr; }
  .cc-hero__aside   { display: none; }
}

/* Mobile — slider height adapts to content */
@media (max-width: 768px) {
  /* Mobile: slider flows with content height */
  .cc-hero--slider {
    min-height: 0;
    height: auto;
    overflow: hidden;
  }
  .cc-hero--slider .cc-slides-wrap {
    position: relative !important;
    top: auto; left: auto; right: auto; bottom: auto;
    width: 100%; height: auto;
    display: block;
  }
  /* Mobile slides: relative flow, hidden by display:none */
  .cc-hero--slider .cc-slide {
    position: relative !important;
    top: auto; left: auto; right: auto; bottom: auto;
    width: 100%; height: auto;
    min-height: 480px;
    display: none; /* hidden — .cc-slide--active overrides */
    pointer-events: none;
  }
  .cc-hero--slider .cc-slide.cc-slide--active {
    display: block !important;
    pointer-events: auto;
  }
  .cc-hero--slider .cc-slide .cc-hero__bg {
    position: absolute;
    inset: 0; height: 100%;
  }
  .cc-hero--slider .cc-hero__content {
    padding-top: var(--sp-lg);
    padding-bottom: 70px;
    min-height: 480px;
    align-items: flex-end;
  }
}



/* ═══════════════════════════════════════════════════════════════════════════
   ARTISTAS A-Z — archive page
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-artistas-hero {
  background: var(--cc-black);
  padding: calc(var(--cc-nav-h) + var(--sp-xl)) 0 var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cc-artistas-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 96px);
  color: var(--cc-white);
  letter-spacing: 3px;
  line-height: .9;
  margin: 8px 0 12px;
}
.cc-artistas-hero__desc {
  color: var(--cc-light);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cc-artistas-hero__count {
  background: var(--cc-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .5px;
}

/* Filters bar */
.cc-artistas-filters {
  background: var(--cc-black);
  padding: var(--sp-md) 0;
  position: sticky;
  top: var(--cc-nav-h);   /* sits exactly below the fixed nav */
  z-index: 80;            /* below nav (z-index 100) so it slides under it */
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-bar .cc-artistas-filters {
  top: calc(var(--cc-nav-h) + 32px); /* compensate WP admin bar */
}
.cc-artistas-filters__row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.cc-artistas-filters__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  flex: 1;
  min-width: 180px;
  transition: border-color .2s;
}
.cc-artistas-filters__search:focus-within { border-color: var(--cc-accent); }
.cc-artistas-filters__search svg { color: var(--cc-light); flex-shrink: 0; }
.cc-artistas-filters__search input {
  background: none;
  border: none;
  outline: none;
  color: var(--cc-white);
  font-size: 14px;
  width: 100%;
  font-family: var(--ff-body);
}
.cc-artistas-filters__search input::placeholder { color: rgba(255,255,255,.3); }
.cc-artistas-filters__select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  color: var(--cc-white);
  font-size: 13px;
  padding: 9px 14px;
  cursor: pointer;
  outline: none;
}
.cc-artistas-filters__select:focus { border-color: var(--cc-accent); }
.cc-artistas-filters__clear {
  background: rgba(232,0,176,.15);
  border: 1px solid var(--cc-accent);
  color: var(--cc-accent);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all .15s;
}
.cc-artistas-filters__clear:hover { background: var(--cc-accent); color: #fff; }

/* A-Z index */
.cc-az-index {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.cc-az-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  letter-spacing: .5px;
}
.cc-az-btn:hover:not(:disabled) {
  background: rgba(232,0,176,.2);
  border-color: var(--cc-accent);
  color: var(--cc-accent);
}
.cc-az-btn--active {
  background: var(--cc-accent) !important;
  border-color: var(--cc-accent) !important;
  color: #fff !important;
}
.cc-az-btn--empty { opacity: .25; cursor: default; }

/* Results count */
.cc-artistas-wrap { padding-top: var(--sp-xl); padding-bottom: var(--sp-3xl); }
.cc-artistas-results {
  font-size: 13px;
  color: var(--cc-light);
  margin-bottom: var(--sp-lg);
}
.cc-artistas-results span { font-weight: 700; color: var(--cc-white); }

/* Artist grid — 5 cols desktop, 3 tablet, 2 mobile */
.cc-artistas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .cc-artistas-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px)  { .cc-artistas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px)  { .cc-artistas-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* Artist card — circular photo */
.cc-artist-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  display: flex;
  flex-direction: column;
}
/* In cream/light sections, darken the card */
.cc-section--cream .cc-artist-card,
.cc-section--light .cc-artist-card {
  background: #fff;
  border-color: rgba(0,0,0,.08);
}
.cc-section--cream .cc-artist-card__name,
.cc-section--light .cc-artist-card__name { color: #111; }
.cc-section--cream .cc-artist-card__origin,
.cc-section--light .cc-artist-card__origin { color: #666; }

/* Archive page — cream bg, needs dark text on white cards */
.cc-artistas-wrap .cc-artist-card {
  background: #fff;
  border-color: rgba(0,0,0,.08);
}
.cc-artistas-wrap .cc-artist-card__name    { color: #111; }
.cc-artistas-wrap .cc-artist-card__origin  { color: #666; }
.cc-artistas-wrap .cc-artist-card__link-btn {
  border-color: rgba(0,0,0,.15);
  color: #666;
}
.cc-artistas-wrap .cc-artist-card__link-btn:hover {
  border-color: var(--cc-accent);
  color: var(--cc-accent);
}
.cc-artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  border-color: var(--cc-accent);
}
.cc-artist-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px 12px;
  text-decoration: none;
  flex: 1;
}
.cc-artist-card__photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.08);
  transition: border-color .2s;
}
.cc-artist-card:hover .cc-artist-card__photo { border-color: var(--cc-accent); }
.cc-artist-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cc-artist-card__initial {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 32px;
  color: rgba(255,255,255,.8);
  letter-spacing: 0;
}
.cc-artist-card__info { text-align: center; width: 100%; }
.cc-artist-card__name {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--cc-white);
  margin: 0 0 4px;
  line-height: 1.3;
}
.cc-artist-card__genre {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--cc-accent);
  margin-bottom: 4px;
}
.cc-artist-card__origin {
  font-size: 12px;
  color: var(--cc-light);
  margin: 0;
}
.cc-artist-card__links {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px 12px;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: auto;
}
.cc-artist-card__link-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}
.cc-artist-card__link-btn:hover { border-color: var(--cc-accent); color: var(--cc-accent); }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE NAV — icon + description style (Festivals United inspired)
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-mobile-nav__list--rich { list-style: none; padding: 0; margin: 0; }
.cc-mobile-nav__list--rich li { border-bottom: 1px solid rgba(255,255,255,.06); }
.cc-mobile-nav__list--rich li:last-child { border-bottom: none; }
.cc-mobile-nav__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  text-decoration: none;
  color: var(--cc-white);
  transition: color .15s;
}
.cc-mobile-nav__item:hover { color: var(--cc-accent); }
.cc-mobile-nav__icon {
  width: 40px; height: 40px;
  background: rgba(232,0,176,.12);
  border: 1px solid rgba(232,0,176,.25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cc-accent);
}
.cc-mobile-nav__icon svg { width: 18px; height: 18px; }
.cc-mobile-nav__item-body { display: flex; flex-direction: column; gap: 2px; }
.cc-mobile-nav__item-title {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
}
.cc-mobile-nav__item-desc {
  font-size: 12px;
  color: var(--cc-light);
  font-weight: 300;
}
.cc-mobile-nav__item:hover .cc-mobile-nav__item-desc { color: rgba(232,0,176,.7); }

/* ── HOTEL AFFILIATE BUTTON ──────────────────────────────────────────────── */
.cc-aside-hotel-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  margin-top: 10px;
  text-decoration: none;
  transition: all .2s ease;
  color: var(--cc-white);
}
.cc-aside-hotel-btn:hover {
  border-color: var(--cc-gold);
  background: rgba(200,164,74,.08);
  color: var(--cc-white);
}
.cc-aside-hotel-btn__icon {
  width: 38px; height: 38px;
  background: rgba(200,164,74,.15);
  border: 1px solid rgba(200,164,74,.3);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cc-gold);
}
.cc-aside-hotel-btn__text { flex: 1; }
.cc-aside-hotel-btn__title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--cc-white);
}
.cc-aside-hotel-btn__sub {
  display: block;
  font-size: 11px;
  color: var(--cc-light);
  margin-top: 2px;
}
.cc-aside-hotel-btn__disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,.25);
  text-align: center;
  margin: 6px 0 0;
}
/* Hero hotel btn */
.cc-btn--hotel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── EVENT COUNTDOWN BADGE ───────────────────────────────────────────────── */
.cc-card__countdown {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: .3px;
  border: 1px solid rgba(255,255,255,.15);
}
/* Urgent — within 7 days */
.cc-card__countdown--urgent {
  background: rgba(232,0,176,.85);
  border-color: rgba(232,0,176,.4);
}

/* Artista archive page — dark background for the grid area */
.post-type-archive-artista body,
body.post-type-archive-artista {
  background-color: var(--cc-black);
}
.post-type-archive-artista .cc-artistas-wrap {
  background-color: var(--cc-black);
}

/* Artista archive — dark body area for the grid */
.cc-artistas-body {
  background: var(--cc-black);
  min-height: 400px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE ARTISTA — hero + tabs redesign
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────────────────── */
.cc-artista-hero {
  position: relative;
  margin-top: var(--cc-nav-h);
  background: var(--cc-black);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.cc-artista-hero__bg {
  position: absolute;
  inset: 0;
}
.cc-artista-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .35;
}
.cc-artista-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,10,1) 0%, rgba(12,12,10,.75) 50%, rgba(12,12,10,.45) 100%);
}
.cc-artista-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  width: 100%;
}
.cc-artista-hero__body {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  margin-top: var(--sp-lg);
}
.cc-artista-hero__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--cc-accent);
  box-shadow: 0 0 0 4px rgba(232,0,176,.2);
}
.cc-artista-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cc-artista-hero__initial {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 48px;
  color: rgba(255,255,255,.8);
}
.cc-artista-hero__info { flex: 1; min-width: 0; }
.cc-artista-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6vw, 72px);
  color: #ffffff;
  letter-spacing: 2px;
  line-height: .95;
  margin: 10px 0 10px;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.cc-artista-hero__location {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cc-artista-hero__label {
  font-size: 12px;
  background: rgba(255,255,255,.1);
  padding: 2px 8px;
  border-radius: 99px;
  color: rgba(255,255,255,.5);
}
.cc-artista-hero__socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cc-artista-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}
.cc-artista-social-btn:hover {
  border-color: var(--cc-accent);
  color: var(--cc-accent);
  background: rgba(232,0,176,.1);
}
.cc-artista-cta { margin-left: 8px; }

/* ── Tabs bar ──────────────────────────────────────────────────────────── */
.cc-artista-tabs-bar {
  background: var(--cc-black);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: var(--cc-nav-h);
  z-index: 80;
  transition: box-shadow .2s;
}
.cc-artista-tabs-bar--sticky {
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.admin-bar .cc-artista-tabs-bar { top: calc(var(--cc-nav-h) + 32px); }
.cc-artista-tabs {
  display: flex;
  gap: 0;
}
.cc-artista-tab {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.4);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
}
.cc-artista-tab:hover { color: rgba(255,255,255,.8); }
.cc-artista-tab--active {
  color: var(--cc-white);
  border-bottom-color: var(--cc-accent);
}
.cc-artista-tab__badge {
  background: var(--cc-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 99px;
  line-height: 1.4;
}

/* ── Tab panels ────────────────────────────────────────────────────────── */
.cc-artista-content {
  padding-top: var(--sp-2xl);
  padding-bottom: var(--sp-3xl);
  background: var(--cc-cream);
  min-height: 400px;
}
.cc-artista-panel { display: none; }
.cc-artista-panel--active { display: block; }

/* Bio panel — two columns */
.cc-artista-panel__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.cc-artista-bio {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.cc-artista-bio p { margin-bottom: 16px; }
.cc-artista-bio p:last-child { margin-bottom: 0; }

/* Aside */
.cc-artista-aside__card {
  background: #fff;
  border: 1px solid #e5e2dc;
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 16px;
}
.cc-artista-aside__title {
  font-family: var(--ff-display);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #333;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0ede8;
}
.cc-artista-aside__list { margin: 0; }
.cc-artista-aside__row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #f5f3ef;
  font-size: 13px;
  gap: 12px;
}
.cc-artista-aside__row:last-child { border: none; }
.cc-artista-aside__row dt { color: #888; font-weight: 400; flex-shrink: 0; }
.cc-artista-aside__row dd { color: #333; font-weight: 600; text-align: right; margin: 0; }
.cc-artista-aside__row dd a { color: var(--cc-accent); text-decoration: none; }
.cc-artista-aside__links { display: flex; flex-direction: column; gap: 6px; }
.cc-artista-aside__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #f9f7f4;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all .15s;
}
.cc-artista-aside__link:hover {
  background: #f0ede8;
  color: var(--cc-accent);
}

/* Empty state */
.cc-artista-empty {
  text-align: center;
  padding: 60px 20px;
  color: #888;
}
.cc-artista-empty__icon { font-size: 48px; margin-bottom: 16px; }
.cc-artista-empty p { font-size: 15px; margin-bottom: 20px; }

/* ── Mobile responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cc-artista-hero__body { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cc-artista-hero__photo { width: 90px; height: 90px; }
  .cc-artista-hero__title { font-size: clamp(28px, 8vw, 48px); }
  .cc-artista-panel__inner { grid-template-columns: 1fr; gap: 24px; }
  .cc-artista-aside { order: -1; }
  .cc-artista-tab { padding: 14px 12px; font-size: 11px; letter-spacing: .5px; }
  .cc-grid--3 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ARTISTAS MENCIONADOS — grid al final del artículo
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-single-artists {
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-xl);
  border-top: 2px solid var(--cc-accent);
}
.cc-single-artists__title {
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cc-black);
  margin: 0 0 var(--sp-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cc-single-artists__title svg { color: var(--cc-accent); }

.cc-single-artists__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}

/* Artist card — circular, compact */
.cc-single-artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 16px 8px;
  border-radius: var(--r-md);
  border: 1px solid #e5e2dc;
  background: #fff;
  transition: all .2s ease;
  gap: 10px;
}
.cc-single-artist-card:hover {
  border-color: var(--cc-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.cc-single-artist-card__photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(232,0,176,.2);
  transition: border-color .2s;
}
.cc-single-artist-card:hover .cc-single-artist-card__photo {
  border-color: var(--cc-accent);
}
.cc-single-artist-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cc-single-artist-card__initial {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 28px;
  color: rgba(255,255,255,.8);
}
.cc-single-artist-card__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  width: 100%;
}
.cc-single-artist-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--cc-black);
  line-height: 1.2;
  display: block;
}
.cc-single-artist-card__genre {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--cc-accent);
  display: block;
}
.cc-single-artist-card__origin {
  font-size: 11px;
  color: #888;
  display: block;
}

@media (max-width: 540px) {
  .cc-single-artists__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .cc-single-artist-card { padding: 12px 6px; }
  .cc-single-artist-card__photo { width: 56px; height: 56px; }
}

/* ── LOCAL HERO — rounded square instead of circle ────────────────────── */
.cc-local-hero__photo {
  border-radius: var(--r-md) !important;
}

/* ── SEO HUB PAGES ──────────────────────────────────────────────────────── */
.cc-archive-hero--hub {
  background: var(--cc-black);
  padding: calc(var(--cc-nav-h) + var(--sp-xl)) 0 var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cc-archive-hero__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.cc-archive-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6vw, 80px);
  color: var(--cc-white);
  letter-spacing: 3px;
  line-height: .9;
  margin: 10px 0 12px;
  text-transform: uppercase;
}
.cc-archive-hero__desc {
  color: var(--cc-light);
  font-size: 15px;
  max-width: 580px;
  line-height: 1.6;
  margin: 0;
}

/* Internal linking grid */
.cc-hub-related {
  margin-top: var(--sp-3xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid #e5e2dc;
}
.cc-hub-related__title {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cc-black);
  margin: 0 0 var(--sp-md);
}
.cc-hub-related__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cc-hub-related__link {
  display: inline-block;
  padding: 8px 16px;
  background: #f9f7f4;
  border: 1px solid #e5e2dc;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all .15s;
}
.cc-hub-related__link:hover {
  background: var(--cc-accent);
  border-color: var(--cc-accent);
  color: #fff;
}
