/* ============================================================
   PAKINDO AUTHORS STYLE
   Digunakan oleh shortcode [pakindo_authors]
   Struktur:
   Foto → Nama → Jumlah Post → Jumlah Artikel
   ============================================================ */

/* 🔹 Container utama */
.pakindo-authors-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

/* 🔹 Kotak per penulis */
.pakindo-author-box {
  flex: 1 1 calc(16.16% - 10px); /* 6 per row (desktop) */
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 20px 10px;
  text-decoration: none;
  color: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Hover effect */
.pakindo-author-box:hover {
  background: #f8f9fb;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 🔹 Foto profile */
.pakindo-author-avatar img {
  width: 100px !important;
  height: 100px !important;
  border-radius: 50% !important;
  object-fit: cover;
  margin-bottom: 10px;
}

/* 🔹 Nama penulis */
.pakindo-author-name {
  font-size: 1.2em !important;
  font-weight: 700;
  line-height: 1.2em;
  color: #1a1a1a; /* Warna teks nama penulis */
  max-height: 2.4em; /* maksimal 2 baris */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 🔹 Jumlah post */
.pakindo-author-postcount {
  font-size: 0.9em;
  color: #666666; /* Warna teks jumlah post */
  margin-bottom: 3px;
}

/* 🔹 Jumlah artikel */
.pakindo-author-articlecount {
  font-size: 0.9em;
  color: #0077b6; /* Warna teks jumlah artikel (biru khas Pakindo) */
  font-weight: 600;
}

/* ============================================================
   Responsif
   ============================================================ */

/* Tablet (≤1024px): 4 per row */
@media (max-width: 1024px) {
  .pakindo-author-box {
    flex: 1 1 calc(25% - 10px);
  }
}

/* Mobile (≤600px): 2 per row */
@media (max-width: 600px) {
  .pakindo-author-box {
    flex: 1 1 calc(50% - 10px);
  }
}
