.gs-experiencias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* =========================
   CARD BASE
========================= */
.gs-card-exp {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.gs-card-exp:hover {
    transform: translateY(-4px);
}

/* =========================
   IMAGE
========================= */
.gs-card-exp__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.gs-card-exp__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DESTINO BADGE */
.gs-card-exp__destino {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #3FAE5A;
    color: #fff;
    padding: 11px 12px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 500;
}

/* LIKE */
.gs-card-exp__like {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

/* =========================
   CONTENT
========================= */
.gs-card-exp__content
 {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-end;
}

/* =========================
   META (dificultad)
========================= */
.gs-card-exp__meta {
    display: flex;
    position: absolute;
    width: auto;
    bottom: 16px;
    left: 16px;
}

.gs-card-exp__meta-item {
    background: #f7f7f7;
    padding: 5px 10px;
    border-radius: 40px;
    font-size: 13px;
    display: flex;
    font-weight: 600;
    align-items: center;
    gap: 6px;
}

/* ICONO DIFICULTAD */
.gs-card-exp__dificultad img {
    width: 30px;
    padding: 6px;
    height: 30px;
    border-radius: 50px;
    background:#3fae5a;
}

/* =========================
   TITLE
========================= */
.gs-card-exp__title{
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gs-card-exp__title a {
    text-decoration: none;
    color: #222;
}

/* =========================
   RECOMENDACIONES
========================= */
.gs-card-exp__recomendaciones {
    margin-bottom: 15px;
}

.gs-card-exp__recomendaciones-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gs-card-exp__recomendaciones-title .gs-line {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.gs-card-exp__recomendaciones ul {
    padding: 20px;
    border-radius: 10px;
    background: #ebedff;
}
.gs-card-exp__recomendaciones li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

/* =========================
   PRECIOS BOX (nuevo)
========================= */
.gs-card-exp__precios-box {
    width: 100%;
    margin-bottom: 15px;
}

.gs-card-exp__precios-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gs-card-exp__precios-title .gs-line {
    flex: 1;
    height: 1px;
    background: #ddd;
}

/* contenedor */
.gs-card-exp__precios-list {
    background: #f7f7f7;
    padding: 20px 14px;
}

/* items */
.gs-card-exp__precio-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
}

.gs-card-exp__precio-item:last-child {
    margin-bottom: 0;
}

.gs-card-exp__precio-item .label {
    color: #555;
}

.gs-card-exp__precio-item .value {
    font-weight: 600;
    color: #222;
}
/* =========================
   CTA BUTTON
========================= */
.gs-card-exp__btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #3fae5a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 0px !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gs-card-exp__btn:hover {
    background: #e67e1f;
}


/* Mobile */
@media (max-width: 767px) {
    .gs-experiencias-grid {
        grid-template-columns: 1fr;
    }
}