.about-hero {
  padding-bottom: 1rem;
}

.about-container {
  padding-top: 0.5rem;
  padding-bottom: 5.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.4rem;
  align-items: center;
}

.avatar-shell {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(145deg, #ffffff 0%, #ffe3d5 100%);
  box-shadow: 0 12px 28px rgba(227, 91, 44, 0.2);
}

.avatar {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.intro h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.about-btn-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  flex: 0 0 auto;
}

.about-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.about-btn-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.about-btn-icon-coffee {
  width: 1.28rem;
  height: 1.28rem;
}

.about-btn-primary {
  background: var(--accent);
  color: #fff;
}

.about-btn-primary:hover {
  background: #c84f26;
  transform: translateY(-1px);
}

.about-btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.about-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.side-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.95rem;
}

.side-links a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.side-links a:hover {
  text-decoration: underline;
}

.card .about-support-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .about-container {
    padding-bottom: 4.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .avatar-shell {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .actions,
  .side-links {
    justify-content: center;
  }
}
