.pengumuman-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  .judul-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  
  .konten-pengumuman {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  /* Kolom utama (kiri) */
  .pengumuman-utama {
    flex: 1 1 60%;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  }
  
  .pengumuman-utama img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .pengumuman-utama h3 {
    font-size: 20px;
    font-weight: 700;
  }
  
  .pengumuman-utama .tanggal {
    font-size: 14px;
    color: #888;
    margin: 8px 0;
  }
  
  .pengumuman-utama .excerpt {
    font-size: 15px;
    color: #444;
  }
  
  .pengumuman-utama .selengkapnya {
    display: inline-block;
    margin-top: 10px;
    font-style: italic;
    color: #007c91;
  }
  
  /* Kolom pengumuman lain (kanan) */
  .pengumuman-lain {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  /* Item dalam pengumuman lainnya */
  .item-pengumuman {
    background: #fff;
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .thumbnail-mini img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .konten-mini h4 {
    font-size: 16px;
    margin: 0;
  }
  
  .konten-mini .tanggal {
    font-size: 12px;
    color: #777;
  }
  
  .konten-mini .selengkapnya-mini {
    font-size: 12px;
    color: #007c91;
    font-style: italic;
  }
  
  /* Tombol lihat semua */
  .lihat-semua {
    margin-top: 150px;
    text-align: center;
  }
  
  .lihat-semua a {
    display: inline-block;
    padding: 12px 28px;
    background-color: #007c91;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 124, 145, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .lihat-semua a:hover {
    background-color: #005f70;
    transform: translateY(-2px);
  }
  