/* =========================================================
   ARTIST PAGE (song_artist) — modern premium style
========================================================= */

/* page container spacing */
.taxonomy-song_artist #site-content .container{
  padding-top: 18px;
  padding-bottom: 34px;
  max-width: 1140px;
}

/* breadcrumbs */
.taxonomy-song_artist #breadcrumbs{
  margin: 0 0 10px;
  opacity: .75;
}

/* ===== HERO ===== */
.mp3-artist-hero{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: start;

  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(2,6,23,.06);
  padding: 16px;
  margin: 12px 0 18px;
}

@media (max-width: 900px){
  .mp3-artist-hero{ grid-template-columns: 1fr; }
}

.mp3-artist-hero__cover{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(2,6,23,.06), rgba(2,6,23,.02));
  border: 1px solid rgba(15,23,42,.10);
  aspect-ratio: 1 / 1;
}

.mp3-artist-hero__cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .25s ease;
}

.mp3-artist-hero:hover .mp3-artist-hero__cover img{
  transform: scale(1.03);
}

.mp3-artist-hero__fallback{
  width: 100%;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 72px;
  font-weight: 900;
  color: rgba(2,6,23,.55);
}

/* title */
.mp3-artist-hero__title{
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.4px;
  font-weight: 900;
  margin: 0;
}

/* bio typography */
.mp3-artist-hero__bio{
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(2,6,23,.78);
}

.mp3-artist-hero__bio p{ margin: 0 0 10px; }
.mp3-artist-hero__bio p:last-child{ margin-bottom: 0; }

.mp3-artist-hero__bio h2{
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin: 18px 0 10px;
  padding-left: 12px;
  border-left: 4px solid rgba(231,55,55,.95);
}

.mp3-artist-hero__bio ul{
  margin: 8px 0 12px;
  padding-left: 18px;
}
.mp3-artist-hero__bio li{
  margin: 6px 0;
  color: rgba(2,6,23,.78);
}

/* empty bio */
.mp3-artist-hero__bio--empty{
  background: rgba(2,6,23,.03);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 12px 14px;
  color: rgba(2,6,23,.70);
}

/* ===== SECTION TITLES ===== */
.taxonomy-song_artist h2{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin: 18px 0 12px;
}

/* ===== SONGS LIST =====
   loop-post.php у тебя уже в “карточках”, но добавим чуть воздуха */
.taxonomy-song_artist .loop-post,
.taxonomy-song_artist .post-loop,
.taxonomy-song_artist .song-post-card{
  border-radius: 16px;
}

/* paginate */
.taxonomy-song_artist .pagination,
.taxonomy-song_artist .page-numbers{
  margin-top: 14px;
}
.taxonomy-song_artist .page-numbers{
  display:inline-flex;
  gap:8px;
  flex-wrap:wrap;
}
.taxonomy-song_artist .page-numbers a,
.taxonomy-song_artist .page-numbers span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 40px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(2,6,23,.02);
  text-decoration:none;
  color: rgba(2,6,23,.82);
  font-weight: 700;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.taxonomy-song_artist .page-numbers a:hover{
  background: rgba(2,6,23,.05);
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
  transform: translateY(-1px);
}
.taxonomy-song_artist .page-numbers .current{
  background: rgba(231,55,55,.10);
  border-color: rgba(231,55,55,.30);
  color: rgba(231,55,55,.95);
}

/* ===== SIMILAR ARTISTS GRID ===== */
.artists-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 1100px){
  .artists-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 800px){
  .artists-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .artists-grid{ grid-template-columns: 1fr; }
}

/* artist card */
.artist-card{
  display:flex;
  gap: 12px;
  align-items:center;

  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 12px;
  text-decoration:none;
  color: inherit;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.artist-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(2,6,23,.10);
  border-color: rgba(15,23,42,.14);
}

.artist-card__img{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow:hidden;
  flex: 0 0 56px;
  background: linear-gradient(135deg, rgba(2,6,23,.06), rgba(2,6,23,.02));
  border: 1px solid rgba(15,23,42,.10);
}

.artist-card__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.artist-card__ph{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 20px;
  color: rgba(2,6,23,.60);
}

.artist-card__name{
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.artist-card__desc{
  margin-top: 2px;
  font-size: 12px;
  color: rgba(2,6,23,.70);
}
