/* ===========================
   SOTK - CSS
   (Extends beranda.css + tentangkami.css)
=========================== */

/* ===== MAIN ===== */
.sotk-main {
  background: var(--gray-soft);
  min-height: calc(100vh - var(--nav-height) - 80px);
}

/* ===========================
   HERO HEADER
=========================== */
.sotk-hero {
  background: var(--gradient-navbar);
  padding: 52px 0 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sotk-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.sotk-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.sotk-hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== LAYOUT ===== */
.sotk-wrap {
  padding-top: 40px;
  padding-bottom: 72px;
}

/* ===== GAMBAR STRUKTUR ORGANISASI ===== */
.sotk-image-card {
  width: 100%;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  overflow: auto;
  position: relative;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sotk-image-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  z-index: 1;
}

.sotk-image-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(21, 101, 192, 0.12);
}

.sotk-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Placeholder label */
.sotk-img-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-primary);
  opacity: 0.4;
  pointer-events: none;
}

.sotk-image-card img:not([src=""]) + .sotk-img-label {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .sotk-hero-title {
    font-size: 1.8rem;
  }

  .sotk-image-card {
    padding: 16px;
  }
}

@media (max-width: 560px) {
  .sotk-hero {
    padding: 40px 0 36px;
  }

  .sotk-hero-title {
    font-size: 1.5rem;
  }

  .sotk-image-card {
    padding: 12px;
  }
}