
/* Solution 1: Using Flexbox (Recommended) */
.job-card {
    padding: 20px 16px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    border-radius: 8px;
    transition: 0.2s;
    height: 100%; /* Make cards fill the column height */
    display: flex;
    flex-direction: column;
}

/* Make the job intro paragraph grow to fill available space */
.job-card p {
    flex-grow: 1;
}

/* Ensure buttons stay at the bottom */
.job-card .d-flex {
    margin-top: auto;
}

/* Alternative Solution 2: Fixed minimum height */
.job-card-fixed {
    padding: 20px 16px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    border-radius: 8px;
    transition: 0.2s;
    min-height: 280px; /* Adjust this value based on your content */
    display: flex;
    flex-direction: column;
}

/* Solution 3: Using CSS Grid for the parent container */
.job-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    align-items: stretch; /* Makes all grid items the same height */
}

.job-card-grid {
    padding: 20px 16px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    border-radius: 8px;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
}

/* For Bootstrap columns to have equal height */
.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

.equal-height-col {
    display: flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .job-card {
        min-height: auto; /* Remove fixed height on mobile */
    }
}

/* .featureBox {
    border-radius: 0px;
    transition: all ease 0.3s;
    border: 1px solid rgba(255, 255, 255, 0);

} */

/* .featureBox:hover {
    background-color: #0F1314;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;

} */
