/* =============================================
   About ACE — ACE Design System
   Two-column About section with badge overlay
   ============================================= */

.about-ace {
  padding: 3rem 1.25rem;
}

.about-ace__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Content column --- */
.about-ace__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-ace__eyebrow {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0056A6;
}

.about-ace__title {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

.about-ace__title-part {
  display: block;
}

.about-ace__title-highlight {
  display: block;
  color: #0056A6;
}

.about-ace__description {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

.about-ace__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-ace__cta {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.875rem 1.5rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #E87722;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.about-ace__cta:hover {
  background-color: #d66a1a;
  transform: translateY(-2px);
}

.about-ace__cta:focus-visible {
  outline: 2px solid #0056A6;
  outline-offset: 2px;
}

/* --- Media column --- */
.about-ace__media {
  position: relative;
}

.about-ace__image-wrapper {
  overflow: hidden;
  border-radius: 1.5rem;
}

.about-ace__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* --- Badge overlay --- */
.about-ace__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.about-ace__badge-value {
  margin: 0 0 0.25rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2b4a;
}

.about-ace__badge-label {
  margin: 0 0 0.25rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #555555;
}

.about-ace__badge-description {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* =============================================
   Responsive — Tablet
   ============================================= */

@media (max-width: 1023px) {
  .about-ace__inner {
    gap: 2rem;
  }

  .about-ace__title {
    font-size: 1.875rem;
  }

  .about-ace__badge {
    left: -0.75rem;
    bottom: -1rem;
    min-width: 160px;
    padding: 1rem 1.25rem;
  }

  .about-ace__badge-value {
    font-size: 1.25rem;
  }
}

/* =============================================
   Responsive — Mobile
   ============================================= */

@media (max-width: 767px) {
  .about-ace {
    padding: 2rem 1rem;
  }

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

  .about-ace__title {
    font-size: 1.625rem;
  }

  .about-ace__image-wrapper {
    border-radius: 1rem;
  }

  .about-ace__badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
}
