/**
 * Job Card Height Fix
 * Ensures all job cards in a grid row have the same height
 */

.job-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.job-card a {
    background-color: #fff;
    height: 100% !important;
    min-height: 480px;
    position: relative;
    margin-bottom: 1em;
    padding-bottom: 100px;
    border-radius: 15px;
    border: 3px solid #fff;
    display: flex !important;
    flex-direction: column !important;
    transition: all linear 0.3s;
    text-decoration: none;
}

/* Maintain mobile responsiveness */
@media only screen and (max-width: 768px) {
    .job-card a {
        min-height: auto !important;
        height: auto !important;
    }
}



