:root {
  --gray: #1e1e1e;
  --orange: #df4e19;
}

.about-hero {
  margin-top: 8px;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 26px;
  background:
    radial-gradient(1050px 260px at 100% -60%, rgba(223, 78, 25, 0.1), transparent 45%),
    radial-gradient(500px 180px at 0% -60%, rgba(30, 30, 30, 0.08), transparent 40%),
    #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.about-eyebrow {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.about-main-title {
  font-size: clamp(1.5rem, 2.9vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--gray);
  margin-bottom: 8px;
}

.about-main-subtitle {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e6e6e;
  margin-bottom: 12px;
}

.about-main-copy {
  max-width: 900px;
  font-size: 0.84rem;
  line-height: 1.72;
  color: #5f5f5f;
}

.about-sections-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-card {
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
}

.about-card h2 {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.about-card p {
  color: #666666;
  font-size: 0.79rem;
  line-height: 1.65;
}

.about-goals-list {
  margin: 0;
  padding-left: 18px;
  color: #666666;
  font-size: 0.79rem;
  line-height: 1.68;
}

.developers-section {
  margin-top: 18px;
  margin-bottom: 18px;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 22px;
  background: #ffffff;
}

.developers-head {
  text-align: center;
  margin-bottom: 16px;
}

.developers-head h2 {
  color: var(--gray);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.developers-head p {
  color: #666666;
  font-size: 0.78rem;
}

.student-profile {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
  align-items: start;
}

.profile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 18px 14px 14px;
  display: grid;
  justify-items: center;
}

.profile-bar {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--gray), var(--orange));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 2px auto 12px;
  border: 2px solid #f0f0f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.student-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gray);
  margin-bottom: 2px;
}

.profile-divide {
  width: 64%;
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 8px 0;
}

.student-line {
  font-size: 0.75rem;
  line-height: 1.58;
  color: #686868;
  text-align: center;
}

@media (max-width: 950px) {
  .about-sections-grid,
  .student-profile {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .developers-section {
    padding: 18px;
    border-radius: 12px;
  }

  .about-main-copy,
  .about-card p,
  .about-goals-list,
  .student-line {
    font-size: 0.76rem;
  }
}