/* Page Header (Copied from Informasi to match style) */
.page-header {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: var(--midnight-blue);
  color: white;
  text-align: center;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-desc {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* SOTK Page Specific Styles */

.sotk-section {
    background-color: var(--white);
    padding: var(--spacer-lg) 0;
}

.sotk-container {
    /* max-width: 1000px; */
    margin: 0 auto;
    text-align: center;
}

.sotk-header {
    margin-bottom: 3rem;
}

/* 16:9 Thumbnail Container */
.sotk-thumbnail-wrapper {
    width: 100%;
    /* Create a responsive aspect ratio box */
    aspect-ratio: 16/9;
    background-color: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    margin: 0 auto;
    
    /* Center the image */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sotk-thumbnail-wrapper img {
    /* Since user said "ukuran bersifat tetap tidak berubah ubah jika ukuran gambar tidak 16:9" 
       and "only menampilkan thumbnail"
       I will use object-fit: contain to show the whole structure without cropping, 
       inside the 16:9 box. */
    width: 100%;
    height: 100%;
    object-fit: contain; 
    transition: transform 0.5s ease;
}

.sotk-thumbnail-wrapper:hover img {
    transform: scale(1.02);
}

.sotk-desc {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-gray);
    line-height: 1.8;
}
