.wh-careers-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wh-career-card {
    padding: 32px;
    border: 1px solid #EBEBEB; /* Light gray border */
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wh-career-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.wh-career-title {
    margin-top: 0;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #EBEBEB;
    line-height: 1.3;
}

.wh-career-title a {
    color: var(--wh-color-capri-blue); /* Primary Blue from .wh-bkg-blue */
    text-decoration: none;
}

.wh-career-title a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.wh-career-excerpt {
    margin-bottom: 20px;
    flex-grow: 1;
}

.wh-hidden-career {
    display: none !important;
}

@media (min-width: 768px) {
    .wh-careers-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (min-width: 1024px) {
    /* If we want 3 columns on large screens? Screenshots look like 2. Keep 2 for now */
}
