.gs-eventos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gs-card-evento {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    align-items: stretch;
    padding: 0px;
    gap: 25px;
}

.gs-card-evento__image {
    position: relative;
    width: 250px;
    flex-shrink: 0;
}

.gs-card-evento__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.gs-card-evento__badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.gs-card-evento__badge {
    background: #FD7171;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gs-card-evento__content {
    display: flex;
    padding: 30px 30px 30px 0px;
    flex-direction: column;
    justify-content: center;
}

.gs-card-evento__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 12px;
}

.gs-card-evento__excerpt {
    font-size: 15px;
    color: #363636;
    margin-bottom: 20px;
}

.gs-card-evento__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    background: #3c67bc;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gs-card-evento__btn::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.gs-card-evento__btn:hover {
    background: #0f52d8;
}

.gs-card-evento__btn:hover::after {
    margin-left: 10px;
    opacity: 1;
    transform: translateX(0);
}

/*********************/

/* ================================
   MOBILE CARD TRANSFORMATION
================================ */

@media (max-width: 768px) {

.gs-eventos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.gs-card-evento {
    position: relative;
    flex-direction: column;
    padding: 0;
    gap: 0;
}

.gs-card-evento__image {
    width: 100%;
    height: 280px;
}

.gs-card-evento__image img {
    border-radius: 20px;
    height: 100%;
}
    .gs-card-evento__image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgb(31 71 149 / 65%) 0%, rgb(0 31 92 / 54%) 35%, rgb(185 25 25 / 0%) 65%, rgb(141 46 46 / 0%) 100%);
        pointer-events: none;
        border-radius: 20px;
    }
    .gs-card-evento__content {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 20px;
        display: flex;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }
.gs-card-evento__excerpt {
    display: none;
}

    .gs-card-evento__title {
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        max-width: 80%;
        padding-bottom: 0px;
        margin-bottom: 0;
    }

    .gs-card-evento__btn {
        position: absolute;
        right: 20px;
        bottom: 20px;
        width: 38px;
        height: 38px;
        background-color: #ffffff;
        color: #3c67bc;
        padding: 0;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 0;
    }

/* Flecha visible siempre */
.gs-card-evento__btn::after {

    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 15px;
    opacity: 1;
    margin-left: 0;
    transform: none;
}

/* Quitar hover animación en mobile */
.gs-card-evento__btn:hover::after {
    margin-left: 0;
}

/* Badges arriba derecha */
.gs-card-evento__badges {

    top: 15px;
    right: 15px;
}

}
