/* ─── Expert Lawyer Box ─────────────────────────────────────────────── */
/* Auto-displayed on articles matched via practice-areas taxonomy.      */
/* Responsive RTL-ready component.                                      */

.justice-expert-box {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.15);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.06);
}

.justice-expert-box__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #1e1b4b;
  border-bottom: 2px solid rgba(99, 102, 241, 0.12);
  padding-bottom: 0.75rem;
}

.justice-expert-box__card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem 0;
}

.justice-expert-box__card + .justice-expert-box__card {
  border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.justice-expert-box__photo-wrap {
  flex-shrink: 0;
}

.justice-expert-box__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #6366f1;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.justice-expert-box__info {
  flex: 1;
  min-width: 0;
}

.justice-expert-box__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #1e1b4b;
}

.justice-expert-box__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.justice-expert-box__name a:hover {
  color: #6366f1;
}

.justice-expert-box__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #059669;
  background: #d1fae5;
  padding: 2px 8px;
  border-radius: 10px;
  vertical-align: middle;
  margin-inline-start: 0.5rem;
}

.justice-expert-box__firm {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0 0 0.25rem;
}

.justice-expert-box__bio {
  font-size: 0.85rem;
  color: #475569;
  margin: 0 0 0.25rem;
  line-height: 1.5;
}

.justice-expert-box__years {
  font-size: 0.8rem;
  color: #6366f1;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.justice-expert-box__areas {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0 0 0.75rem;
}

.justice-expert-box__cta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.justice-expert-box__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.justice-expert-box__btn--phone {
  background: #6366f1;
  color: #fff;
}
.justice-expert-box__btn--phone:hover {
  background: #4f46e5;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.justice-expert-box__btn--whatsapp {
  background: #22c55e;
  color: #fff;
}
.justice-expert-box__btn--whatsapp:hover {
  background: #16a34a;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.justice-expert-box__btn--profile {
  background: #fff;
  color: #6366f1;
  border-color: #6366f1;
}
.justice-expert-box__btn--profile:hover {
  background: #6366f1;
  color: #fff;
}

/* ── Mobile ────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .justice-expert-box__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .justice-expert-box__cta {
    justify-content: center;
  }

  .justice-expert-box__photo {
    width: 64px;
    height: 64px;
  }
}
