.artikel-card {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  align-items: stretch;
}

.artikel-image img {
  width: 250px;
  height: auto;
  display: block;
}

.artikel-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.artikel-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.artikel-body {
  flex-grow: 1;
  color: #444;
  margin-bottom: 20px;
}

.artikel-button {
  margin-top: auto;
  text-align: right;
}

.artikel-button a {
  background: #5a8f00;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.artikel-button a:hover {
  background: #4a7600;
}

/* ========================= */
/* Responsive untuk HP */
/* ========================= */

@media (max-width: 768px) {

  .artikel-card {
    flex-direction: column;
    gap: 20px;
  }

  .artikel-image img {
    width: 100%;
  }

  .artikel-title {
    font-size: 20px;
  }

  .artikel-body {
    font-size: 14px;
  }

  .artikel-button a {
    width: 100%;
    text-align: center;
  }

}