.podcast-section {
  padding: 80px 20px;
  background-color: #fff;
}

.podcast-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Sol taraf - Metin */
.podcast-text {
  flex: 1;
  max-width: 500px;
}

.podcast-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #000;
  letter-spacing: -1px;
}

.podcast-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.podcast-btn {
  padding: 12px 40px;
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.podcast-btn:hover {
  background-color: #000;
  color: #fff;
}

/* Sağ taraf - Görseller */
.podcast-images {
  flex: 1.5;
  display: flex;
  gap: 20px;
}

.podcast-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.podcast-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #f0f0f0;
}

.podcast-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-image img {
  transform: scale(1.05);
}

.image-caption {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  font-weight: 400;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
  .podcast-container {
    gap: 40px;
  }

  .podcast-title {
    font-size: 40px;
  }

  .podcast-images {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .podcast-section {
    padding: 60px 20px;
  }

  .podcast-container {
    flex-direction: column;
    gap: 40px;
  }

  .podcast-text {
    max-width: 100%;
    text-align: center;
  }

  .podcast-title {
    font-size: 36px;
  }

  .podcast-images {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
  }

  .podcast-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .podcast-title {
    font-size: 32px;
  }

  .podcast-description {
    font-size: 15px;
  }

  .podcast-images {
    flex-direction: column;
  }

  .podcast-card {
    flex: 1 1 100%;
  }
}