/* ==========================================
   OSIS-MPK.CSS
   ========================================== */

/* ── Hero ── */
.om-hero {
  background: var(--bg-soft);
  padding: 64px 0 0;
  overflow: hidden;
}
.om-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: flex-end;
  min-height: 400px;
}
.om-hero-img {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
}
.om-hero-img::before {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 320px;
  border-radius: 50%; background: var(--primary); z-index: 0;
}
.om-hero-img::after {
  content: '';
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 2px dashed rgba(138,31,45,0.35); z-index: 0;
}
.om-hero-img img {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px;
  object-fit: contain; display: block;
  border-radius: 50%;
}
.om-hero-body {
  padding: 0 0 64px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.om-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 20px;
}
.om-breadcrumb a { color: var(--ink-soft); }
.om-breadcrumb a:hover { color: var(--primary); }
.om-breadcrumb svg { width: 13px; height: 13px; }
.om-breadcrumb .current { color: var(--ink); font-weight: 600; }
.om-hero-body h1 {
  font-size: 3rem; font-weight: 800;
  line-height: 1.1; margin: 0 0 20px; color: var(--ink);
}
.om-hero-body h1 .red { color: var(--primary); }
.om-hero-body p {
  font-size: 1rem; color: var(--ink-soft);
  line-height: 1.75; margin: 0 0 32px; max-width: 480px;
}
.om-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-size: 0.95rem; font-weight: 700;
  padding: 13px 28px; border-radius: 8px;
  transition: background .15s, transform .15s;
  width: fit-content;
}
.om-hero-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }
.om-hero-cta svg { width: 16px; height: 16px; }

/* ── Visi Misi ── */
.om-vismis { padding: 72px 0; background: #fff; }
.om-vismis-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
}
.om-vismis-card {
  border-radius: var(--radius-md);
  padding: 36px 40px;
  border: 1px solid var(--border);
}
.om-visi { background: var(--primary); color: #fff; }
.om-misi { background: var(--bg-soft); }
.om-vismis-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.om-visi .om-vismis-icon { background: rgba(255,255,255,.2); }
.om-misi .om-vismis-icon { background: rgba(138,31,45,.1); }
.om-vismis-icon svg { width: 24px; height: 24px; }
.om-visi .om-vismis-icon svg { stroke: #fff; }
.om-misi .om-vismis-icon svg { stroke: var(--primary); }
.om-vismis-card h3 { font-size: 1.2rem; font-weight: 800; margin: 0 0 12px; }
.om-visi h3 { color: #fff; }
.om-misi h3 { color: var(--ink); }
.om-visi p { color: rgba(255,255,255,.9); font-size: 0.97rem; line-height: 1.75; margin: 0; }
.om-misi ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.om-misi li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6;
}
.om-misi li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: 7px;
}

/* ── Section head ── */
.om-section-head { margin-bottom: 40px; }
.om-section-head h2 { font-size: 1.8rem; font-weight: 800; margin: 0 0 6px; color: var(--ink); }
.om-section-head h2 .red { color: var(--primary); }
.om-section-head p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ── Pengurus ── */
.om-pengurus { padding: 64px 0; background: var(--bg-soft); }
.om-pengurus--mpk { background: #fff; }
.om-pengurus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.om-pengurus-grid--4 { grid-template-columns: repeat(4, 1fr); }

.om-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.om-pengurus--mpk .om-card { background: var(--bg-soft); }
.om-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.om-card-photo {
  width: 100%; aspect-ratio: 1;
  background: var(--bg-soft-2); overflow: hidden;
  position: relative;
}
.om-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.om-card-avatar {
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  background: var(--bg-soft-2);
}
.om-card-avatar svg { width: 48px; height: 48px; stroke: var(--ink-soft); }
.om-card-body { padding: 16px 16px 20px; }
.om-card-jabatan {
  display: block;
  font-size: 0.72rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px;
}
.om-card-body h4 { font-size: 0.95rem; font-weight: 700; margin: 0 0 4px; color: var(--ink); }
.om-card-kelas { font-size: 0.78rem; color: var(--ink-soft); }

/* ── Program Kerja ── */
.om-proker { padding: 64px 0 80px; background: var(--bg-soft); }
.om-proker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.om-proker-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 28px 32px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.om-proker-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.om-proker-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.om-proker-card h4 { font-size: 1rem; font-weight: 800; margin: 0 0 8px; color: var(--ink); }
.om-proker-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.65; margin: 0; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .om-hero .container { grid-template-columns: 1fr; min-height: auto; }
  .om-hero-img { order: 2; padding: 40px 0 0; }
  .om-hero-body { order: 1; padding: 0 0 32px; }
  .om-hero-body h1 { font-size: 2.2rem; }
  .om-vismis-grid { grid-template-columns: 1fr; }
  .om-pengurus-grid { grid-template-columns: repeat(2, 1fr); }
  .om-pengurus-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .om-proker-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .om-hero-body h1 { font-size: 1.8rem; }
  .om-hero-img::before { width: 220px; height: 220px; }
  .om-hero-img::after  { width: 245px; height: 245px; }
  .om-proker-grid { grid-template-columns: 1fr; }
  .om-vismis-card { padding: 24px 20px; }
}
