.top-destinations-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Row 1 = 2 items but left smaller, right bigger */
.left-columns .row-1 {
    display: grid;
    grid-template-columns: 0.7fr 0.9fr; /* Adjust ratio as needed */
    gap: 20px;
    margin-bottom: 15px;
}


/* Row 2 = 3 small tiles */
.left-columns .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

/* Right tile spans full height */
.right-column {
    display: grid;
}
.right-column .destination-item {
    height: 100%;
}

/* Tile style */
.destination-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #ddd;
}
.destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}
.destination-item:hover img {
    transform: scale(1.05);
}
.destination-name {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Header bar */
.top-destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.see-more-btn {
    background: #000;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}
.see-more-btn:hover {
    opacity: .8;
}

/* Responsive */
@media (max-width: 900px) {
    .top-destinations-wrapper {
        grid-template-columns: 1fr;
    }
    .right-column {
        height: 300px;
    }
    .left-columns .row-1,
    .left-columns .row-2 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .left-columns .row-1,
    .left-columns .row-2 {
        grid-template-columns: 1fr;
    }
    .right-column {
        height: 240px;
    }
}



/* default: full width (when <= 5 items) */
.top-destinations-wrapper.full-width {
    display: grid;
    grid-template-columns: 1fr; /* No right column */
    gap: 20px;
}

/* layout only when 6 items */
.top-destinations-wrapper.has-right {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
