/* =========================
   SECCIÓN SOBRE GOOD MONEY  (no reutilizable)
========================= */

.about__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 50px;
}

/* ----- Texto ----- */
.about__title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: var(--black-900);
    margin-bottom: 18px;
}

.about__title span {
    color: var(--gold-400);
}

.about__lead {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--black-800);
    margin-bottom: 26px;
}

.about__text {
    font-size: clamp(.9rem, 1.3vw, 1rem);
    line-height: 1.7;
    color: var(--black-500);
}

.about__text + .about__text {
    margin-top: 18px;
}

.about__text strong {
    color: var(--black-800);
    font-weight: 700;
}

/* ----- Arte (personaje sobre panel dorado) ----- */
.about__art {
    position: relative;
    align-self: stretch;
    min-height: 440px;

    border-radius: 40px;
    background: radial-gradient(circle at 32% 28%,
        var(--gold-300), var(--gold-400) 72%);

    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.about__art img {
    width: 100%;
    max-width: 430px;
    height: auto;
    display: block;
}

/* ----- Responsive ----- */

@media (max-width: 991px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 620px;
        margin: 0 auto;
    }

    .about__content {
        order: 1;
        text-align: center;
    }

    .about__art {
        order: 2;
        min-height: 380px;
    }

    .about__art img {
        max-width: 360px;
    }
}

@media (max-width: 576px) {
    .about__art {
        min-height: 320px;
        border-radius: 28px;
    }

    .about__art img {
        max-width: 280px;
    }
}
