/* Componente: Steps en 3 pasos (Egresados) */
.steps3 {}

.steps3__title {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #0a1f18;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.steps3__title span {
    color: var(--color-primary-600);
}

/* Lista */
.steps3__list {
    display: grid;
    gap: 14px;
}

.steps3__item {
    background: #fff;
    border: 1px solid var(--color-neutral-200, #e7e7ea);
    border-radius: 18px;
    overflow: hidden;
}

.steps3__item summary {
    list-style: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    cursor: pointer;
}

.steps3__item[open] .steps3__chev {
    transform: rotate(180deg);
}

.steps3__item .steps3__content {
    padding: 0 18px 18px 60px;
    color: #41454b;
}

.steps3__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-primary-900);
    color: #e7fff6;
    font-size: 1.1rem;
}

.steps3__label {
    font-weight: 600;
    color: #12241d;
}

.steps3__chev {
    color: #213a31;
    transition: transform .2s ease;
}

/* Media card derecha */
.steps3__media {
    position: relative;
    border-radius: 28px;
    border: 1px solid var(--color-neutral-200, #e7e7ea);
    background: #fff;
    padding: 12px;
}

.steps3__img {
    width: 100%;
    height: min(68vh, 520px);
    object-fit: cover;
    object-position: center 40%;
    border-radius: 22px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .steps3__img {
        height: 340px;
    }

    .steps3__badge--cta {
        bottom: 74px;
    }
}