.elementor-14479 .elementor-element.elementor-element-91e9364{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-69d18a0 */<style>
/* === Grid Container === */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px;
}

/* === Policy Card === */
.policy-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* === Image Section === */
.policy-image {
  width: 100%;
  height: 320px; /* tinggi potrait */
  overflow: hidden;
}

.policy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* ✅ gambar center top */
  transition: transform 0.4s ease;
}

.policy-card:hover .policy-image img {
  transform: scale(1.08);
}

/* === Content Section === */
.policy-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.policy-content h3 {
  font-size: 18px;
  color: #1A3A28;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* === Footer === */
.policy-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.btn-policy {
  display: inline-block;
  background: #1A3A28;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn-policy:hover {
  background: #2b5a3f;
}

/* === Responsiveness === */
@media (max-width: 992px) {
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-image {
    height: 260px;
  }
}
</style>/* End custom CSS */