.elementor-1629 .elementor-element.elementor-element-767de4{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-18e6d52a *//* Container Utama - Biarkan Sama */
.sambutan-container {
  font-family: 'Roboto', sans-serif;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 1100px;
  margin: 20px auto;
}

/* --- PERBAIKAN PENTING DI SINI --- */

/* 1. Bagian Profil Ketua - Sesuaikan Lebar agar Pas */
.ketua-profile {
  flex: 1;
  min-width: 320px; /* Sedikit lebih lebar untuk landscape */
  text-align: center;
  background: #f7fafc;
  padding: 30px 20px;
  border-radius: 8px;
  border-bottom: 4px solid #1a365d; /* Aksen warna kampus */
  display: flex; /* Tambahkan flexbox vertikal */
  flex-direction: column;
  align-items: center; /* Ratakan konten ke tengah */
}

/* 2. Kotak Wrapper Foto - Sesuaikan Orientasi ke Landscape */
.foto-wrapper {
  width: 100%; /* Gunakan lebar penuh dari kotak profil */
  max-width: 300px; /* Batas lebar maksimal di desktop agar tidak kebesaran */
  /* Rasio 3:2 dari dimensi 7008x4672: (4672/7008) * 100 = ~66.6% */
  height: 0;
  padding-bottom: 66.6%; /* Trik untuk mempertahankan rasio tinggi-lebar */
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #e2e8f0; /* Placeholder */
  position: relative; /* Penting untuk penempatan foto */
}

/* 3. Pengaturan Foto Asli - Mengisi Wrapper */
.foto-ketua {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Jaga proporsi, isi area, dan sembunyikan sisanya */
  object-position: center top; /* Fokuskan pada wajah Ketua */
  position: absolute; /* Penempatan dalam wrapper bertrik */
  top: 0;
  left: 0;
}

/* Identitas Ketua - Biarkan Sama */
.identitas-ketua {
  width: 100%; /* Pastikan teks mengisi lebar penuh */
}
.nama-ketua {
  font-size: 1.1rem;
  color: #1a365d;
  margin: 0 0 5px 0;
  font-weight: 700;
  word-wrap: break-word; /* Teks tidak keluar kotak */
}
.jabatan-ketua {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Konten Sambutan - Biarkan Sama */
.sambutan-content {
  flex: 2.5;
}
.sambutan-title {
  font-size: 2rem;
  color: #1a365d;
  margin: 0 0 10px 0;
  font-weight: 700;
}
.sambutan-divider {
  width: 60px;
  height: 4px;
  background: #ecc94b; /* Warna emas */
  margin-bottom: 25px;
  border-radius: 2px;
}
.text-isi p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 18px;
  text-align: justify;
}
.text-isi .salam, 
.text-isi .salam-penutup {
  font-weight: 600;
  color: #2d3748;
}

/* Responsive - Sesuaikan untuk HP */
@media (max-width: 768px) {
  .sambutan-container {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }
  .ketua-profile {
    width: 100%;
    min-width: auto; /* Hapus batas minimal lebar */
    box-sizing: border-box;
  }
  .foto-wrapper {
    max-width: 100%; /* Gunakan lebar penuh di HP */
    padding-bottom: 66.6%; /* Pertahankan rasio landscape */
  }
  .text-isi p {
    text-align: left;
  }
}/* End custom CSS */