.podcast-section {
  padding: 60px 0;
  background-color: #fdfdfd; /* A very light gray from the image */
}

.podcast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.podcast-footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.podcast-logo img {
  width: 413px;
}

.podcast-title-group {
  text-align: left;
  max-width: 575px;
}

.podcast-title-group .section-title {
  text-align: left;
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
}

.podcast-title-group p {
  font-size: 18px;
  line-height: 27px;
  color: var(--text-medium);
  margin-top: 12px;
  font-family: "Montserrat";
}

.podcast-content {
  display: flex;
  gap: 24px;
}

.podcast-featured-card {
  flex: 1;
  max-width: 681px;
  border: 1px solid var(--background-gray);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-image {
  border-radius: 20px;
  width: 100%;
}

.featured-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.featured-card-body h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  color: var(--text-dark);
}

.featured-card-body p {
  font-size: 16px;
  color: var(--text-light);
  flex-grow: 1;
  font-family: "Montserrat";
}

@media (max-width: 768px) {
  .featured-card-body a {
    margin: 0 auto;
  }
}

.arrow-link {
  align-self: flex-end;
  transform: rotate(-45deg);
}

.podcast-list {
  flex: 1;
  max-width: 575px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.podcast-item-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--background-gray);
  border-radius: 20px;
}

.featured-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.featured-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.item-card-image .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  filter: brightness(0.7);
}

.item-card-image {
  position: relative;
  height: 120px;
  width: 230px;
  object-fit: cover;
  object-position: center;
}

.item-card-image .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.item-card-text {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.item-card-text p {
  font-size: 16px;
  color: var(--text-dark);
  font-family: "Montserrat";
}

.arrow-icon {
  transform: rotate(-45deg);
  flex-shrink: 0;
  margin-top: auto;
}

.podcast-nav {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 16px;
}

.podcast-nav button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

@media (max-width: 1200px) {
  .podcast-content {
    flex-direction: column;
  }
  .podcast-featured-card,
  .podcast-list {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .podcast-header {
    justify-content: center;
    text-align: center;
  }
  .podcast-title-group .section-title,
  .podcast-title-group p {
    text-align: center;
  }
  .podcast-item-card {
    flex-direction: column;
    text-align: center;
  }
  .item-card-text {
    flex-direction: column;
    align-items: center;
  }
}
