.elementor-13256 .elementor-element.elementor-element-91e9364{--display:flex;}/* Start custom CSS for html, class: .elementor-element-69d18a0 *//* Grid Container */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom */
  gap: 24px; /* jarak antar card */
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Card */
.policy-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

/* Gambar */
.policy-image img {
  width: 100%;
  height: 200px;
  object-fit: cover !important;
}

/* Konten */
.policy-content {
  padding: 20px;
  border: 1px solid #d9d9d9;
  border-top: none;
  border-radius: 0 0 16px 16px;
}

.policy-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.policy-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #333;
}

/* Footer */
.policy-footer {
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
}

.policy-date {
  font-size: 13px;
  font-weight: bold;
  color: #666;
}

.btn-policy {
  background: #133122;
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: 5px;
}

.btn-policy:hover {
  background: #0d2419;
  color:white;
}

/* Responsif: jadi 1 kolom di HP */
@media (max-width: 768px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */