/* File: css/podcast-styles.css */

.podcast {
  padding: 100px 120px 60px 120px;
  box-sizing: border-box;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.podcast__intro {
  text-align: center;
  margin-bottom: 60px;
}

.podcast__title {
  font-family: 'my-alt-round-Medium', sans-serif;
  font-size: 42px;
  color: #111;
  margin-bottom: 12px;
}

.podcast__subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.podcast__preview {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin-top: 8px;
}

.host__bio {
  max-width: 600px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.host__bio img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 50%;
}

.host__bio-text {
	flex: 1;
	font-size: 15px;
	line-height: 1.7;
	color: #444;
}

.podcast__section-title {
  font-family: 'my-alt-round-Medium', sans-serif;
  font-size: 38px;
  margin: 95px 0 30px;
  color: #111;
}

.podcast__episodes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.podcast__card {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.podcast__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.podcast__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.3s;
}

.podcast__card:hover img {
  filter: brightness(1);
}

.podcast__card-text {
  padding: 20px;
}

.podcast__card-text h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 20px;
  font-weight: 600;
}

.podcast__card-text p {
  color: #777;
  font-size: 14px;
}

@media (max-width: 768px) {
  .podcast {
    padding: 60px 20px 40px 20px;
  }

  .podcast__title {
    font-size: 30px;
  }

  .podcast__subtitle {
    font-size: 16px;
  }

  .host__bio {
    flex-direction: column;
    text-align: center;
  }

  .host__bio img {
    margin-bottom: 16px;
  }

  .podcast__section-title {
    font-size: 26px;
    margin: 60px 0 20px;
    text-align: center;
  }

  .podcast__episodes {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .podcast__card-text {
    padding: 16px;
  }

  .podcast__card-text h3 {
    font-size: 18px;
  }

  .podcast__card-text p {
    font-size: 13px;
  }

  .podcast__card img {
    height: 180px;
  }
}
