/* BASE */
.podcast-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #041d54, #13398d);
  color: #fff;
}

.podcast-header {
  text-align: center;
  margin-bottom: 40px;
}

.podcast-header h2 {
  font-size: 32px;
}

.podcast-header p {
  color: #ddd;
  font-size: 16px;
}

/* GRID */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.podcast-card {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
  backdrop-filter: blur(6px);
}

.podcast-card:hover {
  transform: translateY(-6px);
}

.podcast-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.podcast-card p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 15px;
}

/* VIDEO */
.podcast-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.podcast-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}

/* BADGE */
.badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.badge.blue { background: #007bff; }
.badge.green { background: #28a745; }
.badge.orange { background: #fd7e14; }

.section-title {
  margin: 40px 0 20px;
  font-size: 20px;
}

/* FASILITAS */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.facility-card {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.facility-card h4 {
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================= */
/* 📱 RESPONSIVE BREAKPOINT */
/* ========================= */

/* TABLET */
@media (max-width: 992px) {
  .podcast-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .podcast-header h2 {
    font-size: 26px;
  }
}

/* HP BESAR */
@media (max-width: 768px) {
  .podcast-grid {
    grid-template-columns: 1fr;
  }

  .podcast-section {
    padding: 40px 15px;
  }

  .podcast-header h2 {
    font-size: 22px;
  }

  .podcast-header p {
    font-size: 14px;
  }
}

/* HP KECIL */
@media (max-width: 480px) {
  .podcast-card {
    padding: 15px;
  }

  .podcast-card h3 {
    font-size: 16px;
  }

  .podcast-card p {
    font-size: 13px;
  }

  .badge {
    font-size: 11px;
  }
}