/* =========================================
   CAREER PAGE STYLES
   ========================================= */

/* 2-Column Content Layout (Careers & Jobs) */
.custom-grid-2col {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    margin-bottom: 30px;
}

.custom-grid-2col .col-half {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

/* Brand Styled Links for Careers & Job Postings */
.content-page a,
.custom-grid-2col a {
    font-weight: 600;
    color: #21256d; /* Brand dark blue */
    text-decoration: underline;
    text-decoration: 1px underline #21256d; /* Underline thickness and color */
}

.content-page a:hover,
.custom-grid-2col a:hover {
    color: #212570;
    text-decoration: none;
}

@media (max-width: 768px) {
    .custom-grid-2col .col-half {
        flex: 1 1 100%;
    }
}