.home-main {
  padding: 0 0 48px;
}

.profile-hero {
  padding: 20px 0 32px;
}

.profile-cover {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
  background: #dfe7f3;
  border-radius: 24px;
}

.profile-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-intro {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: -58px;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.profile-intro-image-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 6px solid #f7f8fc;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.profile-intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-intro-text {
  padding-bottom: 18px;
}

.profile-intro-text h1 {
  font-size: 2rem;
  line-height: 1.1;
  color: #111827;
}

.profile-intro-text p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #334155;
}

.profile-divider {
  width: 100%;
  height: 1px;
  margin-top: 24px;
  background: rgba(17, 24, 39, 0.1);
}

.about-section {
  padding-top: 24px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.about-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.about-group + .about-group {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.about-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.about-group-title i {
  font-size: 1rem;
  color: #4b5563;
  width: 18px;
  text-align: center;
}

.about-list {
  display: grid;
  gap: 12px;
}

.about-list li {
  color: #374151;
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-list li strong {
  color: #111827;
  margin-right: 6px;
}

.about-text {
  color: #374151;
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .profile-cover {
    height: 190px;
    border-radius: 18px;
  }

  .profile-intro {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: -46px;
    text-align: center;
    padding: 0;
  }

  .profile-intro-image-wrap {
    width: 130px;
    height: 130px;
  }

  .profile-intro-text {
    padding-bottom: 0;
  }

  .profile-intro-text h1 {
    font-size: 1.6rem;
  }
}
