/* Work Opportunity Cards Fix */
.work-opportunity-section {
    overflow: hidden;
}

.work-opportunity-container {
    overflow: visible;
}

/* Equal height for all cards */
.work-destination-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Equal height for content areas */
.destination-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Make feature tags equal height */
.destination-features {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Make descriptions equal height */
.work-destination-card p {
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .work-destination-card p {
        min-height: 0;
        margin-bottom: 10px;
    }
}

/* Equal height for headers */
.destination-header {
    height: 160px;
}

.destination-header img.header-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fix for Singapore image */
.work-destination-card:last-child .destination-header img {
    object-position: center;
}

/* Ensure buttons are at the same position */
.destination-btn {
    margin-top: auto;
}