.vxm-destinations {
    padding: 10px 0 30px;
}

.vxm-destinations__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.vxm-destinations__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    color: var(--vxm-primary);
    margin: 0;
}

.vxm-destinations__title svg {
    color: var(--vxm-secondary);
}

.vxm-destinations__viewall {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--vxm-gray-600);
    text-decoration: none;
    white-space: nowrap;
}

.vxm-destinations__viewall:hover {
    color: var(--vxm-primary);
}

.vxm-destinations__text {
    color: var(--vxm-gray-600);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Grid tipo masonry */
.vxm-destinations__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: 200px;
    gap: 12px;
}

.vxm-dest-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    text-decoration: none;
}

/* Layout: primero grande, segundo pequeño, luego 3 iguales, luego 2 */
.vxm-dest-card--0 {
    grid-row: span 2;
}

.vxm-dest-card--2,
.vxm-dest-card--3,
.vxm-dest-card--4 {
    grid-column: auto;
}

/* A partir del 3er card, 3 columnas */
.vxm-destinations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}

.vxm-dest-card--0 {
    grid-column: span 2;
    grid-row: span 2;
}

.vxm-dest-card--5,
.vxm-dest-card--6 {
    grid-column: auto;
}

/* Imagen */
.vxm-dest-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: saturate(1.15) contrast(1.08) brightness(0.85);
}

.vxm-dest-card:hover .vxm-dest-card__img {
    transform: scale(1.08);
    filter: saturate(1.25) contrast(1.12) brightness(0.8);
}

/* Overlay cinematográfico */
.vxm-dest-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
            rgba(27, 61, 90, 0.7) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(27, 61, 90, 0.15) 100%);
    transition: background 0.4s ease;
}

.vxm-dest-card:hover .vxm-dest-card__overlay {
    background: linear-gradient(to top,
            rgba(27, 61, 90, 0.85) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(27, 61, 90, 0.2) 100%);
}

/* Nombre */
.vxm-dest-card__name {
    position: absolute;
    bottom: 16px;
    left: 20px;
    color: var(--vxm-white);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.vxm-dest-card--0 .vxm-dest-card__name {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .vxm-destinations__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .vxm-dest-card--0 {
        grid-column: span 2;
        grid-row: span 1;
    }

    .vxm-dest-card__name {
        font-size: 1.1rem;
    }

    .vxm-dest-card--0 .vxm-dest-card__name {
        font-size: 1.4rem;
    }

    .vxm-destinations__header {
        flex-direction: column;
        align-items: flex-start;
    }
}