/*
Theme Name: Salient Child
Theme URI: https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Template: salient
Author: ThemeNectar
Author URI: https://themeforest.net/user/themenectar
Description: An Ultra Responsive Multi-Purpose Theme.
Version: 16.3.0.1752226145
Updated: 2025-07-11 11:29:05

*/

/* Podcast */

#podcast-container {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	max-width: 800px;

}

.podcast-item {
    margin-bottom: 40px;
}

.podcast-blok {
  display: flex;
  align-items: stretch;
}

.podcast-img {
  flex: 1;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #111111;
}

.podcast-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.podcast-loop {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; 
  justify-content: center;
}

.podcast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
	background-color: #111111;
	padding: 10px 20px 10px 20px;
}

.podcast-content h2 {
    font-size: 20px;
    margin: 0 0 10px;
	color: white;
}

.podcast-content strong {
	color: rgb(24, 93, 246);
}

.podcast-content p {
    margin: 5px 0;
	color: white;
}

.podcast-cta {
    margin-top: auto;
	position: relative;
	bottom: 20px;
    align-self: flex-start;
    padding: 5px 15px;
    background-color: rgb(24, 93, 246);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.podcast-cta:hover {
    background-color: rgb(14, 63, 166);
	color: white;
}

.podcast-pagination {
    text-align: center;
    margin-top: 40px;
}

.podcast-pagination {
  text-align: center;
  margin-top: 30px;
  font-family: Arial, sans-serif;
}

.podcast-pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.podcast-pagination ul li {
  border-radius: 4px;
  overflow: hidden;
}

.podcast-pagination ul li a,
.podcast-pagination ul li span {
  display: block;
  padding: 8px 14px;
  background-color: rgb(24, 93, 246); 
  color: white; 
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid rgb(24, 93, 246);
}

.podcast-pagination ul li a:hover {
  background-color: rgba(24, 93, 246, 0.8);
  color: white;
}

.podcast-pagination ul li .current {
  background-color: white;
  color: rgb(24, 93, 246); 
  cursor: default;
  border: 1px solid rgb(24, 93, 246);
}


@media (max-width: 767px) {
  .podcast-blok {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

   .podcast-img {
    width: 100% !important;
    flex: none !important;
	   min-height: 280px;
  }
  .podcast-img img {
    width: 100% !important;
    height: auto !important;
  }

  .podcast-content {
    flex: none !important;
    width: 100% !important;
    align-items: center;
  }

  .podcast-cta {
    align-self: center !important;
    margin-top: 20px !important;
  }

  .podcast-item {
    max-width: 100% !important;
  }
}

