.wrapper-program--card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.3s ease;
  display: block;
}

.wrapper-program--card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.logo-section {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.program-logo {
  width: auto;
  height: 46px;
}

.wrapper-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Posisi di bawah */
  height: 56px; /* Atau set tinggi tetap */
  margin-bottom: 12px;
}

.main-heading {
  font-size: 22px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0px;
  line-height: 1.2;
  margin-top: auto;

  display: -webkit-box;
  -webkit-line-clamp: 2;       /* Jumlah maksimal baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.subtitle {
  font-size: 14px;
  color: #444444;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 0;
}

@media (max-width: 768px) {
    .card {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .logo-section {
        margin-bottom: 60px;
    }

    .logo {
        width: 60px;
        height: 60px;
        margin-right: 16px;
    }

    .logo-inner {
        width: 45px;
        height: 45px;
    }

    .magnifying-glass {
        width: 24px;
        height: 24px;
        border-width: 2px;
    }

    .magnifying-glass::after {
        width: 8px;
        height: 2px;
        bottom: -6px;
        right: -6px;
    }

    .logo-text .asean {
        font-size: 20px;
    }

    .logo-text .digital,
    .logo-text .literacy,
    .logo-text .programme {
        font-size: 15px;
    }

    .main-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .card {
        padding: 30px 20px;
    }

    .logo-section {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .logo {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .main-heading {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }
}