/* ===== Attorney Profile Page ===== */

.attorney-profile {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.attorney-profile img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #eee;
}

.attorney-profile h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.attorney-profile .meta {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.attorney-profile .desc {
  text-align: left;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.attorney-profile .btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: #0073e6;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.attorney-profile .btn:hover {
  background: #005bb5;
}

.attorney-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.attorney-photo img {
  width: 280px;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
}

.attorney-info {
  flex: 1;
  min-width: 260px;
}

.attorney-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.attorney-role {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

.attorney-desc {
  margin-top: 1.5rem;
  line-height: 1.6;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}
