/* Replace quote-banner with standardized about-hero styling to match other pages */
.about-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
  overflow: hidden;
  padding: 3rem 2rem;
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 183, 126, 0.15) 0%, rgba(255, 209, 102, 0.1) 100%);
  z-index: 0;
}

.about-background::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.about-hero-content h1 {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
}

.about-hero-content p {
  font-size: 1.25rem;
  color: var(--emerald-green);
  animation: fadeInUp 1.2s ease-out;
}

/* About Content */
.about-content {
  padding: 4rem 2rem;
  background-color: var(--deep-navy);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.about-text h2 {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mist-grey);
  margin-bottom: 2rem;
}

.bio-section {
  margin-bottom: 2.5rem;
}

.bio-section h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--electric-blue);
  margin-bottom: 0.75rem;
}

.bio-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mist-grey);
  opacity: 0.9;
}

.education-list,
.roles-list {
  list-style: none;
  margin: 1rem 0;
}

.education-list li,
.roles-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  color: var(--mist-grey);
  position: relative;
  line-height: 1.6;
}

.education-list li::before,
.roles-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--emerald-green);
  font-weight: bold;
}

/* Added image styling for about section */
.about-image-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Enlarged the featured image to be more prominent */
.about-featured-image {
  width: 120%;
  height: auto;
  max-width: 800px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 119, 255, 0.2);
  border: 1px solid rgba(0, 183, 126, 0.2);
  transition: all 0.3s ease;
}

.about-featured-image:hover {
  box-shadow: 0 30px 60px rgba(0, 119, 255, 0.4);
  transform: translateY(-5px);
}

/* Timeline */
.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  background-color: var(--emerald-green);
  border-radius: 50%;
  border: 2px solid var(--deep-navy);
  box-shadow: 0 0 10px rgba(0, 183, 126, 0.5);
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 20px;
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--emerald-green), transparent);
}

.timeline-item h4 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--mist-grey);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quote-text {
    font-size: 1.75rem;
  }

  .about-text h2 {
    font-size: 1.75rem;
  }

  .about-featured-image {
    margin-top: 2rem;
  }
}
