/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Hero Section */
.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -200px;
  left: -100px;
  animation: hero-glow-pulse 10s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--color-secondary);
  bottom: -150px;
  right: -100px;
  animation: hero-glow-pulse 10s ease-in-out infinite reverse;
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-hero-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame img,
.image-frame video {
  width: 100%;
  height: auto;
  display: block;
}

.image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(10, 10, 26, 0.8) 100%
  );
  pointer-events: none;
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: -1;
}

.deco-circle {
  width: 100px;
  height: 100px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.5;
  animation: deco-rotate 20s linear infinite;
}

.deco-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 2px;
  background: var(--gradient-primary);
  transform: translate(-50%, -50%) rotate(45deg);
}

@keyframes deco-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #fff 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.hero-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.hero-social .social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.hero-social .social-link svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.hero-social .social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-3px);
}

.hero-social .social-link:hover svg {
  color: var(--text-primary);
}

/* Story Section */
.about-story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(68% 64% at 18% 14%, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(52% 58% at 88% 18%, rgba(133, 118, 96, 0.16) 0%, rgba(133, 118, 96, 0) 66%),
    linear-gradient(180deg, #d7d5d1 0%, #cbc6c0 12%, #5d5663 34%, #181332 72%, #100d25 100%);
}

.about-story::before,
.about-story::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(88px);
  opacity: 0.28;
  animation: about-neutral-float 18s ease-in-out infinite;
}

.about-story::before {
  width: 28rem;
  height: 14rem;
  top: -4rem;
  left: -5rem;
  background: rgba(255, 247, 233, 0.28);
}

.about-story::after {
  width: 24rem;
  height: 18rem;
  right: -6rem;
  bottom: 10%;
  background: rgba(111, 87, 146, 0.22);
  animation-delay: -8s;
}

.about-story .section-inner {
  position: relative;
  z-index: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #fff 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.story-stat {
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.story-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.story-stat .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.story-stat .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Timeline Section */
.about-timeline {
  background:
    radial-gradient(68% 78% at 14% 16%, rgba(194, 154, 120, 0.18) 0%, rgba(194, 154, 120, 0) 68%),
    radial-gradient(54% 70% at 86% 22%, rgba(145, 108, 129, 0.16) 0%, rgba(145, 108, 129, 0) 70%),
    linear-gradient(180deg, #15101a 0%, #1a1320 52%, #120f18 100%);
  overflow: hidden;
}

.about-timeline::before,
.about-timeline::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.34;
  pointer-events: none;
  animation: about-neutral-float 14s ease-in-out infinite;
}

.about-timeline::before {
  width: 22rem;
  height: 22rem;
  top: 4rem;
  left: -5rem;
  background: rgba(191, 149, 111, 0.32);
}

.about-timeline::after {
  width: 20rem;
  height: 20rem;
  right: -4rem;
  bottom: 2rem;
  background: rgba(152, 115, 137, 0.28);
  animation-delay: -6s;
}

.about-timeline .section-inner {
  position: relative;
  z-index: 1;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    #d6b08e 0%,
    #b78895 52%,
    #d6b08e 100%
  );
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: var(--space-xl);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 10px;
  top: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #d9b18f 0%, #b78598 100%);
  border-radius: 50%;
  border: 3px solid #17121a;
  box-shadow: 0 0 0 3px rgba(207, 166, 126, 0.5);
}

.timeline-content {
  background: linear-gradient(160deg, rgba(39, 28, 42, 0.9), rgba(24, 19, 28, 0.88));
  border: 1px solid rgba(224, 194, 166, 0.1);
  box-shadow: 0 16px 30px rgba(8, 7, 12, 0.24);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-normal);
}

.timeline-content:hover {
  border-color: rgba(225, 201, 178, 0.22);
  transform: translateX(5px);
}

.timeline-date {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(135deg, #c59a78 0%, #b88696 100%);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Expertise Section */
.about-expertise {
  position: relative;
  background:
    radial-gradient(74% 86% at 14% 16%, rgba(210, 186, 138, 0.18) 0%, rgba(210, 186, 138, 0) 60%),
    radial-gradient(60% 70% at 86% 18%, rgba(255, 197, 146, 0.16) 0%, rgba(255, 197, 146, 0) 58%),
    radial-gradient(54% 68% at 50% 100%, rgba(166, 132, 255, 0.12) 0%, rgba(166, 132, 255, 0) 64%),
    linear-gradient(180deg, #2b2331 0%, #241d2b 26%, #1a1923 60%, #16151d 100%);
  overflow: hidden;
}

.about-expertise::before,
.about-expertise::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.24;
  filter: blur(80px);
  animation: about-neutral-float 16s ease-in-out infinite;
}

.about-expertise::before {
  width: 24rem;
  height: 24rem;
  top: -7rem;
  right: 10%;
  background: rgba(241, 195, 135, 0.28);
}

.about-expertise::after {
  width: 18rem;
  height: 18rem;
  bottom: -4rem;
  left: 8%;
  background: rgba(173, 148, 255, 0.22);
  animation-delay: -7s;
}

.about-expertise .section-inner {
  position: relative;
  z-index: 1;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.expertise-card {
  padding: var(--space-xl);
  background: linear-gradient(160deg, rgba(58, 46, 58, 0.82), rgba(30, 27, 37, 0.88));
  border: 1px solid rgba(244, 218, 180, 0.12);
  box-shadow: 0 16px 32px rgba(12, 10, 16, 0.26);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-normal);
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 225, 186, 0.22);
  box-shadow: 0 24px 42px rgba(18, 14, 24, 0.34);
}

.expertise-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f2c790 0%, #9b8dff 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 28px rgba(123, 99, 181, 0.22);
}

.expertise-icon svg {
  width: 30px;
  height: 30px;
  color: var(--text-primary);
}

.expertise-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.expertise-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@keyframes about-neutral-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 18px, 0) scale(1.08);
  }
}

/* Education Section */
.about-education {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(62% 72% at 16% 20%, rgba(126, 103, 88, 0.16) 0%, rgba(126, 103, 88, 0) 64%),
    radial-gradient(56% 68% at 84% 76%, rgba(85, 70, 106, 0.18) 0%, rgba(85, 70, 106, 0) 66%),
    linear-gradient(180deg, #17151d 0%, #151322 46%, #17102a 100%);
}

.about-education::before,
.about-education::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(82px);
  opacity: 0.24;
  animation: about-neutral-float 17s ease-in-out infinite;
}

.about-education::before {
  width: 22rem;
  height: 15rem;
  top: 3rem;
  right: -4rem;
  background: rgba(189, 151, 117, 0.22);
}

.about-education::after {
  width: 20rem;
  height: 20rem;
  left: -6rem;
  bottom: -4rem;
  background: rgba(122, 104, 166, 0.2);
  animation-delay: -7s;
}

.about-education .section-inner {
  position: relative;
  z-index: 1;
}

.education-list {
  max-width: 800px;
  margin: 0 auto;
}

.education-item {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(255, 235, 214, 0.08);
}

.education-item:last-child {
  border-bottom: none;
}

.education-year {
  width: 120px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.education-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.education-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.education-focus {
  font-size: 0.85rem;
  color: var(--color-secondary);
}

/* Interests Section */
.about-interests {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 76% at 20% 18%, rgba(139, 113, 84, 0.16) 0%, rgba(139, 113, 84, 0) 60%),
    radial-gradient(54% 66% at 84% 22%, rgba(117, 91, 150, 0.14) 0%, rgba(117, 91, 150, 0) 64%),
    linear-gradient(180deg, #171028 0%, #130f23 46%, #0f0d1a 100%);
}

.about-interests::before,
.about-interests::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(92px);
  opacity: 0.22;
  animation: about-neutral-float 19s ease-in-out infinite;
}

.about-interests::before {
  width: 24rem;
  height: 12rem;
  top: -3rem;
  left: 8%;
  background: rgba(206, 170, 125, 0.18);
}

.about-interests::after {
  width: 22rem;
  height: 18rem;
  right: -5rem;
  bottom: -5rem;
  background: rgba(104, 140, 196, 0.14);
  animation-delay: -9s;
}

.about-interests .section-inner {
  position: relative;
  z-index: 1;
}

.about-interests .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-interests-cta {
  margin-top: 1.25rem;
}

.about-interests-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 11.75rem;
  min-height: 3rem;
  padding: 0.14rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: rgba(24, 15, 34, 0.86);
  color: #f7ebff;
  border: 1px solid rgba(223, 189, 255, 0.32);
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  box-shadow:
    inset 1px 2px 5px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(244, 219, 255, 0.05),
    0 0 18px rgba(190, 126, 255, 0.14);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: all 0.8s cubic-bezier(0.51, 0.026, 0.368, 1.016);
  transform-origin: center;
  isolation: isolate;
}

.about-interests-link-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0.24rem;
  justify-content: flex-start;
  z-index: 1;
  border-radius: 999px;
  overflow: hidden;
}

.about-interests-link-fill {
  width: 0%;
  height: 100%;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #d29bff 0%, #b880ff 55%, #8c7cff 100%);
  transition: all 1s cubic-bezier(0.51, 0.026, 0.368, 1.016);
}

.about-interests-link-icon-shell {
  width: 2.48rem;
  height: 2.48rem;
  border-radius: 999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 1px -1px 3px 0 rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(217, 171, 255, 0.34);
  background: #151022;
  transition: all 1s cubic-bezier(0.51, 0.026, 0.368, 1.016);
}

.about-interests-link-icon {
  width: 0.8rem;
  height: 0.8rem;
  color: #fdf6ff;
  transition: all 1s cubic-bezier(0.51, 0.026, 0.368, 1.016);
}

.about-interests-link-label {
  position: relative;
  z-index: 2;
  display: block;
  padding-left: 3.25rem;
  padding-right: 1.05rem;
  color: #f8efff;
  font-size: 0.95rem;
  transition: all 1s cubic-bezier(0.51, 0.026, 0.368, 1.016);
}

.about-interests-link:hover,
.about-interests-link:focus-visible {
  background: rgba(24, 15, 34, 0.94);
  box-shadow:
    inset 1px 2px 5px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(189, 126, 255, 0.24);
}

.about-interests-link:hover .about-interests-link-fill,
.about-interests-link:focus-visible .about-interests-link-fill {
  width: calc(100% - 2.48rem);
}

.about-interests-link:hover .about-interests-link-icon-shell,
.about-interests-link:focus-visible .about-interests-link-icon-shell {
  background: #0f0b18;
  box-shadow:
    inset 1px -1px 3px 0 rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(216, 170, 255, 0.75);
}

.about-interests-link:hover .about-interests-link-icon,
.about-interests-link:focus-visible .about-interests-link-icon {
  color: #fff9ff;
  transform: rotate(-45deg);
}

.about-interests-link:hover .about-interests-link-label,
.about-interests-link:focus-visible .about-interests-link-label {
  padding-left: 1.05rem;
  padding-right: 3.25rem;
  color: #130d1c;
}

.about-interests-link:focus-visible {
  outline: 2px solid rgba(237, 216, 255, 0.68);
  outline-offset: 2px;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.interest-card {
  padding: var(--space-lg);
  background: linear-gradient(160deg, rgba(35, 28, 44, 0.9), rgba(23, 20, 32, 0.88));
  border: 1px solid rgba(236, 215, 183, 0.08);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-normal);
}

.interest-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 206, 183, 0.16);
}

.interest-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  display: block;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  line-height: 1;
}

.interest-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.interest-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .about-hero-image {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
  }
  
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .interests-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .interests-grid {
    grid-template-columns: 1fr;
  }
  
  .education-item {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .education-year {
    width: auto;
  }
  
  .timeline::before {
    left: 10px;
  }
  
  .timeline-item {
    padding-left: 40px;
  }
  
  .timeline-marker {
    left: 0;
    width: 16px;
    height: 16px;
  }

  .about-interests-cta {
    margin-top: 1rem;
  }

  .about-interests-link {
    min-width: 10.9rem;
    min-height: 2.9rem;
  }

  .about-interests-link-label {
    font-size: 0.9rem;
  }
}

/* ============================================
   ABOUT HERO - STUDIO LIGHT BACKGROUND (SECTION 1)
   ============================================ */
.page-about .about-hero {
  background: #d7d5d1;
  min-height: auto;
  padding-top: 7rem;
  padding-bottom: 0;
  overflow: hidden;
  margin-bottom: -2rem;
}

.page-about .about-hero .hero-bg-effects {
  z-index: 0;
}

.page-about .about-hero .hero-glow {
  display: none;
}

.page-about .about-hero .section-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.page-about .about-hero .image-frame {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.page-about .about-hero .image-frame::before {
  display: none;
}

.page-about .about-hero .image-frame video {
  filter: brightness(0.99) saturate(0.9) contrast(0.96);
  transform: scale(0.95);
  transform-origin: center center;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0.84) 74%, rgba(0, 0, 0, 0.3) 88%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0.84) 74%, rgba(0, 0, 0, 0.3) 88%, rgba(0, 0, 0, 0) 100%);
}

.page-about .about-hero .about-hero-image {
  width: 80%;
  justify-self: center;
  margin-top: -8.4rem;
}

.page-about .about-hero .image-decoration {
  display: none;
}

.page-about .about-hero .hero-eyebrow {
  position: relative;
  display: inline-block;
  color: #5e6272;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 0.4rem;
}

.page-about .about-hero .hero-eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 7.25rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(63, 74, 102, 0.18) 0%, rgba(63, 74, 102, 0.92) 45%, rgba(63, 74, 102, 0.22) 100%);
  transform-origin: left center;
  animation: about-underline-pulse 3.8s ease-in-out infinite;
}

.page-about .about-hero .about-hero-content {
  margin-top: -9.15rem;
}

.page-about .about-hero .about-hero-text {
  color: #515769;
  margin-bottom: 1.55rem;
}

.page-about .about-hero .hero-social {
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.page-about .about-hero .hero-social .social-link {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 252, 1) 100%);
  border: 1px solid rgba(76, 108, 170, 0.14);
  box-shadow:
    0 16px 28px rgba(58, 83, 131, 0.12),
    0 0 0 1px rgba(132, 196, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.page-about .about-hero .hero-social .social-link svg {
  width: 22px;
  height: 22px;
  color: #394159;
}

.page-about .about-hero .hero-social .social-link:nth-child(1) svg {
  color: #2d62b1;
}

.page-about .about-hero .hero-social .social-link:nth-child(2) svg {
  color: #7a3db8;
}

.page-about .about-hero .hero-social .social-link:nth-child(3) svg {
  color: #d24444;
}

.page-about .about-hero .hero-social .social-link:nth-child(4) svg {
  color: #111111;
}

.page-about .about-hero .hero-social .social-link:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 251, 255, 1) 100%);
  border-color: rgba(108, 118, 144, 0.18);
  box-shadow:
    0 10px 20px rgba(58, 83, 131, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-2px) scale(1.03);
}

@keyframes about-underline-pulse {
  0%, 100% {
    opacity: 0.72;
    transform: scaleX(0.86);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 1024px) {
  .page-about .about-hero .about-hero-image {
    margin-top: -1.5rem;
  }

  .page-about .about-hero .about-hero-content {
    margin-top: -3rem;
  }
}
