/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}

/* Wrapper */
.wrapper {
  width: 100%;
  max-width: 1000px;
}

/* Profile Card */
.profile-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Left Section */
.profile-left {
  background: linear-gradient(160deg, #3b82f6, #1d4ed8);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1rem;
  flex-shrink: 0;
}

.profile-avatar img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

/* Social Icons */
.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  color: #fff;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.6rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: #fff;
  color: #2563eb;
}

/* Right Section */
.profile-right {
  flex: 1;
  padding: 2rem 2.5rem;
}

.profile-right header h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #111827;
}

.role {
  color: #2563eb;
  margin: 0.3rem 0 1rem;
  font-weight: 500;
}

.bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1.2rem;
}

.time {
  font-weight: 500;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

/* Lists */
.lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.list-card {
  background: #f9fafb;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.list-card:hover {
  background: #eef2ff;
}

.list-card h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #111827;
}

.list-card ul {
  list-style: none;
}

.list-card li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}

.list-card li:last-child {
  border-bottom: none;
}

/* Responsive */
@media (min-width: 768px) {
  .profile-card {
    flex-direction: row;
  }

  .profile-left {
    width: 300px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .profile-right {
    padding: 3rem;
  }

  .lists {
    grid-template-columns: 1fr 1fr;
  }
}
