/* =========================
   PODCAST PAGE
   ========================= */

.podcast-page{
  margin:20px 0 30px;
}

.podcast-page__title{
  margin:0 0 14px;
  font-size:28px;
  line-height:1.2;
  font-weight:700;
  color:#fff;
}

.podcast-page__description{
  margin:0 0 18px;
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,.72);
}

/* =========================
   GRID
   ========================= */

.podcast-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:18px;
  align-items:start;
}

/* =========================
   CARD
   ========================= */

.podcast-card{
  min-width:0;
}

.podcast-card__image-link{
  display:block;
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  margin-bottom:10px;
  text-decoration:none;
}

.podcast-card__image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================
   TITLE
   ========================= */

.podcast-card__title{
  margin:0 0 5px;
  font-size:14px;
  line-height:1.35;
  font-weight:500;
	text-align: center;
}

.podcast-card__title a{
  color:#fff;
  text-decoration:none;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.podcast-card__title a:hover{
  text-decoration: none;
}

/* =========================
   META
   ========================= */

.podcast-card__meta{
  display:flex;
  flex-direction:column;
  gap:3px;
  margin:0;
  font-size:13px;
  line-height:1.45;
  color:rgba(255,255,255,.68);
	text-align: center;
}

.podcast-card__meta span{
  display:block;
}

/* =========================
   DESCRIPTION
   ========================= */

.podcast-card__desc{
  margin-top:8px;
  font-size:13px;
  line-height:1.55;
  color:rgba(255,255,255,.62);

  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* =========================
   HOVER
   ========================= */

.podcast-card__image-link:hover .podcast-card__image{
  transform:scale(1.03);
  transition:transform .25s ease;
}

.podcast-card__image{
  transition:transform .25s ease;
}

/* =========================
   PAGINATION
   ========================= */

.podcast-page .navigation,
.podcast-page .pager,
.podcast-page__pagination{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:22px;
}

.podcast-page .navigation a,
.podcast-page .navigation span,
.podcast-page .pager a,
.podcast-page .pager span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:36px;
  height:36px;
  padding:0 12px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
}

.podcast-page .navigation a:hover,
.podcast-page .pager a:hover{
  background:rgba(255,255,255,.12);
	text-decoration: none;
}

.podcast-page .navigation span,
.podcast-page .pager span{
  background:#fff;
  color:#111;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1280px){
  .podcast-grid{
    grid-template-columns:repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1024px){
  .podcast-grid{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .podcast-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:16px;
  }

  .podcast-card__title{
    font-size:16px;
  }
}

@media (max-width: 560px){
  .podcast-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
  }

  .podcast-page__title{
    font-size:24px;
  }

  .podcast-card__title{
    font-size:15px;
  }

  .podcast-card__meta{
    font-size:12px;
  }
}

/* =========================
   PODCAST FILTERS
   ========================= */

.podcast-filters{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;

  margin:0 auto 24px;
}

.podcast-filters__item{
  display:flex;
  flex-direction:column;
  min-width:180px;
}

.podcast-filters__label{
  font-size:12px;
  margin-bottom:5px;
  color:rgba(255,255,255,.7);
}

.podcast-filters__select{
  height:38px;
  padding:0 10px;

  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);

  background:rgba(255,255,255,.06);
  color:#fff;

  font-size:14px;
}

.podcast-filters__select:focus{
  outline:none;
  border-color:rgba(255,255,255,.35);
}

/* BUTTON */

/* FILTER BUTTON */

.pod-btn{
  height:32px;
  padding:0 14px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  border-radius:8px;
  border:1px solid rgba(255,255,255,.15);

  background:rgba(255,255,255,.06);
  color:#fff;

  font-size:13px;
  font-weight:500;

  text-decoration:none;
  cursor:pointer;
  transition:.15s ease;
}

.pod-btn:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.25);
}
.podcast-filters__select{
  height:32px;
}








/* =========================
   PODCAST VIEW
   ========================= */

.podcast-view{
  margin:20px 0 30px;
}

/* HERO */

.podcast-view__hero{
  display:grid;
  grid-template-columns:280px minmax(0, 1fr);
  gap:24px;
  align-items:start;
  margin-bottom:24px;
}

.podcast-view__cover{
  width:100%;
  max-width:280px;
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.podcast-view__image{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  display:block;
}

.podcast-view__main{
  min-width:0;
}

.podcast-view__title{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.15;
  font-weight:500;
  color:#fff;
}

/* META */

.podcast-view__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}

.podcast-view__meta span{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1;
}

/* SITE */

.podcast-view__site{
  margin:0 0 14px;
}

.podcast-view__site a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:500;
  transition:.15s ease;
}

.podcast-view__site a:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.25);
	text-decoration: none;
}

/* CATEGORIES */

.podcast-view__categories{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.podcast-view__categories a,
.podcast-view__categories span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 11px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.76);
  text-decoration:none;
  font-size:12px;
}

.podcast-view__categories a:hover{
  background:rgba(255,255,255,.09);
  color:#fff;
	text-decoration: none;
}

/* DESCRIPTION */

.podcast-view__description{
  margin:0 0 24px;
  font-size:15px;
  line-height:1.7;
  color:rgba(255,255,255,.82);
}

/* COMMON BLOCK */

.podcast-block,
.podcast-view__links{
  margin:0 0 24px;
}

.podcast-block__title{
  margin:0 0 14px;
  font-size:22px;
  line-height:1.2;
  font-weight:700;
  color:#fff;
}

/* LINKS */

.podcast-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.podcast-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:500;
  transition:.15s ease;
}

.podcast-links a:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.25);
	text-decoration: none;
}

/* EPISODES */

.podcast-episodes{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.sgchip a, .sgchip a:hover{text-decoration: none;}
/* PAGINATION */

.podcast-view .navigation,
.podcast-view .pager{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:20px;
}

.podcast-view .navigation a,
.podcast-view .navigation span,
.podcast-view .pager a,
.podcast-view .pager span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:36px;
  height:36px;
  padding:0 12px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
}

.podcast-view .navigation a:hover,
.podcast-view .pager a:hover{
  background:rgba(255,255,255,.12);
	text-decoration: none;
}

 

.podcast-view .navigation span,
.podcast-view .pager span{
  background:#fff;
  color:#111;
}

/* RESPONSIVE */

@media (max-width: 980px){
  .podcast-view__hero{
    grid-template-columns:220px minmax(0, 1fr);
    gap:20px;
  }

  .podcast-view__cover{
    max-width:220px;
  }

  .podcast-view__title{
    font-size:28px;
  }
}

@media (max-width: 768px){
  .podcast-view__hero{
    grid-template-columns:1fr;
  }

  .podcast-view__cover{
    max-width:320px;
  }

  .podcast-view__title{
    font-size:24px;
  }
}

@media (max-width: 480px){
  .podcast-view__meta{
    gap:6px;
  }

  .podcast-view__meta span{
    font-size:12px;
    min-height:30px;
    padding:0 10px;
  }

  .podcast-block__title{
    font-size:20px;
  }

  .podcast-view__description{
    font-size:14px;
  }
}

/* PODCAST RIGHT COLUMN */

.podcast-episode-right{
  border-radius:22px;
  border:1px solid var(--line);
  background:
    radial-gradient(900px 360px at 15% 0%, color-mix(in srgb, var(--accent) 35%, transparent), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.03));

  padding:22px;
}

/* убрать скролл */

.podcast-episode-right .station-right-inner{
  height:auto;
  overflow:visible;
}

/* центрируем контент */

.podcast-episode-right .station-desc{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:16px;
}

/* обложка */

.podcast-episode-right .podcast-view__cover{
  width:220px;
  max-width:100%;
  border-radius:18px;
  overflow:hidden;
}

.podcast-episode-right .podcast-view__cover img{
  width:100%;
  height:auto;
  display:block;
}

/* описание */

.podcast-episode-right .station-desc{
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,.8);
}

/* =========================
   EPISODE CARD
   ========================= */

.podcast-episode-card{
  display:grid;
  grid-template-columns:120px minmax(0,1fr);
  gap:16px;

  padding:14px;
  border-radius:14px;

  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);

  transition:.15s ease;
}

.podcast-episode-card:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.14);
}

/* IMAGE */

.podcast-episode-card__image-link{
  display:block;
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:10px;
}

.podcast-episode-card__image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* CONTENT */

.podcast-episode-card__content{
  min-width:0;
}

/* TITLE */

.podcast-episode-card__title{
  margin:0 0 6px;
  font-size:18px;
  font-weight:600;
  line-height:1.35;
}

.podcast-episode-card__title a{
  color:#fff;
  text-decoration:none;
}

.podcast-episode-card__title a:hover{
  text-decoration: none;
}

/* META */

.podcast-episode-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;

  margin-bottom:8px;

  font-size:13px;
  color:rgba(255,255,255,.65);
}

/* DESCRIPTION */

.podcast-episode-card__desc{
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,.75);

  margin-bottom:10px;

  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* ACTIONS */

.podcast-episode-card__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* BUTTON */

.pod-btn{
  height:32px;
  padding:0 14px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  border-radius:8px;
  border:1px solid rgba(255,255,255,.15);

  background:rgba(255,255,255,.06);
  color:#fff;

  font-size:13px;
  font-weight:500;

  text-decoration:none;
  transition:.15s ease;
}

.pod-btn:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.25);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:700px){

  .podcast-episode-card{
    grid-template-columns:1fr;
  }

  .podcast-episode-card__image-link{
    max-width:140px;
  }

}


.podcast-episode-hero{
  border-radius:22px;
  border:1px solid var(--line);

  background:
    radial-gradient(900px 360px at 15% 0%, color-mix(in srgb, var(--accent) 35%, transparent), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.03));

  overflow:hidden;
  padding:22px;
}



.podcast-about{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:22px;
  background:
    radial-gradient(900px 360px at 15% 0%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  overflow:hidden;
}

.podcast-about--reverse{
  flex-direction:row;
}

.podcast-about__main{
  flex:1 1 auto;
  min-width:0;
}

.podcast-about__media{
  flex:0 0 260px;
  width:260px;
  display:flex;
  justify-content:flex-end;
  text-decoration:none;
}

.podcast-about__image{
  display:block;
  width:100%;
  max-width:260px;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 12px 34px rgba(0,0,0,.22);
}

.podcast-about__title{
  margin:0 0 14px;
  font-size:22px;
  line-height:1.2;
  font-weight:500;
}

.podcast-about__title a{
  color:inherit;
  text-decoration:none;
}

.podcast-about__title a:hover{
  opacity:.9;
}

.podcast-about__description{
  margin:0 0 16px;
  line-height:1.7;
  color:var(--text2, rgba(255,255,255,.82));
}

.podcast-about__description p:first-child{
  margin-top:0;
}

.podcast-about__description p:last-child{
  margin-bottom:0;
}

.podcast-about__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 18px;
}

.podcast-about__meta-item{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  font-size:13px;
  line-height:1.2;
  color:var(--text2, rgba(255,255,255,.84));
}

.podcast-about__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.podcast-about__site{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.06);
  color:inherit;
  transition:.2s ease;
}

.podcast-about__site:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.1);
}

@media (max-width: 980px){
  .podcast-about{
    gap:18px;
    padding:18px;
  }

  .podcast-about__media{
    flex:0 0 220px;
    width:220px;
  }

  .podcast-about__image{
    max-width:220px;
  }

  .podcast-about__title{
    font-size:24px;
  }
}

@media (max-width: 768px){
  .podcast-about{
    flex-direction:column-reverse;
    align-items:stretch;
  }

  .podcast-about__media{
    width:100%;
    flex:none;
    justify-content:center;
  }

  .podcast-about__image{
    max-width:240px;
    margin:0 auto;
  }

  .podcast-about__title{
    font-size:22px;
  }
}