/* 🎵 Wrapper کلی پست موزیک */
.song-wrapper {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🔹 تیتر متن آهنگ */
.SongTextbg {
  background: linear-gradient(180deg, #06b1a2 0%, #357771 100%);
  margin: 8px auto 4px;
  padding: 6px 12px;
  width: 85%;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/* 🔹 متن ترانه */
.lyrics-placeholder {
  width: 100%;
  padding: 4px 10px;
  font-size: 0.90rem;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

/* =========================
   بخش مشخصات آهنگ
========================= */
.song-info {
  margin: 12px auto;
  padding: 8px;
  width: 100%;
  background: linear-gradient(180deg, #fcfcfc 0%, #f9f9f9 100%);
  border-radius: 8px;
  border-right: 2px solid #06b1a2;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  direction: rtl;
}

.info-title {
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #06b1a2;
  border-bottom: 1px solid #06b1a2;
  display: inline-block;
  padding-bottom: 2px;
}

/* 🔹 گرید مشخصات (دسکتاپ) */
.info-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  row-gap: 6px;
  align-items: center;
}

.info-label,
.info-value {
  padding: 4px 6px;
  border-radius: 4px;
  background: #fff;
  font-size: 0.8rem;
}

.info-label {
  font-weight: 600;
  color: #008176;
}

.info-value {
  color: #333;
}

/* 📱 واکنش‌گرا: موبایل هم دو ستونه */
@media (max-width: 600px) {
  .info-grid {
    display: grid;
    grid-template-columns: 30% 70%; /* دو ستون جمع‌وجورتر */
    gap: 4px;
  }

  .info-label,
  .info-value {
    font-size: 0.8rem;
    padding: 0px 4px;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
  }

  .info-label {
    font-weight: 600;
    color: #008176;
    justify-content: flex-start;
    white-space: nowrap;
  }

.info-value {
  color: #333;
  text-align: center;   /* وسط‌چین متن */
  justify-content: center; /* وسط‌چین در Flex/Grid */
}
}
@media (max-width: 600px) {
  .info-value {
    text-align: center;
    justify-content: right;
	font-size: 14px;
  }
}

/* 🔹 بخش انتشار */
.song-publish {
  margin-top: 8px;
  display: inline-flex;   /* همه‌چیز در یک سطر */
  justify-content: center;
  align-items: center;
  gap: 6px;               /* فاصله بین متن و لینک */
  font-size: 0.85rem;
  color: #555;
  white-space: nowrap;    /* جلوگیری از رفتن به خط بعد */
}

.song-publish a {
  color: #06b1a2;
  font-weight: 600;
  text-decoration: none;
}

.song-publish a:hover {
  text-decoration: underline;
}