/* About · Why — template-parts/gf-about-why.php */
/* ---- Why Growth Firstly ---- */
.gf-about-section--why {
  background: #f7f8fa;
}

/* Kill legacy aboutUs.css rainbow / height on this block */
.gf-about .gf-about-why,
.gf-about-section--why .gf-about-why {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 5vw, 4.75rem);
  align-items: center;
  background: transparent !important;
  background-image: none !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gf-about-why__media {
  position: relative;
}

.gf-about-why__frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md, 4px);
  overflow: hidden;
  background: #111214;
  aspect-ratio: 4 / 5;
  max-height: 36rem;
  box-shadow: var(--shadow-lg, 0 24px 48px -20px rgba(8, 8, 10, 0.28));
}

.gf-about-why__frame::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ffcc00;
  z-index: 2;
}

.gf-about-why__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 8, 10, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.gf-about-why__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.gf-about-why__caption {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 2;
  margin: 0;
  padding: 0.7rem 0.85rem;
  background: rgba(8, 8, 10, 0.72);
  border-left: 3px solid #ffcc00;
  color: #ffffff;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 550;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.gf-about-why__copy .gf-about-section__title {
  margin-bottom: 1rem !important;
  max-width: 16ch;
}

.gf-about-why__copy .gf-about-lead {
  max-width: 42ch;
}

.gf-about-why__points {
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.75rem 0 1.85rem !important;
  padding: 0 !important;
}

.gf-about-why__point {
  display: grid !important;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  margin: 0;
  padding: 1rem 1.05rem !important;
  background: #ffffff;
  border: 1px solid rgba(12, 12, 14, 0.08);
  border-radius: var(--radius-md, 4px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gf-about-why__point:hover {
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 10px 24px -18px rgba(8, 8, 10, 0.28);
}

.gf-about-why__n {
  font-family: var(--font-display), "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #9a7b00;
  line-height: 1.6;
}

.gf-about-why__point strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display), "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0c0c0e;
  letter-spacing: -0.015em;
}

.gf-about-why__point span:not(.gf-about-why__n) {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5c6570;
}

.gf-about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.55rem;
  background: #ffcc00;
  color: #08080a !important;
  font-family: var(--font-body), "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 9999px;
  box-shadow: 0 6px 18px rgba(255, 204, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.gf-about-cta:hover {
  transform: translateY(-1px);
  background: #e6b800;
  box-shadow: 0 8px 22px rgba(255, 204, 0, 0.36);
  color: #08080a !important;
}

