/* ── ABOUT ── */

.about {
  background: var(--warm);
  width: 100%;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 56px;
}

.about-subtitle {
  color: var(--soft);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.85;
}

.about-image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  justify-self: center;
  width: 100%;
  max-width: 320px;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

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

  .about-image-wrap {
    flex-direction: row;
    max-width: 100%;
  }

  .about-image {
    width: 48%;
  }
}

/* ── Glowing pink ring around image bubbles ── */
.about-image {
  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);
}