/* ── artiste.css ─────────────────────────────────────── */

/* ── Hero Banner ─────────────────────────────────────── */
.artist-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.artist-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111108 50%, #0a0a0a 100%);
  z-index: 0;
}

.artist-hero-img {
  position: absolute;
  inset: 0;
  background-image: var(--artist-photo, none);
  background-size: cover;
  background-position: center top;
  z-index: 1;
  filter: grayscale(30%) contrast(1.05);
}

.artist-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.05) 35%,
    rgba(10,10,10,0.7)  70%,
    rgba(10,10,10,1)   100%
  );
  z-index: 2;
}
.artist-hero::before,
.artist-hero::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border-color: rgba(200,184,154,0.35);
  border-style: solid;
  z-index: 5;
}
.artist-hero::before {
  top: 6rem; left: 3rem;
  border-width: 1px 0 0 1px;
}
.artist-hero::after {
  top: 6rem; right: 3rem;
  border-width: 1px 1px 0 0;
}

.artist-hero-content {
  position: relative;
  z-index: 3;
  padding: 0 3rem 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}

.artist-label {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 200;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

.artist-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.artist-genre-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.artist-genre-tag {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(240,237,232,0.12);
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s, color 0.3s;
}
.artist-genre-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.artist-hero-meta {
  text-align: right;
  flex-shrink: 0;
}

.artist-meta-stat {
  margin-bottom: 1.25rem;
}
.artist-meta-stat .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  display: block;
  line-height: 1;
}
.artist-meta-stat .stat-label {
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dim);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
}

/* ── Scroll Indicator ────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.scroll-indicator span {
  font-size: 0.45rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  font-family: 'Montserrat', sans-serif;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ── Main Content Layout ─────────────────────────────── */
.artist-body {
  position: relative;
  background: var(--black);
  z-index: 10;
}

.section {
  padding: 6rem 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.6;
  min-width: 2ch;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
}

.section-line {
  flex: 1;
  height: 1px;
  background: rgba(240,237,232,0.08);
}

/* ── Bio ─────────────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.bio-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,237,232,0.7);
  margin-bottom: 1.5rem;
}

.bio-text p:first-child {
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.65;
}

.bio-side {
  padding-top: 0.5rem;
}

.bio-detail {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(240,237,232,0.07);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.bio-detail:first-child { border-top: 1px solid rgba(240,237,232,0.07); }

.bio-detail-key {
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dim);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
}
.bio-detail-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--white);
}

/* ── Discographie ────────────────────────────────────── */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.release-card {
  position: relative;
  cursor: pointer;
  group: true;
}

.release-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #111;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
}

.release-card:hover .release-cover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.release-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.release-card:hover .release-cover-overlay { opacity: 1; }

.play-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(240,237,232,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon svg { margin-left: 3px; }

/* Geo corner decoration on cover */
.release-cover::before,
.release-cover::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-color: rgba(200,184,154,0.5);
  border-style: solid;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}
.release-card:hover .release-cover::before,
.release-card:hover .release-cover::after { opacity: 1; }
.release-cover::before { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.release-cover::after  { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

.release-type {
  font-size: 0.48rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  margin-bottom: 0.4rem;
}
.release-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.release-year {
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: var(--dim);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
}

/* ── Événements ──────────────────────────────────────── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(240,237,232,0.07);
  transition: background 0.3s;
  position: relative;
}
.event-row:first-child { border-top: 1px solid rgba(240,237,232,0.07); }

.event-row::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -1px; top: -1px;
  background: rgba(200,184,154,0.03);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.event-row:hover::after { opacity: 1; }

.event-date-block {
  text-align: center;
  padding: 0.5rem;
  border: 1px solid rgba(240,237,232,0.1);
  transition: border-color 0.3s;
}
.event-row:hover .event-date-block { border-color: rgba(200,184,154,0.4); }

.event-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
}
.event-month {
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
}

.event-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.event-info-venue {
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
}

.event-city {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  text-align: right;
}

.event-ticket-btn {
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(240,237,232,0.2);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  white-space: nowrap;
}
.event-ticket-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--black);
}
.event-ticket-btn.sold-out {
  color: var(--dim);
  border-color: rgba(240,237,232,0.08);
  pointer-events: none;
}

/* ── Presse / Quotes ─────────────────────────────────── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.press-card {
  padding: 2rem;
  border: 1px solid rgba(240,237,232,0.07);
  position: relative;
  transition: border-color 0.3s;
}
.press-card:hover { border-color: rgba(200,184,154,0.25); }

.press-card::before {
  content: '"';
  position: absolute;
  top: 1.25rem; left: 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
}

.press-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(240,237,232,0.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.press-source {
  font-size: 0.48rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
}

/* ── Séparateur géométrique ──────────────────────────── */
.geo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  opacity: 0.3;
}
.geo-divider svg { width: 40px; height: 40px; }

/* ── Section background alternée ────────────────────── */
.section-alt {
  background: rgba(200,184,154,0.02);
  border-top: 1px solid rgba(240,237,232,0.04);
  border-bottom: 1px solid rgba(240,237,232,0.04);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .bio-grid { grid-template-columns: 1fr; gap: 3rem; }
  .press-grid { grid-template-columns: 1fr; }
  .artist-hero-content { grid-template-columns: 1fr; }
  .artist-hero-meta { text-align: left; display: flex; gap: 2rem; }
  .event-row { grid-template-columns: 60px 1fr; grid-template-rows: auto auto; }
  .event-city { display: none; }
  .event-ticket-btn { grid-column: 2; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 1.5rem; }
  nav { padding: 1.5rem; }
  .artist-hero-content { padding: 0 1.5rem 3rem; }
  .artist-hero::before,
  .artist-hero::after { left: 1.5rem; right: 1.5rem; top: 5rem; }
  .discography-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ── artiste.css — layout cartes ───────────────────────── */

.artist-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.yr-section-lbl {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200,184,154,0.6);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.yr-section-lbl::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(240,237,232,0.07);
}

.yr-card {
  background: #111108;
  border: 0.5px solid rgba(240,237,232,0.08);
  border-radius: 6px;
}

/* ── Artist header card ──────────────────────────────── */
.artist-header-card {
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
}

.artist-photo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  border: 0.5px solid rgba(200,184,154,0.2);
  flex-shrink: 0;
  background: #1a1a14;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200,184,154,0.25);
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  font-family: 'Montserrat', sans-serif;
}
.artist-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.artist-header-sublabel {
  font-size: 0.48rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200,184,154,0.65);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  margin-bottom: 0.35rem;
}
.artist-header-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 0.75rem;
}
.artist-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.artist-tag {
  font-size: 0.45rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.35);
  border: 0.5px solid rgba(240,237,232,0.12);
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  transition: border-color 0.3s, color 0.3s;
}
.artist-tag:hover { border-color: rgba(200,184,154,0.4); color: rgba(200,184,154,0.8); }

/* ── Stats ───────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.stat-card { padding: 1rem 1.25rem; border-radius: 6px; text-align: center; }
.stat-card .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-card .stat-lbl {
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.3);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
}

/* ── Discographie ────────────────────────────────────── */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.release-card { border-radius: 6px; overflow: hidden; cursor: pointer; transition: border-color 0.3s; }
.release-card:hover { border-color: rgba(200,184,154,0.25); }

.release-cover {
  width: 100%; aspect-ratio: 1;
  background: #1a1a14;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.release-cover img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(25%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
}
.release-card:hover .release-cover img { transform: scale(1.06); filter: grayscale(0%); }
.release-cover-placeholder { opacity: 0.15; }
.release-cover-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.release-card:hover .release-cover-overlay { opacity: 1; }
.play-icon {
  width: 38px; height: 38px;
  border: 0.5px solid rgba(240,237,232,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.play-icon svg { margin-left: 2px; }

.release-body { padding: 0.6rem 0.75rem 0.75rem; }
.release-type {
  font-size: 0.45rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(200,184,154,0.65);
  font-family: 'Montserrat', sans-serif; font-weight: 200;
}
.release-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 300; color: var(--white);
  margin: 0.2rem 0 0.1rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.release-year {
  font-size: 0.45rem; letter-spacing: 0.15em;
  color: rgba(240,237,232,0.25);
  font-family: 'Montserrat', sans-serif;
}

/* ── Bio ─────────────────────────────────────────────── */
.bio-card {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 2.5rem;
  align-items: start;
}
.bio-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300;
  line-height: 1.85; color: rgba(240,237,232,0.6);
  margin-bottom: 0.9rem;
}
.bio-text p:first-child { font-size: 1.2rem; color: rgba(240,237,232,0.85); }

.bio-details {
  border-left: 0.5px solid rgba(240,237,232,0.08);
  padding-left: 1.5rem;
}
.bio-row { padding: 0.65rem 0; border-bottom: 0.5px solid rgba(240,237,232,0.06); }
.bio-row:first-child { border-top: 0.5px solid rgba(240,237,232,0.06); }
.bio-row-key {
  font-size: 0.45rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,237,232,0.28);
  font-family: 'Montserrat', sans-serif; font-weight: 200; margin-bottom: 0.2rem;
}
.bio-row-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; font-weight: 300; color: var(--white);
}

/* ── Événements ──────────────────────────────────────── */
.events-grid { display: flex; flex-direction: column; gap: 0.5rem; }
.event-card {
  padding: 0.9rem 1.25rem;
  display: grid;
  grid-template-columns: 52px 1fr auto auto;
  align-items: center;
  gap: 1rem;
  border-radius: 6px;
  transition: border-color 0.3s;
}
.event-card:hover { border-color: rgba(200,184,154,0.2); }

.event-date-block {
  text-align: center;
  border: 0.5px solid rgba(200,184,154,0.18);
  border-radius: 3px;
  padding: 0.35rem 0.5rem;
  transition: border-color 0.3s;
}
.event-card:hover .event-date-block { border-color: rgba(200,184,154,0.4); }
.event-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; color: var(--white);
  line-height: 1; display: block;
}
.event-month {
  font-size: 0.42rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(200,184,154,0.65);
  font-family: 'Montserrat', sans-serif;
}
.event-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 300; color: var(--white); margin-bottom: 0.15rem;
}
.event-venue {
  font-size: 0.45rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(240,237,232,0.28);
  font-family: 'Montserrat', sans-serif;
}
.event-city {
  font-size: 0.48rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,237,232,0.25);
  font-family: 'Montserrat', sans-serif;
}
.event-btn {
  font-size: 0.45rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: 0.5rem 1rem;
  border: 0.5px solid rgba(240,237,232,0.18);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif; font-weight: 300;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  white-space: nowrap;
}
.event-btn:hover { border-color: var(--accent); background: var(--accent); color: var(--black); }
.event-btn.sold-out { color: rgba(240,237,232,0.2); border-color: rgba(240,237,232,0.07); pointer-events: none; }

/* ── Presse ──────────────────────────────────────────── */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.press-card { padding: 1.25rem; border-radius: 6px; transition: border-color 0.3s; }
.press-card:hover { border-color: rgba(200,184,154,0.2); }
.press-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem; font-style: italic; font-weight: 300;
  color: rgba(240,237,232,0.55); line-height: 1.8; margin-bottom: 0.9rem;
}
.press-source {
  font-size: 0.45rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(200,184,154,0.6);
  font-family: 'Montserrat', sans-serif; font-weight: 200;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 760px) {
  .artist-page { padding: 5.5rem 1rem 3rem; }
  .discography-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .bio-details { border-left: none; border-top: 0.5px solid rgba(240,237,232,0.08); padding-left: 0; padding-top: 1rem; }
  .press-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 48px 1fr auto; }
  .event-city { display: none; }
}
@media (max-width: 500px) {
  .artist-header-name { font-size: 2rem; }
  .artist-photo-wrap { width: 70px; height: 70px; }
}

.artist-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  color: rgba(240,237,232,0.6);
  transition: all 0.3s ease;
}

.artist-social:hover {
  color: rgba(200,184,154,1);
  transform: scale(1.1);
}

.artist-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.artist-insta img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.artist-insta:hover img {
  opacity: 1;
  transform: scale(1.15);
}