.strap-white-overflow {
    margin: 0 auto;
    text-align: center;
    background: #fff;
	margin-top: -170px;
}
.strap-white-overflow-page {
    margin: 0 auto;
    text-align: center;
    background: #fff;
	margin-top: -170px;
	border-bottom: 1px solid #01bba0;
	padding: 0 0px 30px 0px;
}
.strap-white-overflow-1300 {
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 20px 20px 20px;
}

.destination-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 0 6px #e0e0e0;
    position: relative;
	overflow: hidden;
	/* Flexbox handles the sizing */
    flex: 1; 
}
.destination-box-home {
    max-width: 500px;
}
/* The "Hiding" Logic */
@media (max-width: 1260px) {
    /* Target the last box, but only if it's not the ONLY box */
    .destination-box:last-child:not(:only-child) {
        display: none;
    }
}
@media (max-width: 660px) {
    .strap-white-overflow-1300 {
        flex-direction: column;
        align-items: center;
    }
    .destination-box {
        width: 100%;
    }
}

	
@media (max-width: 900px) {
    .destination-tour-meta2 {
        display: none;
    }
	.destination-tour-meta1 {
        display: inline;
    }
	.destination-box-page {
    	max-width: 500px;
	}
}
@media (min-width: 900px) {
    .destination-tour-meta2 {
        display: block;
    }
	.destination-tour-meta1 {
        display: none;
    }
	.destination-box-page {
    	max-width: 900px;
	}
}
	
.destination-box h2, .destination-box h2.destination-title {
    font-size: 18px;
    padding: 14px 18px 6px 18px;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.flag {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
}
.destination-subtitle {
    font-size: 12px;
    padding: 0px 18px 8px 18px;
    border-bottom: 1px solid #eee;
}

.hotel-tour-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 16px;
    text-decoration: none;
    color: inherit;

    transition: background 0.2s ease;
}
.hotel-tour-data:hover {
    background: #f8f9fa;
}

.destination-hotel-row:not(:last-child) .hotel-tour-data {
    border-bottom: 1px solid #f0f0f0;
}

.destination-tour-left {
    flex: 1;
    text-align: left;
}

.hotel-name {
    font-size: 14px;
}
	
.destination-tour-meta2 {
    flex: 1.5;
    text-align: left;
}
	

.destination-tour-right {
    text-align: right;
    flex-shrink: 0;
}

.price {
    font-size: 14px;
    font-weight: 700;
    color: #1a73e8;
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid #e0e0e0;
    border-top-color: #1a73e8;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hotel-tour-data::after {
    content: "›";
    font-size: 26px;
    margin-left: 12px;
    color: #ccc;
	margin-top: -5px;
}