/* ==========================================
   1. PPIC HERO SECTION
   ========================================== */
/* Container Utama */
.ppic-hero-section {
  background-color: #12283a; /* Biru gelap PPI */
  padding: 80px 0;
  width: 100%;
  padding-top: 180px;
}

.ppic-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Sisi Teks (Kiri) */
.ppic-hero-text {
  flex: 1;
  color: #ffffff;
}

.ppic-hero-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ppic-hero-text p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Tombol */
.ppic-btn-primary {
  display: inline-block;
  background-color: #f8b425; /* Kuning PPI */
  color: #12283a;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ppic-btn-primary:hover {
  background-color: #e09f1d;
  transform: translateY(-2px);
  color: #12283a;
}

/* Sisi Gambar (Kanan) */
.ppic-hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.ppic-hero-slider {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.ppic-hero-slider-viewport {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.ppic-hero-slider-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.ppic-hero-slide {
  flex: 0 0 100%;
  aspect-ratio: 4 / 3;
}

.ppic-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ppic-hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background-color: rgba(18, 40, 58, 0.72);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.ppic-hero-slider-arrow:hover {
  background-color: rgba(248, 180, 37, 0.95);
  color: #12283a;
}

.ppic-hero-slider-arrow.is-prev {
  left: 16px;
}

.ppic-hero-slider-arrow.is-next {
  right: 16px;
}

.ppic-hero-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.ppic-hero-slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.ppic-hero-slider-dot.is-active {
  background-color: #f8b425;
  transform: scale(1.15);
}

.ppic-hero-slider.is-single .ppic-hero-slider-dots,
.ppic-hero-slider.is-single .ppic-hero-slider-arrow {
  display: none;
}

/* Responsif untuk HP / Tablet */
@media (max-width: 991px) {
  .ppic-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .ppic-hero-text h2 {
    font-size: 32px;
  }

  .ppic-hero-image {
    justify-content: center;
    margin-top: 20px;
  }

  .ppic-hero-slider {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .ppic-hero-section {
    padding-top: 150px;
  }

  .ppic-hero-slider-arrow {
    width: 38px;
    height: 38px;
  }

  .ppic-hero-slider-arrow.is-prev {
    left: 10px;
  }

  .ppic-hero-slider-arrow.is-next {
    right: 10px;
  }
}

/* ==========================================
   2. PPIC STATS SECTION
   ========================================== */
.ppic-stats-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  padding: 56px 0;
  width: 100%;
}

.ppic-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ppic-stat-item {
  text-align: center;
  padding: 12px 16px;
}

.ppic-stat-item h3 {
  margin: 0 0 10px;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  color: #003b73;
}

.ppic-stat-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #284b6d;
}

@media (max-width: 991px) {
  .ppic-stats-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .ppic-stat-item h3 {
    font-size: 44px;
  }
}

@media (max-width: 575px) {
  .ppic-stats-section {
    padding: 44px 0;
  }

  .ppic-stats-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ppic-stat-item h3 {
    font-size: 38px;
  }

  .ppic-stat-item p {
    font-size: 16px;
  }
}

/* ==========================================
   3. PPIC ACCREDITATION SECTION
   ========================================== */
.ppic-accreditation-section {
  background-color: #eef3f9;
  padding: 72px 0 76px;
  width: 100%;
}

.ppic-accreditation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-accreditation-title {
  margin: 0;
  text-align: center;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  color: #003b73;
}

.ppic-accreditation-subtitle {
  max-width: 680px;
  margin: 22px auto 48px;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #4d6480;
}

.ppic-accreditation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.ppic-accreditation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.ppic-accreditation-logo {
  width: 100%;
  max-width: 92px;
  height: 92px;
  object-fit: contain;
}

.ppic-accreditation-item span {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0d233a;
}

@media (max-width: 991px) {
  .ppic-accreditation-title {
    font-size: 40px;
  }

  .ppic-accreditation-subtitle {
    margin-bottom: 36px;
    font-size: 18px;
  }

  .ppic-accreditation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 20px;
  }
}

@media (max-width: 575px) {
  .ppic-accreditation-section {
    padding: 56px 0 60px;
  }

  .ppic-accreditation-title {
    font-size: 31px;
  }

  .ppic-accreditation-subtitle {
    margin: 18px auto 30px;
    font-size: 16px;
  }

  .ppic-accreditation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .ppic-accreditation-logo {
    max-width: 78px;
    height: 78px;
  }

  .ppic-accreditation-item span {
    font-size: 14px;
  }
}

/* ==========================================
   4. PPIC DIRECTOR GREETING SECTION
   ========================================== */
.ppic-director-greeting-section {
  background-color: #ffffff;
  padding: 72px 0 82px;
  width: 100%;
}

.ppic-director-greeting-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
}

.ppic-director-greeting-image img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(13, 35, 58, 0.12);
}

.ppic-director-greeting-content h3 {
  margin: 0 0 26px;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: #003b73;
}

.ppic-director-greeting-quote {
  margin: 0 0 28px;
  font-size: 21px;
  line-height: 1.72;
  color: #425f7f;
}

.ppic-director-greeting-meta {
  margin: 0 0 34px;
  font-size: 20px;
  line-height: 1.6;
  color: #36516e;
}

.ppic-director-greeting-meta strong {
  color: #0d233a;
}

.ppic-director-greeting-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f8b425;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.ppic-director-greeting-link a:hover {
  color: #d99718;
  transform: translateX(2px);
}

@media (max-width: 991px) {
  .ppic-director-greeting-section {
    padding: 60px 0 68px;
  }

  .ppic-director-greeting-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ppic-director-greeting-image {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .ppic-director-greeting-content {
    text-align: center;
  }

  .ppic-director-greeting-content h3 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .ppic-director-greeting-quote {
    font-size: 19px;
    margin-bottom: 24px;
  }

  .ppic-director-greeting-meta {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .ppic-director-greeting-link a {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ppic-director-greeting-section {
    padding: 48px 0 56px;
  }

  .ppic-director-greeting-image img {
    height: auto;
  }

  .ppic-director-greeting-content h3 {
    font-size: 32px;
  }

  .ppic-director-greeting-quote {
    font-size: 17px;
  }

  .ppic-director-greeting-meta {
    font-size: 16px;
  }

  .ppic-director-greeting-link a {
    font-size: 16px;
  }
}

/* ==========================================
   5. PPIC FEATURED PROGRAMS SECTION
   ========================================== */
.ppic-featured-programs-section {
  background-color: #ffffff;
  padding: 74px 0 86px;
  width: 100%;
}

.ppic-featured-programs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-featured-programs-title {
  margin: 0;
  text-align: center;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
  color: #003b73;
}

.ppic-featured-programs-subtitle {
  max-width: 760px;
  margin: 20px auto 52px;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #5a7089;
}

.ppic-featured-programs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.ppic-featured-program-card {
  min-height: 210px;
  padding: 24px 20px 28px;
  border: 1px solid #e8edf3;
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 40, 58, 0.04);
  text-align: center;
}

.ppic-featured-program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 50%;
  background-color: #003b73;
  color: #ffffff;
  font-size: 28px;
}

.ppic-featured-program-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
  color: #0d3458;
}

.ppic-featured-program-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #61748b;
}

@media (max-width: 1199px) {
  .ppic-featured-programs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .ppic-featured-programs-section {
    padding: 60px 0 70px;
  }

  .ppic-featured-programs-title {
    font-size: 42px;
  }

  .ppic-featured-programs-subtitle {
    margin-bottom: 40px;
    font-size: 18px;
  }

  .ppic-featured-programs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .ppic-featured-programs-section {
    padding: 48px 0 56px;
  }

  .ppic-featured-programs-title {
    font-size: 32px;
  }

  .ppic-featured-programs-subtitle {
    margin: 18px auto 30px;
    font-size: 16px;
  }

  .ppic-featured-programs-grid {
    grid-template-columns: 1fr;
  }

  .ppic-featured-program-card {
    min-height: auto;
    padding: 22px 18px 24px;
  }
}

/* ==========================================
   6. PPIC INSTAGRAM SECTION
   ========================================== */
.ppic-instagram-section {
  background-color: #ffffff;
  padding: 52px 0 28px;
  width: 100%;
}

.ppic-instagram-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.ppic-instagram-header h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #003b73;
}

.ppic-instagram-header a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid #003b73;
  border-radius: 999px;
  color: #003b73;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.ppic-instagram-header a:hover {
  background-color: #003b73;
  color: #ffffff;
}

.ppic-instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.ppic-instagram-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 26px rgba(18, 40, 58, 0.1);
}

.ppic-instagram-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ppic-instagram-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 59, 115, 0) 40%,
    rgba(0, 59, 115, 0.38) 100%
  );
  pointer-events: none;
}

.ppic-instagram-card:hover img {
  transform: scale(1.05);
}

.ppic-instagram-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  color: #ffffff;
  font-size: 22px;
}

@media (max-width: 991px) {
  .ppic-instagram-section {
    padding: 46px 0 24px;
  }

  .ppic-instagram-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ppic-instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .ppic-instagram-header h2 {
    font-size: 24px;
  }

  .ppic-instagram-header a {
    font-size: 13px;
  }

  .ppic-instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================
   7. PPIC WHY SECTION
   ========================================== */
.why-ppic {
  background-color: #fafbfe; /* Warna background abu-abu sangat muda/putih salju */
  padding: 80px 0;
  width: 100%;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ppic-why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Bagian Gambar Kiri */
.why-image {
  flex: 1;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Efek melayang */
  object-fit: cover;
}

/* Bagian Konten Kanan */
.why-content {
  flex: 1.2;
  color: #333333;
}

.why-content h2 {
  font-size: 36px;
  color: #0d233a; /* Biru PPI */
  font-weight: 800;
  margin-bottom: 15px;
}

.why-content .punchline {
  font-size: 20px;
  color: #f8b425; /* Kuning PPI */
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.why-content .lead {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* List Centang */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.5;
  color: #444444;
}

.why-list li i {
  color: #f8b425; /* Warna icon check kuning */
  font-size: 18px;
  margin-top: 3px;
}

.why-list li strong {
  color: #0d233a; /* Teks tebal biru gelap */
}

/* Teks Bawah (Micro CTA) */
.micro-cta {
  border-left: 4px solid #f8b425;
  padding-left: 16px;
  font-size: 15px;
  color: #333333;
  font-weight: 500;
  line-height: 1.6;
}

.micro-cta a {
  color: #0f4c81;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.micro-cta a:hover {
  color: #f8b425;
}

/* Responsive Mobile & Tablet */
@media (max-width: 991px) {
  .ppic-why-container {
    flex-direction: column;
    gap: 40px;
  }

  .why-content h2 {
    font-size: 28px;
  }

  .why-content .punchline {
    font-size: 18px;
  }
}

/* =========================================================================
   8. ELEMENT: PPIC NEWS GRID (FULL & RESPONSIVE)
   ========================================================================= */

.ppic-news-section {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f8f9fc; /* Background abu-abu muda */
  box-sizing: border-box;
}

/* --- Header & Deskripsi --- */
.ppic-news-header {
  text-align: center;
  margin-bottom: 50px;
}

.ppic-news-main-title {
  color: #0f2a4a;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ppic-news-sub-title {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

/* --- Row & Columns (Grid Kustom Anti-Bentrok) --- */
.ppic-news-row {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.ppic-news-slider {
  position: relative;
  width: min(100%, 1000px);
  margin: 0 auto;
}

.ppic-news-slider__viewport {
  overflow: hidden;
  padding: 4px 2px 6px;
}

.ppic-news-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.ppic-news-col {
  display: contents;
}

/* --- Card Container --- */
.ppic-news-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column; /* Bikin elemen numpuk ke bawah */
  flex: 0 0 calc((100% - 40px) / 3);
  width: 100%;
  max-width: 320px;
  min-width: 0;
  height: 100%; /* Paksa kotak memenuhi tinggi kolom */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ppic-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
}

.ppic-news-slider__arrow {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 35, 58, 0.88);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.ppic-news-slider__arrow:hover,
.ppic-news-slider__arrow:focus-visible {
  background: #0d5ea8;
}

.ppic-news-slider__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.ppic-news-slider__arrow.is-prev {
  left: -18px;
}

.ppic-news-slider__arrow.is-next {
  right: -18px;
}

.ppic-news-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.ppic-news-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 35, 58, 0.18);
  cursor: pointer;
}

.ppic-news-slider__dot.is-active {
  background: #0d5ea8;
}

.ppic-news-slider.is-single .ppic-news-slider__arrow,
.ppic-news-slider.is-single .ppic-news-slider__dots {
  display: none;
}

/* --- Image Wrapper --- */
.ppic-news-img-wrap {
  width: 100%;
  height: 220px; /* Tinggi gambar rata semua */
  flex-shrink: 0; /* Gambar gak boleh mengecil */
  overflow: hidden;
}

.ppic-news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Content & Typography --- */
.ppic-news-content {
  display: flex;
  flex-direction: column;
  padding: 25px;
  flex-grow: 1; /* Area konten ini bakal melar ngisi ruang kosong */
}

.ppic-news-content h4 {
  font-size: 18px;
  color: #0f2a4a;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;

  /* JURUS POTONG JUDUL KEPANJANGAN (Maksimal 3 Baris) */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* Standar properti */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ppic-news-content p {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;

  /* JURUS POTONG DESKRIPSI (Maksimal 3 Baris) */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* Standar properti */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Link Selengkapnya --- */
.ppic-news-readmore {
  font-size: 15px;
  font-weight: 700;
  color: #0f2a4a;
  text-decoration: none;
  margin-top: auto; /* Dorong tombol terus ke dasar kotak */
  align-self: flex-start;
  transition: color 0.3s ease;
}

.ppic-news-readmore:hover {
  color: #f0a500; /* Warna kuning emas pas di-hover */
  text-decoration: none;
}

/* =========================================================================
   RESPONSIVE LAYOUT (Tablet & Mobile)
   ========================================================================= */

/* Untuk Layar Tablet (Lebar max 992px) -> Jadi 2 Kolom */
@media (max-width: 992px) {
  .ppic-news-card {
    flex-basis: calc((100% - 20px) / 2);
    max-width: none;
  }

  .ppic-news-slider__arrow.is-prev {
    left: -10px;
  }

  .ppic-news-slider__arrow.is-next {
    right: -10px;
  }
}

/* Untuk Layar HP (Lebar max 768px) -> Jadi 1 Kolom Full */
@media (max-width: 768px) {
  .ppic-news-section {
    padding: 40px 15px;
  }

  .ppic-news-main-title {
    font-size: 26px;
  }

  .ppic-news-slider__track {
    gap: 12px;
  }

  .ppic-news-card {
    flex-basis: 100%;
    max-width: none;
  }

  .ppic-news-img-wrap {
    height: 200px;
  }

  .ppic-news-slider__arrow {
    top: 34%;
    width: 34px;
    height: 34px;
  }

  .ppic-news-slider__arrow.is-prev {
    left: -6px;
  }

  .ppic-news-slider__arrow.is-next {
    right: -6px;
  }
}

/* =========================================================================
   9. ELEMENT: PPIC EXPLORE PROGRAMS
   ========================================================================= */

.ppic-explore-wrapper {
  background-color: #0d263c;
  padding: 80px 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.ppic-explore-content {
  max-width: 900px;
  margin: 0 auto;
}

.ppic-explore-title {
  color: #ffffff;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.ppic-explore-desc {
  color: #f8f9fa;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto 35px auto;
  max-width: 780px;
}

/* --- Tombol "Kembali ke Beranda" --- */
.ppic-explore-btn {
  display: inline-block;
  background-color: #053b6a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ppic-explore-btn:hover {
  background-color: #f0a500; /* Warna kuning emas PPI saat di-hover */
  color: #0d263c; /* Teks berubah jadi gelap biar kontras */
  border-color: #f0a500;
  text-decoration: none;
}

/* =========================================================================
   RESPONSIVE LAYOUT (Tablet & Mobile)
   ========================================================================= */

@media (max-width: 768px) {
  .ppic-explore-wrapper {
    padding: 60px 15px;
  }

  .ppic-explore-title {
    font-size: 32px;
  }

  .ppic-explore-desc {
    font-size: 14.5px;
    margin-bottom: 25px;
  }

  .ppic-explore-btn {
    padding: 10px 25px;
    font-size: 15px;
  }
}

/* =========================================================================
   10. ELEMENT: PPIC RPL PROGRAMS 
   ========================================================================= */

.ppic-rpl-section {
  background-color: #f8fafc !important;
  background-image: none !important;
  padding: 80px 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.ppic-rpl-header {
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

.ppic-rpl-header h2 {
  font-size: 32px;
  color: #0f2a4a !important;
  margin-bottom: 15px;
}

.ppic-rpl-header p {
  color: #666 !important;
  max-width: 600px;
  margin: 0 auto;
}

.ppic-rpl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.ppic-rpl-card {
  padding: 20px;
}

.ppic-rpl-card i {
  font-size: 40px;
  color: #f8b400;
  margin-bottom: 20px;
  display: block;
}

.ppic-rpl-card h4 {
  color: #0f2a4a !important;
  font-weight: 700;
  margin-bottom: 15px;
}

.ppic-rpl-card p {
  font-size: 14px;
  color: #444 !important;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .ppic-rpl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ppic-rpl-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ppic-rpl-header h2 {
    font-size: 26px;
  }
}

.ppic-rpl-btn {
  display: inline-block;
  background: #f8b400;
  color: #0f2a4a;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ppic-rpl-btn:hover {
  background: #e0a200;
  color: #ffffff;
}

/* =========================================================================
   11. ELEMENT: PPIC About
   ========================================================================= */
/* --- Wrapper Utama --- */
.ppic-about-wrapper {
  background-color: #0f2133; /* Warna biru gelap */
  padding: 80px 20px;
  text-align: center;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ppic-about-content {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Judul --- */
.ppic-about-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.ppic-about-title .text-yellow {
  color: #e8a81f; /* Warna kuning/emas sesuai gambar */
}

/* --- Deskripsi --- */
.ppic-about-desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Tombol --- */
.ppic-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00365a; /* Biru pekat untuk tombol */
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px; /* Bentuk pil bulat */
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.ppic-about-btn .btn-icon {
  margin-right: 8px;
  font-weight: bold;
}

.ppic-about-btn:hover {
  background-color: #004d80;
  color: #ffffff;
  text-decoration: none;
}

/* --- Responsif untuk HP --- */
@media (max-width: 768px) {
  .ppic-about-title {
    font-size: 32px;
  }
  .ppic-about-desc {
    font-size: 15px;
    padding: 0 15px;
  }
}

/* =========================================================================
   12. ELEMENT: PPIC TIMELANE
   ========================================================================= */

/* --- Wrapper & Header --- */
.ppic-timeline-wrapper {
  background-color: #f4f6f9; /* Warna abu-abu kebiruan sangat terang */
  padding: 80px 20px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #44546a; /* Warna teks kebiruan redup */
}

.ppic-timeline-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.ppic-timeline-title {
  font-size: 36px;
  font-weight: 700;
  color: #00365a;
  margin-bottom: 16px;
}

.ppic-timeline-title .text-yellow {
  color: #f7a800; /* Kuning emas */
}

.ppic-timeline-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #607080;
}

/* --- Timeline Container --- */
.ppic-timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Garis tengah */
.ppic-timeline-container::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #c99321;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

/* --- Timeline Items --- */
.timeline-item {
  padding: 15px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

/* Penempatan Kiri & Kanan */
.timeline-item:nth-child(odd) {
  left: 0;
}
.timeline-item:nth-child(even) {
  left: 50%;
}

/* --- Konten Kotak --- */
.timeline-content {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 49, 83, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 49, 83, 0.1);
  border-color: #f5b01b;
}

.timeline-year {
  font-size: 24px;
  font-weight: 700;
  color: #f7a800;
  margin: 0 0 10px 0;
}

.timeline-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #00365a;
  margin: 0 0 10px 0;
}

.timeline-item-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #607080;
  margin: 0;
}

/* --- Titik pada Garis --- */
.timeline-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #f7a800;
  border: 4px solid #f4f6f9; /* Simulasi border putih/transparan */
  border-radius: 50%;
  top: 45px;
  z-index: 2;
  box-shadow: 0 0 0 1px #c99321;
  box-sizing: content-box !important; /* Kunci ukuran agar tidak terpengaruh tema */
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: 0;
  transform: translateX(50%);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: 0;
  transform: translateX(-50%);
}

/* --- Responsif untuk HP (Max Width 768px) --- */
@media screen and (max-width: 768px) {
  /* Geser garis tengah ke kiri */
  .ppic-timeline-container::after {
    left: 31px;
  }

  /* Lebarkan item ke 100% */
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
  }

  /* Kembalikan posisi yang genap */
  .timeline-item:nth-child(even) {
    left: 0;
  }

  /* Sesuaikan posisi titik (semuanya di sebelah kiri) */
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 20px;
    right: auto;
    transform: none !important; /* Reset transform di tampilan HP */
  }
}

/* =========================================================================
   13. ELEMENT: PPIC VISI MISI
   ========================================================================= */

/* --- Wrapper Utama --- */
.ppic-vm-wrapper {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 30px; /* Jarak antara Visi dan Misi */
  padding: 20px;
}

/* --- Styling Kartu --- */
.ppic-vm-card {
  background-color: #f8f9fa; /* Abu-abu sangat terang mendekati putih */
  border-radius: 16px;
  padding: 35px 40px;
  border-left: 6px solid #f7a800; /* Garis kuning di sebelah kiri */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); /* Bayangan tipis agar elegan */
}

/* --- Header Kartu (Ikon & Judul) --- */
.ppic-vm-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.ppic-vm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppic-vm-title {
  font-size: 26px;
  font-weight: 700;
  color: #00365a; /* Biru gelap khas PPI */
  margin: 0;
}

/* --- Body Kartu (Teks Visi) --- */
.ppic-vm-body p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155; /* Warna teks abu-abu gelap */
  margin: 0;
}

/* --- Daftar Misi --- */
.ppic-misi-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ppic-misi-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
}

.ppic-misi-list li:last-child {
  margin-bottom: 0;
}

.misi-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px; /* Penyesuaian agar ikon panah sejajar dengan teks */
}

/* --- Responsif untuk HP --- */
@media screen and (max-width: 768px) {
  .ppic-vm-card {
    padding: 25px 20px;
  }

  .ppic-vm-title {
    font-size: 22px;
  }

  .ppic-vm-body p,
  .ppic-misi-list li {
    font-size: 15px;
  }
}

/* =========================================================================
   14. ELEMENT: PPIC EXCELLENCE
   ========================================================================= */
/* --- Wrapper & Header --- */
.ppic-exc-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ppic-exc-header {
  text-align: center;
  margin-bottom: 50px;
}

.ppic-exc-title {
  font-size: 32px;
  font-weight: 700;
  color: #00365a;
  margin-bottom: 12px;
}

.ppic-exc-title .text-yellow {
  color: #f7a800; /* Kuning emas PPI */
}

.ppic-exc-subtitle {
  font-size: 16px;
  color: #607080;
  margin: 0;
}

/* --- CSS Grid untuk Kotak --- */
.ppic-exc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Otomatis 3 kolom sejajar */
  gap: 20px; /* Jarak antar kotak */
}

/* --- Styling Kartu --- */
.exc-card {
  background-color: #ffffff;
  border: 1px solid #eaedf1;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 8px 20px rgba(0, 49, 83, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.exc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 49, 83, 0.12);
  border-color: var(--secondary, #f5b01b);
}

/* --- Kotak Huruf (Ikon) --- */
.exc-icon-box {
  background-color: #00365a; /* Biru pekat */
  color: #f7a800; /* Kuning teks */
  font-size: 24px;
  font-weight: 700;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0; /* Mencegah kotak huruf mengecil */
}

/* --- Teks Konten --- */
.exc-content {
  display: flex;
  flex-direction: column;
}

.exc-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #001f3f;
  margin: 0 0 6px 0;
}

.exc-item-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #4a5568;
  margin: 0;
}

/* --- Responsif --- */
/* Untuk Tablet: Ubah jadi 2 kolom */
@media screen and (max-width: 992px) {
  .ppic-exc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Untuk HP: Ubah jadi 1 kolom */
@media screen and (max-width: 768px) {
  .ppic-exc-title {
    font-size: 26px;
  }
  .ppic-exc-grid {
    grid-template-columns: 1fr;
  }
  .exc-card {
    padding: 20px;
  }
}

/* =========================================================================
   15. ELEMENT: PPIC AKADEMIK GRID HOME
   ========================================================================= */
.ppic-akademik-grid-home {
  background: #ffffff;
  padding: 72px 0;
}

.ppic-akademik-grid-home__container {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-akademik-grid-home__header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.ppic-akademik-grid-home__title {
  margin: 0 0 14px;
  color: #00365a;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
}

.ppic-akademik-grid-home__subtitle {
  margin: 0;
  color: #607080;
  font-size: 17px;
  line-height: 1.7;
}

.ppic-akademik-grid-home__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 22px 48px rgba(13, 35, 58, 0.1);
}

.ppic-akademik-grid-home__item {
  --ppic-akademik-overlay: linear-gradient(
    180deg,
    rgba(44, 41, 112, 0.72) 0%,
    rgba(56, 42, 129, 0.82) 100%
  );
  --ppic-akademik-button-bg: rgba(255, 255, 255, 0.18);
  --ppic-akademik-button-color: #ffffff;
  position: relative;
  min-height: 528px;
}

.ppic-akademik-grid-home__item.is-navy {
  --ppic-akademik-overlay: linear-gradient(
    180deg,
    rgba(44, 57, 131, 0.7) 0%,
    rgba(65, 52, 136, 0.82) 100%
  );
  --ppic-akademik-button-bg: linear-gradient(135deg, #59b6ff 0%, #3f91f0 100%);
}

.ppic-akademik-grid-home__item.is-magenta {
  --ppic-akademik-overlay: linear-gradient(
    180deg,
    rgba(198, 76, 169, 0.72) 0%,
    rgba(162, 65, 145, 0.84) 100%
  );
  --ppic-akademik-button-bg: linear-gradient(135deg, #ef80c9 0%, #d85cac 100%);
}

.ppic-akademik-grid-home__item.is-indigo {
  --ppic-akademik-overlay: linear-gradient(
    180deg,
    rgba(72, 76, 157, 0.72) 0%,
    rgba(67, 57, 135, 0.84) 100%
  );
  --ppic-akademik-button-bg: linear-gradient(135deg, #7c85ff 0%, #626ce4 100%);
}

.ppic-akademik-grid-home__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 528px;
  padding: 48px 28px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.ppic-akademik-grid-home__media,
.ppic-akademik-grid-home__overlay {
  position: absolute;
  inset: 0;
}

.ppic-akademik-grid-home__media {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.ppic-akademik-grid-home__item.has-no-image .ppic-akademik-grid-home__media {
  background-image: linear-gradient(
    135deg,
    rgba(5, 28, 51, 0.88) 0%,
    rgba(24, 77, 133, 0.92) 100%
  ) !important;
}

.ppic-akademik-grid-home__overlay {
  background: var(--ppic-akademik-overlay);
  transition: opacity 0.35s ease;
}

.ppic-akademik-grid-home__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 320px;
  text-align: center;
}

.ppic-akademik-grid-home__name {
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 28px rgba(6, 16, 34, 0.22);
}

.ppic-akademik-grid-home__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--ppic-akademik-button-bg);
  color: var(--ppic-akademik-button-color);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(16, 31, 65, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.ppic-akademik-grid-home__link:hover,
.ppic-akademik-grid-home__link:focus-visible {
  text-decoration: none;
}

.ppic-akademik-grid-home__link:hover .ppic-akademik-grid-home__media,
.ppic-akademik-grid-home__link:focus-visible .ppic-akademik-grid-home__media {
  transform: scale(1.06);
}

.ppic-akademik-grid-home__link:hover .ppic-akademik-grid-home__overlay,
.ppic-akademik-grid-home__link:focus-visible .ppic-akademik-grid-home__overlay {
  opacity: 0.9;
}

.ppic-akademik-grid-home__link:hover .ppic-akademik-grid-home__button,
.ppic-akademik-grid-home__link:focus-visible .ppic-akademik-grid-home__button {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 31, 65, 0.28);
  filter: brightness(1.04);
}

@media (max-width: 1199px) {
  .ppic-akademik-grid-home__item,
  .ppic-akademik-grid-home__link {
    min-height: 460px;
  }

  .ppic-akademik-grid-home__button {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .ppic-akademik-grid-home {
    padding: 60px 0;
  }

  .ppic-akademik-grid-home__grid {
    grid-template-columns: 1fr;
    gap: 1px;
    border-radius: 22px;
  }

  .ppic-akademik-grid-home__item,
  .ppic-akademik-grid-home__link {
    min-height: 340px;
  }
}

@media (max-width: 575px) {
  .ppic-akademik-grid-home__container {
    padding: 0 16px;
  }

  .ppic-akademik-grid-home__title {
    font-size: 29px;
  }

  .ppic-akademik-grid-home__subtitle {
    font-size: 15px;
  }

  .ppic-akademik-grid-home__link {
    padding: 40px 20px;
  }

  .ppic-akademik-grid-home__name {
    font-size: clamp(26px, 9vw, 38px);
  }

  .ppic-akademik-grid-home__button {
    min-height: 52px;
    padding: 12px 22px;
    font-size: 17px;
  }
}

/* =========================================================================
   16. ELEMENT: PPIC COURSES
   ========================================================================= */
.ppic-courses-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding: 76px 0 84px;
}

.ppic-courses-container {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-courses-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.ppic-courses-title {
  margin: 0;
  color: #0d233a;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
}

.ppic-courses-subtitle {
  margin: 0;
  color: #607080;
  font-size: 20px;
  line-height: 1.65;
}

.ppic-courses-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d5ea8 0%, #1a88e5 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(13, 94, 168, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.ppic-courses-button:hover,
.ppic-courses-button:focus-visible {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(13, 94, 168, 0.3);
  filter: brightness(1.03);
}

.ppic-courses-slider {
  position: relative;
}

.ppic-courses-slider__viewport {
  overflow: hidden;
  padding: 4px 2px 6px;
}

.ppic-courses-slider__track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.ppic-course-card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 0;
}

.ppic-course-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(13, 35, 58, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(13, 35, 58, 0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  will-change: transform;
}

.ppic-course-card__link:hover,
.ppic-course-card__link:focus-visible {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(245, 176, 27, 0.55);
  box-shadow: 0 14px 26px rgba(13, 35, 58, 0.09);
}

.ppic-course-card__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1.28 / 1;
  background: #eaf1f8;
}

.ppic-course-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ppic-course-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px 16px;
}

.ppic-course-card__label {
  color: #98a7b8;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ppic-course-card__title {
  margin: 0;
  color: #0d233a;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
}

.ppic-course-card__excerpt {
  margin: 0;
  color: #607080;
  font-size: 13px;
  line-height: 1.5;
}

.ppic-courses-slider__arrow {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 35, 58, 0.88);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.ppic-courses-slider__arrow:hover,
.ppic-courses-slider__arrow:focus-visible {
  background: #0d5ea8;
}

.ppic-courses-slider__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.ppic-courses-slider__arrow.is-prev {
  left: -18px;
}

.ppic-courses-slider__arrow.is-next {
  right: -18px;
}

.ppic-courses-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.ppic-courses-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 35, 58, 0.18);
  cursor: pointer;
}

.ppic-courses-slider__dot.is-active {
  background: #0d5ea8;
}

.ppic-courses-slider.is-single .ppic-courses-slider__arrow,
.ppic-courses-slider.is-single .ppic-courses-slider__dots {
  display: none;
}

.ppic-courses-empty {
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
  color: #607080;
  box-shadow: 0 14px 32px rgba(13, 35, 58, 0.08);
}

@media (max-width: 1199px) {
  .ppic-courses-title {
    font-size: 42px;
  }

  .ppic-course-card {
    flex-basis: calc((100% - 48px) / 4);
  }

  .ppic-course-card__title {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .ppic-courses-section {
    padding: 64px 0 72px;
  }

  .ppic-courses-slider__track {
    gap: 14px;
  }

  .ppic-course-card {
    flex-basis: calc((100% - 28px) / 3);
  }

  .ppic-courses-title {
    font-size: 36px;
  }

  .ppic-courses-subtitle {
    font-size: 18px;
  }

  .ppic-courses-slider__arrow.is-prev {
    left: -10px;
  }

  .ppic-courses-slider__arrow.is-next {
    right: -10px;
  }
}

@media (max-width: 575px) {
  .ppic-courses-container {
    padding: 0 16px;
  }

  .ppic-courses-slider__track {
    gap: 12px;
  }

  .ppic-course-card {
    flex-basis: 100%;
  }

  .ppic-courses-title {
    font-size: 30px;
  }

  .ppic-courses-subtitle {
    font-size: 16px;
  }

  .ppic-course-card__title {
    font-size: 20px;
  }

  .ppic-courses-slider__arrow {
    top: 34%;
    width: 34px;
    height: 34px;
  }

  .ppic-courses-slider__arrow.is-prev {
    left: -6px;
  }

  .ppic-courses-slider__arrow.is-next {
    right: -6px;
  }
}
