.profile-section {
  padding: 120px 20px;
  background: #fff;
}

.profile-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
}

/* LEFT IMAGE FIXED */
.profile-image {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.profile-image img {
  width: 100%;
  border-radius: 28px;
  display: block;
}

/* RIGHT CONTENT */
.profile-content {
  padding-right: 40px;
}

.profile-pill {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold);
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 18px;
}

.profile-name {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.profile-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.profile-contact p {
  font-size: 14px;
  margin-bottom: 12px;
}

.profile-content hr {
  margin: 40px 0;
  border: none;
  height: 1px;
  background: #e5e5e5;
}

.profile-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.profile-list {
  margin: 20px 0;
  padding-left: 20px;
}

.profile-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .profile-container { grid-template-columns: 1fr; gap: 40px; }
  .profile-image { position: relative; top: 0; }
  .profile-name { font-size: 36px; }
  .profile-content { padding-right: 0; }
}

/* ================= PHONE ================= */
@media (max-width: 768px) {
  .profile-section { padding: 80px 16px; }
  .profile-name { font-size: 28px; }
  .profile-intro { font-size: 14px; }
  .profile-content h2 { font-size: 24px; }
}

/* ================= SMALL PHONE ================= */
@media (max-width: 480px) {
  .profile-name { font-size: 24px; }
}
