/* =========================
   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:underline;
}

/* =========================
   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);
}

.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:32px;
  line-height:1.15;
  font-weight:700;
  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);
}

/* 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;
}

/* 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);
}

/* EPISODES */

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

/* 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);
}

.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;
  }
}


/* =========================
   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:underline;
}

/* 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;
  }

}