﻿/* Career Section */
.career-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Career Title */
.career-title {
    font-size: 28px;
    color: white;
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    word-spacing: 2px;
}

/* Career Slide */
.career-slide {
    width: 100%;
    padding: 20px;
    background: #031317;
    border-radius: 28px;
    margin-top: 5vh;
}

/* Department Blocks */
.department-block {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Department Text */
.department {
    padding: 10px;
    color: white;
    text-align: left;
}

/* Yellow Line */
.yellow-line {
    width: 80%;
    border: 0.5px solid yellow;
    margin: 20px auto;
}

/* Openings */
.openings {
    padding: 10px;
}

.opening {
    background: #051E24;
    border-radius: 20px;
    margin-bottom: 15px;
    padding: 15px;
    color: white;
}

/* Opening Header */
.opening-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.software-btn, .fulltime-btn {
    padding: 6px 12px;
    background: #07484f;
    color: white;
    border-radius: 15px;
    border: 1px solid gray;
    font-size: 14px;
}

.software-btn:hover, .fulltime-btn:hover {
    background: gray;
    color: black;
}

/* Yellow Gradient Footer */
.yellow-gradient-footer {
    background: linear-gradient(90deg, yellow, rgba(255, 255, 0, 0.8), yellow);
    padding: 10px;
    width: 80%;
    text-align: center;
    color: black;
    font-weight: bold;
    font-size: 16px;
    margin: 20px auto 0 auto;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .career-title {
        font-size: 22px;
        text-align: center;
    }

    .career-slide {
        padding: 15px;
    }

    .department {
        width: 100%;
        text-align: center;
    }

    .openings {
        width: 100%;
    }

    .yellow-gradient-footer {
        width: 90%;
        font-size: 14px;
    }
}
