/* ===== 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;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .attorney-profile {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .attorney-profile img {
    width: 160px;
    height: 160px;
  }
  
  .attorney-profile h1 {
    font-size: 1.6rem;
  }
  
  .attorney-profile .meta {
    font-size: 0.9rem;
  }
  
  .attorney-card {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .attorney-photo img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
  
  .attorney-name {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .attorney-profile {
    padding: 1rem;
    margin: 0.75rem;
  }
  
  .attorney-profile img {
    width: 140px;
    height: 140px;
  }
  
  .attorney-profile h1 {
    font-size: 1.4rem;
  }
  
  .attorney-card {
    padding: 1rem;
  }
  
  .attorney-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 400px) {
  .attorney-profile h1 {
    font-size: 1.2rem;
  }
  
  .attorney-name {
    font-size: 1.15rem;
  }
}
