.profile-page {
  min-height: 100vh;
}

.bg-green-light {
  background-color: var(--primary-light);
}

.py-4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.p-4 { padding: 2rem; }

.text-primary { color: var(--primary-color); }
.text-muted { color: var(--text-muted); }

.bg-soft {
  background-color: var(--bg-soft-gray);
  border-left: 4px solid var(--accent-color);
}

.rounded { border-radius: var(--radius-sm); }
.sticky-top {
  position: sticky;
  top: 2rem;
}

/* Layout Profil */
.profile-grid {
  grid-template-columns: 2fr 1fr;
  align-items: start;
}

.content-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: justify;
}

/* Card Perangkat Desa */
.official-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.official-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.official-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.official-info h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.official-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
}

/* .skeleton-text dan .skeleton-circle sekarang ada di index.css (dipakai semua halaman) */

.w-50 { width: 50%; }
.w-75 { width: 75%; }

.map-embed-wrapper {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.map-embed-wrapper iframe {
  display: block;
  max-width: 100%;
}

/* Responsif */
@media (max-width: 992px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .sticky-top {
    position: static;
  }
}

@media (max-width: 576px) {
  .map-embed-wrapper iframe {
    height: 260px !important;
  }
}