/* DEFAULT */
/*
.education-detail-container {
  min-height: 50vh;
}

.education-detail-title {
  overflow: hidden;
  text-align: center;
  font-size: 50px;
}

.education-detail-subtitle {
  overflow: hidden;
  margin-bottom: 1rem;
}

.education-detail-subpart {
  margin: 2rem 0rem;
}
*/

/* Atur jarak dari header */
.education-detail-container {
  padding-top: 20px; 
  min-height: calc(100vh - 120px); 
}

/* Style judul */
.education-detail-title {
  text-align: center;
  font-size: 50px;
  overflow: hidden;
  margin: 50px 0px; 
  padding: 0 20px; 
  line-height: 1.2;
  word-wrap: break-word; 
  hyphens: auto; 
}

.education-detail-subtitle {
  overflow: hidden;
  margin-bottom: 1rem;
}

/* Layout utama */
.education-content-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 20px; 
}

/* Sidebar */
.education-sidebar {
  width: 300px;
  position: sticky;
  top: 0px; 
  align-self: flex-start;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

/* Konten utama */
.education-content {
  flex: 1;
  max-width: calc(100% - 270px); /* 250px sidebar + 20px gap */
}

/* Gambar */
.education-images img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .education-content-wrapper {
    flex-direction: column;
  }
  .education-sidebar {
    width: 100%;
    position: static;
    top: auto;
  }
  .education-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .education-detail-title {
    font-size: 36px;
    margin: 20px 0;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=education_detail.css.map */