/* Container utama */
.garapmedia-authors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Kotak author */
.garapmedia-author-box {
  flex: 1 1 calc(16.66% - 10px); /* desktop: 6 blok */
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: #fff;
  border: 1px solid #ADAECB;
  border-radius: 5px;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* Hover effect */
.garapmedia-author-box:hover {
  background: #EBEBF2;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Foto author */
.garapmedia-author-avatar img {
  width: 100px !important;
  height: 100px !important;
  border-radius: 50% !important;
  object-fit: cover;
  margin-bottom: 20px; /* jarak bebas ke jumlah artikel */
}

/* Jumlah artikel */
.garapmedia-author-postcount {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 0px; /* jarak bebas ke nama */
}

/* Nama penulis */
.garapmedia-author-name {
  font-size: 1.2em !important;
  font-weight: 700;
  line-height: 1.2em;
  max-height: 2.4em; /* maksimal 2 baris */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

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