body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #fafbfc;
}

.artikel-header {
  background-color: #74c5f4;
  padding: 25px 30px;
}

.artikel-header h2 {
  margin: 0;
  font-weight: bold;
  font-size: 28px;
}

.artikel-container {
  width: 95%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.artikel-img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.artikel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
}

.artikel-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
  color: #333;
  text-align: justify;
  max-width: 600px;
}

.artikel-content .btn {
  max-width: fit-content;
  padding: 10px 24px;
}


.btn {
  display: inline-block;
  background-color: #96d7f0;
  color: #000;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.btn:hover {
  background-color: #75c7e5;
}

@media (max-width: 900px) {
  .artikel-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .artikel-img {
    width: 90%;
    height: auto;
    max-width: 350px;
    margin-bottom: 18px;
  }
  .artikel-content {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .artikel-content p {
    text-align: justify;
  }
}