/* Unlimited Cruises Feed Styles */

.ucruises-feed-container {
    width: 88vw!important;
 /*   max-width: 1400px;*/
    margin: 0 auto;
    padding: 20px 0;
}

.ucruises-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 15px;
}

/* Responsive grid */
@media (max-width: 1024px) {
    .ucruises-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .ucruises-feed-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.ucruises-feed-card {
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #e3edeb;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin:1.5%;
}

.ucruises-feed-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ucruises-feed-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    background-color: #ffffff;
}

.ucruises-feed-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    padding: 10px;
}

.ucruises-feed-content {
    padding: 10px;
    background: #ffffff;
}

.ucruises-feed-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #2ea3f2;
    transition: color 0.3s ease;
}

/* Loading state */
.ucruises-feed-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Error state */
.ucruises-feed-error {
    text-align: center;
    padding: 20px;
    color: #d32f2f;
    background-color: #ffebee;
    border-radius: 8px;
    margin: 20px 0;
}
