/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  padding: 65px 0 96px;
}

.hero-avatar {
  width: clamp(5.25rem, 3.0559rem + 7.0213vw, 9.375rem) !important;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero .hero-name {
  font-weight: 500;
  color: var(--text-primary);
}

.hero .hero-description {
  font-weight: 400;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-paragraph {
  margin-top: 48px;
  margin-left: 20%;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .hero-avatar {
    width: 72px;
    height: auto;
    margin-bottom: 16px;
  }

  .hero-paragraph {
    margin-left: 0;
    max-width: 100%;
    margin-top: 32px;
  }

  .hero-title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 25px;
  }
}