/* ============================================================
   AstroEnergy — O Nas Page Styles
   ============================================================ */

/* --- Page Hero BG for O Nas --- */
.page--light .page-hero--bg {
  position: relative;
  overflow: hidden;
}

.page-hero--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/astroenegy2-web.jpg') center/cover no-repeat;
  opacity: 0.22;
  z-index: 0;
}

.page-hero--bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #fff);
  z-index: 0;
}

.page-hero--bg .container {
  position: relative;
  z-index: 1;
}

/* --- About Layout --- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

/* --- About Content --- */
.about-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-600);
}

.about-content p {
  margin-bottom: 1.25rem;
}

.about-content strong {
  color: var(--gray-800);
  font-weight: 600;
}

.about-content .about-highlight {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--accent-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* --- Video Sidebar --- */
.about-video {
  position: sticky;
  top: 120px;
}

.about-video__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(104, 41, 106, 0.12);
  border: 1px solid var(--gray-200);
}

.about-video__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.about-video__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin-bottom: 1.5rem;
}


.about-video__play {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.about-video__poster {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}

.about-video__play:hover .about-video__poster {
  transform: scale(1.03);
}

.about-video__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(104, 41, 106, 0.85);
  border-radius: 50%;
  transition: all 0.3s;
}

.about-video__play:hover .about-video__play-icon {
  background: rgba(138, 61, 140, 0.95);
  transform: translate(-50%, -50%) scale(1.1);
}

.about-video__caption {
  text-align: center;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* --- Awards Section --- */
.about-awards {
  padding: 2.5rem 3rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 4rem;
  text-align: center;
}

.about-awards__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.about-awards__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.about-awards__grid img {
  height: 120px;
  width: auto;
  filter: grayscale(0.3);
  transition: filter 0.3s;
}

.about-awards__grid img:hover {
  filter: grayscale(0);
}

.about-awards__grid img.about-awards__img--gazele {
  height: 56px;
}

/* --- Stats Banner --- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.about-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.about-stat:hover {
  border-color: rgba(138, 61, 140, 0.25);
  box-shadow: 0 4px 16px rgba(104, 41, 106, 0.08);
}

.about-stat__number {
  display: block;
  font-family: var(--font-ui);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.about-stat__label {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-video {
    position: static;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}
