/* ============================
   Wilayah Kerja Page Styles
   ============================ */

.wilayah-kerja-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.wilayah-kerja-card {
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wilayah-kerja-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.wilayah-kerja-card-header {
  background: linear-gradient(135deg, #ff8c00 0%, #ff8c00 100%);
  color: white;
  padding: 1.5rem;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.wilayah-kerja-card-header h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.wilayah-kerja-card-body {
  padding: 1.5rem;
}

.wilayah-kerja-info {
  margin-bottom: 1.5rem;
}

.wilayah-kerja-info h3 {
  margin: 0 0 0.75rem 0;
  color: #333;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.wilayah-kerja-info p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

.wilayah-kerja-map {
  margin: 1.5rem 0;
  border-radius: 0.375rem;
  overflow: hidden;
  width: 100%;
  height: 300px;
}

.wilayah-kerja-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
  display: block;
}

.wilayah-kerja-contact {
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.wilayah-kerja-contact p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

.wilayah-kerja-contact strong {
  color: #333;
}

.wilayah-kerja-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wilayah-kerja-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .wilayah-kerja-card-header {
    min-height: auto;
  }

  .wilayah-kerja-map {
    min-height: 250px;
  }
}
