.career-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.career-btn {
    min-width: 260px;
    height: 90px;
    border: 1.5px solid #cfd8e3;
    border-radius: 2px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.career-btn img {
    max-height: 80px;
    width: auto;
}

.career-btn:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
