/* ── GIVING BACK ── */

.giving-back {
    background: #fffaf7;
    width: 100%;
  }
  
  .giving-back .about-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 56px;
  }
  
  .giving-back .about-subtitle {
    color: var(--soft);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.85;
  }
  
  .giving-back .about-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    justify-self: center;
    width: 100%;
    max-width: 360px;
  }
  
  .giving-back .about-image {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    border-radius: 999px;
    outline: 4px solid var(--pink);
    outline-offset: 5px;
    box-shadow:
      0 10px 35px rgba(0, 0, 0, 0.12),
      0 0 18px 4px rgba(232, 160, 176, 0.5);
  }
  
  /* ── RESPONSIVE ── */
  
  @media (max-width: 768px) {
    .giving-back .about-layout {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .giving-back .about-image-wrap {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0 auto;
    }
  
    .giving-back .about-image {
      width: 70%;
      max-width: 260px;
    }
  }