.swiper {
    width: 100%;
    min-height: 300px;
    height: fit-content;
    padding: 2rem 1rem 4rem;

    & .swiper-slide{
        height: auto;
    }
}

.chsm-card {
    background-color: var(--blanco);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    & img {
        height: auto;
        aspect-ratio: 1;
    }

    & .chsm-card__content{
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;

        & h3{
            font-size: 1.25rem;
            color: #000;
        }

        & p{
            font-size: 1rem;
            margin-bottom: 0;
        }
    }

    &.chsm-card--experiences {
        padding: 2rem 2rem 1rem;
        
        
        & .chsm-card__header {
            display: flex;
            gap: 2rem;
            padding-bottom: 1rem;
            align-items: center;
            @media screen and (max-width: 767px) {
                flex-direction: column;
                text-align: center;
            }
        }

        & img{
            border-radius: 50%;
        }
    }
}