/* =========================
   REKLAMA: zawsze w flow
   ========================= */
#ad-headerteledysk{
  clear: both;
  position: relative;
  z-index: 0;
  margin: 0;
}
/* rezerwa pod reklamę (CLS), ale bez przesady */
#ad-headerteledysk ins.adsbygoogle{
  display:block !important;
  width:100% !important;
  min-height: 250px; /* desktop */
}
@media (max-width:576px){
  #ad-headerteledysk ins.adsbygoogle{
    min-height: 320px; /* mobile */
  }
}
/* gaś globalne iframe{position:absolute} dla reklam */
#ad-headerteledysk iframe{
  position: static !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}
/* odstęp między reklamą a playerem */
.ad-after-gap{
  height: 16px;
}
@media (max-width:576px){
  .ad-after-gap{
    height: 28px; /* jak nadal brakuje px, podnieś na 34-38 */
  }
}
/* =========================
   DIVIDER: "Oglądaj teledysk"
   ========================= */
.dp-video-divider{
  display:flex;
  align-items:center;
  gap:.8rem;
  margin: 22px 0 12px;
}
.dp-video-divider__line{
  flex:1;
  height:3px;
  border-radius:2px;
}
.dp-video-divider__line:first-child{
  background: linear-gradient(90deg, rgba(49,123,175,0) 0%, #317baf 100%);
}
.dp-video-divider__line:last-child{
  background: linear-gradient(90deg, #317baf 0%, rgba(49,123,175,0) 100%);
}
.dp-video-divider__label{
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .6px;
  color:#317baf;
  white-space: nowrap;
  text-transform: uppercase;
}
@media (max-width:576px){
  .dp-video-divider{
    margin: 16px 0 8px;
    gap:.6rem;
  }
  .dp-video-divider__label{
    font-size: .75rem;
  }
}
/* =========================
   YOUTUBE: zawsze pod reklamą
   ========================= */
#ytplaceholder{
  clear: both;
  position: relative;
  z-index: 1;
}
/* player: stały rozmiar, bez margin-top */
.ytbox{
  position:relative;
  overflow:hidden;
  width:100%;
  aspect-ratio: 16/9;
  background:#000;
  border-radius: 10px;
  margin: 0 0 14px 0;
}
.ytbox .ytcover{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.ytbox iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
/* guzik play */
.ytbox .play-button{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:64px;
  height:64px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:0;
  cursor:pointer;
  z-index:2;
  transition: transform .15s ease, background .15s ease;
}
.ytbox .play-button:hover{
  background: rgba(0,0,0,.72);
  transform:translate(-50%,-50%) scale(1.03);
}
.ytbox .play-button svg{
  width:26px;
  height:26px;
  fill:#fff;
  margin-left:2px;
}
@media (max-width:576px){
  .ytbox .play-button{
    width:56px;
    height:56px;
  }
  .ytbox .play-button svg{
    width:24px;
    height:24px;
  }
}
/* =========================
   LYRICS: premium
   ========================= */
.lyrics-premium{
  margin: 18px 0 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.lyrics-premium__item{
  display:block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.lyrics-premium__content{
  display:flex;
  flex-direction:column;
  gap: 2px;
}
.lyrics-premium__label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,42,58,.55);
}
.lyrics-premium__title{
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.35;
  color:#0b2a3a;
}
.lyrics-premium__body{
  font-family: inherit;
  font-size: .88rem;
  line-height: 1.28;
  color: rgba(11,42,58,.92);
}
.lyrics-premium__body p,
.lyrics-premium__body div{
  margin: 0 0 3px 0;
  padding: 0;
}
.lyrics-premium__body a{
  color:#317baf;
  text-decoration:none;
  font-weight:700;
}
.lyrics-premium__body a:hover{
  text-decoration:underline;
}
@media (max-width:576px){
  .lyrics-premium__title{ font-size: 14.5px; }
  .lyrics-premium__body{ font-size: .86rem; line-height: 1.25; }
}

/* =========================
   ENTITY BOX (ARTYSTA)
   ========================= */
.dp-entity-box{
  display:flex;
  gap:14px;
  padding:14px;
  margin:18px 0 22px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:10px;
  background:#fff;
  text-decoration:none;
  transition:box-shadow .2s ease, transform .15s ease;
}
.dp-entity-box:hover{
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  transform:translateY(-1px);
}
.dp-entity-box__img{
  flex:0 0 60px;
}
.dp-entity-box__img img{
  width:60px;
  height:60px;
  object-fit:cover;
  border-radius:8px;
  display:block;
}
.dp-entity-box__content{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.dp-entity-box__content strong{
  font-size:16px;
  font-weight:800;
  color:#0b2a3a;
  line-height:1.2;
}
.dp-entity-box__content p{
  margin:0;
  font-size:14px;
  line-height:1.35;
  color:rgba(11,42,58,.85);
}
.dp-entity-more{
  margin-top:2px;
  font-size:13px;
  font-weight:700;
  color:#317baf;
}
@media (max-width:576px){
  .dp-entity-box{
    gap:12px;
    padding:12px;
  }
  .dp-entity-box__content strong{
    font-size:15px;
  }
  .dp-entity-box__content p{
    font-size:13.5px;
  }
}
/* FIX: miniatury teledysków w boxach powiązanych */
.dp-related2__thumb {
  width: 88px;
  height: 58px;
  flex: 0 0 88px;
  overflow: hidden;
}
.dp-related2__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
/* =========================
   MINI BOXY – TELEDYSKI ZESPOŁU
========================= */
.dp-related-grid2{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 10px 0 4px;
}
.dp-related2{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid rgba(15,30,45,.08);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(15,30,45,.04);
  transition: background .12s ease, box-shadow .12s ease;
}
.dp-related2:hover{
  background: #f7fbff;
  box-shadow: 0 6px 14px rgba(15,30,45,.06);
  text-decoration: none;
}
.dp-related2__thumb{
  width: 64px;
  height: 40px;
  flex: 0 0 64px;
  border-radius: 6px;
  overflow: hidden;
  background: #e9eef4;
}
.dp-related2__thumb img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.dp-related2__ph{
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(49,123,175,.15), rgba(49,123,175,.05));
}
.dp-related2__body{
  flex: 1;
  min-width: 0;
}
.dp-related2__title{
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: #0b2a3a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 992px){
  .dp-related2{
    padding: 9px 12px;
  }
}
/* =========================
   RANKING – NAJPOPULARNIEJSZE TELEDYSKI
========================= */
.dp-ranking-list{
  list-style: none;
  padding: 0;
  margin: 10px 0 4px;
}
.dp-ranking-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  border-bottom: 1px solid rgba(15,30,45,.08);
}
.dp-ranking-item:last-child{
  border-bottom: none;
}
.dp-ranking-pos{
  width: 22px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: #317baf;
  flex-shrink: 0;
}
.dp-ranking-link{
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #0b2a3a;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dp-ranking-link:hover{
  text-decoration: underline;
}
.dp-ranking-views{
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
}
/* =========================
   META BAR (jak news.php)
========================= */
.meta-bar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: 13px;
  color: #444;
  flex-wrap: wrap;
}
.meta-bar__left {
  flex: 1;
  min-width: 200px;
}
.meta-bar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.meta-bar__right img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  transition: transform .12s ease;
}
.meta-bar__right img:hover {
  transform: scale(1.1);
}
.meta-bar__follow {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-right: 4px;
}

/* =========================
   POWIĄZANE TELEDYSKI - GRID (jak w news.php)
========================= */

.dp-relatedMix-clips {
  margin-top: 10px;
}

.dp-relatedMix__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 14px;
}

@media (max-width: 576px) {
  .dp-relatedMix__grid {
    grid-template-columns: 1fr;
  }
}

.dp-relatedMix__item {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15,30,45,.08);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background .15s ease;
}

.dp-relatedMix__item:hover {
  background: linear-gradient(90deg, rgba(49,123,175,.06), rgba(49,123,175,0));
}

.dp-relatedMix__thumb {
  position: relative;
  flex: 0 0 92px;
  width: 92px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(49,123,175,.08);
}

.dp-relatedMix__thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,.12) 100%);
  opacity: .9;
  pointer-events: none;
  transition: opacity .18s ease;
}

.dp-relatedMix__thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}

.dp-relatedMix__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .22s ease;
}

.dp-relatedMix__item:hover .dp-relatedMix__thumb img {
  transform: scale(1.06);
}

.dp-relatedMix__item:hover .dp-relatedMix__thumb {
  box-shadow: 0 10px 18px rgba(49,123,175,.12);
}

.dp-relatedMix__ph {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(220px 120px at 20% 30%, rgba(49,123,175,.14), transparent 60%),
    radial-gradient(220px 120px at 80% 70%, rgba(176,18,18,.08), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.00));
}

.dp-relatedMix__body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dp-relatedMix__type {
  font-size: 10px;
  font-weight: 600;
  color: #8b97a6;
  text-transform: none;
  letter-spacing: 0;
}

.dp-relatedMix__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: #1b3342;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s ease;
}

.dp-relatedMix__item:hover .dp-relatedMix__title {
  color: #317baf;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.dp-relatedMix__date {
  display: block;
  font-size: 11px;
  color: #8b97a6;
  margin-top: 2px;
  font-weight: 400;
}

.dp-relatedMix__badge {
  position: absolute;
  top: 8px;
  right: 0;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: #b01212;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(176,18,18,.22);
  padding: 2px 7px;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(0,0,0,.07);
  backdrop-filter: blur(4px);
}

/* TOP LISTA */
.dp-mini-list--soft {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dp-mini-list--soft .dp-mini-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(15,30,45,.10);
}

.dp-mini-list--soft .dp-mini-list__item:last-child {
  border-bottom: 0;
}

.dp-mini-list--soft .dp-mini-list__item a {
  color: #0b2a3a;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.25;
  transition: color .15s ease;
  flex: 1;
}

.dp-mini-list--soft .dp-mini-list__item a:hover {
  color: #317baf;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.dp-mini-list__rank {
  width: 22px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: #317baf;
  flex-shrink: 0;
}

/* Subtitle w sekcji */
.dp-strip-subtitle {
  display: block;
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
  margin-top: 2px;
}

/* h2/h3 w dp-strip-title - reset dla SEO */
.dp-strip-title {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 800;
  color: #0b2a3a;
}

/* sr-only dla accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.meta-bar__row {
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.meta-bar__label {
  color: #666;
  flex-shrink: 0;
}
.meta-bar__row time {
  font-weight: 500;
  color: #317baf;
}
.meta-bar__author {
  font-weight: 500;
  color: #317baf;
  text-decoration: none;
}
.meta-bar__author:hover {
  text-decoration: underline;
}
.meta-bar__about {
  margin-top: 2px;
  font-size: 12px;
  color: #6f6f6f;
  line-height: 1.35;
}
@media (max-width: 576px) {
  .meta-bar { flex-direction: column; gap: 12px; }
  .meta-bar__right { justify-content: flex-start; }
}

/* =========================
   LYRICS BOX - Premium Pro (NO BOX)
========================= */

.lyrics-box {
  margin: 32px 0;
  padding: 0;
}

.lyrics-box__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #111827;
  margin: 0 0 20px 0;
  padding: 0 0 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.lyrics-box__content {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  max-width: 680px;
}

.lyrics-box__content br {
  content: "";
  display: block;
  margin: 4px 0;
}

.lyrics-box__content p {
  margin: 0 0 12px 0;
}

.lyrics-box__content b,
.lyrics-box__content strong {
  font-weight: 600;
  color: #111827;
}

.lyrics-box__empty {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

.lyrics-box__empty a {
  color: #111827;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.lyrics-box__empty a:hover {
  text-decoration-thickness: 2px;
}

/* =========================
   MINI LISTA NEWSÓW (na górze strony)
========================= */
ol.dp-mini-list {
  list-style: none !important;
  padding: 8px 0 !important;
  margin: 10px 0 !important;
  border-top: 1px solid #dee2e6 !important;
  border-bottom: 1px solid #dee2e6 !important;
}
.dp-mini-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.dp-mini-list li .fa {
  color: #317baf;
  font-size: 10px;
  flex-shrink: 0;
}
.dp-mini-list li a {
  color: #0b2a3a;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.3;
}
.dp-mini-list li a:hover {
  color: #317baf;
  text-decoration: underline;
}

/* =========================
   TYTUŁ ARTYKUŁU (jak news.php)
========================= */
.article-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0b2a3a;
  margin: 0;
  padding: 0;
  letter-spacing: -.02em;
}
@media (max-width: 576px) {
  .article-title {
    font-size: 1.35rem;
  }
}

/* =========================
   META ARTYKUŁU (jak news.php)
========================= */
.dp-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 11px;
  color: #888;
  margin: 8px 0 12px;
  line-height: 1.7;
}
.dp-article-meta__item {
  display: flex;
  align-items: center;
  gap: 2px;
}
.dp-article-meta__ico {
  width: 11px;
  height: 11px;
  opacity: .4;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.dp-article-meta__sep {
  padding: 0 5px;
  opacity: .2;
}
.dp-article-meta time {
  color: #317baf;
  font-weight: 600;
}
.dp-author-link {
  color: #888;
  font-weight: 400;
  text-decoration: none;
}
.dp-author-link:hover {
  color: #317baf;
  text-decoration: underline;
}

/* =========================
   LEAD (jak news.php)
========================= */
.dp-article-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #6b7280;
  font-weight: 400;
  margin: 12px 0 16px;
}
@media (max-width: 576px) {
  .dp-article-lead {
    font-size: .97rem;
  }
}

/* =========================
   REAKCJE (jak news.php)
========================= */
.dp-react-box {
  margin: 20px 0 16px;
  padding: 16px 18px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(49,123,175,.15);
  box-shadow: 0 2px 12px rgba(49,123,175,.07);
}
.dp-react-box__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.dp-react-box__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #0b2a3a;
}
.dp-react-box__title svg {
  opacity: .5;
}
.dp-react-box__summary {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
}
.dp-react-box__emojis {
  display: flex;
  gap: 2px;
  font-size: 14px;
}
.dp-react-box__buttons {
  display: flex;
  gap: 8px;
}
.dp-react-btn {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 9px 8px;
  border: 2px solid rgba(15,30,45,.08);
  border-radius: 16px;
  background: #f8f9fb;
  cursor: pointer;
  transition: all .18s cubic-bezier(.34,1.56,.64,1);
  font-family: inherit;
}
.dp-react-btn:hover {
  transform: translateY(-4px) scale(1.06);
  background: #f0f4f8;
  border-color: rgba(49,123,175,.2);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.dp-react-btn--active {
  border-color: var(--rc, #317baf) !important;
  background: color-mix(in srgb, var(--rc, #317baf) 10%, white) !important;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--rc, #317baf) 30%, transparent) !important;
}
.dp-react-btn__emoji {
  font-size: 24px;
  line-height: 1;
  transition: font-size .15s ease, filter .15s ease;
  display: block;
}
.dp-react-btn:hover .dp-react-btn__emoji {
  font-size: 28px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.25));
}
.dp-react-btn__label {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.dp-react-btn__count {
  font-size: 12px;
  font-weight: 600;
  color: #317baf;
  min-height: 14px;
}
@keyframes dp-react-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.dp-react-btn--pop {
  animation: dp-react-pop .3s ease;
}
@keyframes dp-react-float {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--dx, 0), var(--dy, -40px)) scale(.6); }
}
.dp-react-particle {
  position: absolute;
  font-size: 16px;
  pointer-events: none;
  animation: dp-react-float .7s ease forwards;
}
@media (max-width: 576px) {
  .dp-react-box { padding: 12px 12px 14px; }
  .dp-react-box__buttons { gap: 5px; }
  .dp-react-btn { padding: 7px 4px; border-radius: 12px; }
  .dp-react-btn__emoji { font-size: 20px; }
  .dp-react-btn:hover .dp-react-btn__emoji { font-size: 22px; }
  .dp-react-btn__label { font-size: 9px; }
}

/* =========================
   FOLLOW PREMIUM (jak news.php)
========================= */
.follow-premium {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0;
}
.follow-premium__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(49,123,175,.12);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s ease, transform .12s ease;
}
.follow-premium__item:hover {
  box-shadow: 0 6px 18px rgba(49,123,175,.1);
  transform: translateY(-1px);
  text-decoration: none;
  color: inherit;
}
.follow-premium__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.follow-premium__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.follow-premium__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #317baf;
}
.follow-premium__title {
  font-size: 13px;
  font-weight: 600;
  color: #0b2a3a;
  line-height: 1.3;
}
.follow-premium__hint {
  font-size: 11px;
  color: #6b7280;
}
.follow-premium__cta {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: #317baf;
  padding: 6px 14px;
  border: 1.5px solid #317baf;
  border-radius: 999px;
  transition: all .12s ease;
}
.follow-premium__item:hover .follow-premium__cta {
  background: #317baf;
  color: #fff;
}
@media (max-width: 576px) {
  .follow-premium__item { padding: 10px 12px; gap: 10px; }
  .follow-premium__icon { width: 32px; height: 32px; }
  .follow-premium__title { font-size: 12px; }
  .follow-premium__hint { display: none; }
  .follow-premium__cta { padding: 5px 10px; font-size: 11px; }
}

@media (max-width: 768px) {
  .lyrics-box {
    margin: 24px 0;
  }
  
  .lyrics-box__title {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .lyrics-box__content {
    font-size: 14px;
    line-height: 1.55;
  }
}

/* TAGI */
.dp-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eef2f5;
}
.dp-tags::before {
  content: '\f02c';
  font-family: FontAwesome;
  font-size: 11px;
  color: #b0bec5;
  margin-right: 2px;
}
.dp-tags__item {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  color: #8a9bab;
  background: transparent;
  border: 1px solid #e4eaf0;
  border-radius: 14px;
  text-decoration: none;
  transition: all .2s ease;
}
.dp-tags__item:hover {
  color: #317baf;
  border-color: #317baf;
  background: #f6fafd;
  text-decoration: none;
}
