.career-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* This targets your dynamic page content */
.career-page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* industry */

.industry-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.industry-header .dot {
    width: 6px;
    height: 6px;
    background-color: black;
    border-radius: 50%;
}

.industry-header .vertical-line {
    width: 6px;
    height: 45px;
    background-color: #eeeeee;
    border-radius: 8px;
}

.industry-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    padding-top: 8px;
}

.industry-para p {
    font-size: 20px;
    color: #201f1f;
    font-weight: 300;
    line-height: 26px;
    padding: 15px 0px 0px 25px;
}

.industry-image img {
    width: 100%;
    height: auto;
}

.industry-content {
    max-width: 100%;
}

.industry-content * {
    max-width: 100% !important;
    box-sizing: border-box;
}

.industry-content img {
    width: 100% !important;
    height: auto !important;
    display: block;
}

.industry-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #201f1f;
}

.industry-content h1,
.industry-content h2,
.industry-content h3 {
    font-size: 22px;
    line-height: 1.4;
}

.industry-content br {
    display: none;
    /* optional cleaner mobile */
}

@keyframes wheelScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    80% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

.industry-content .row {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Desktop layout: text left, image right */
.industry-content .col-lg-8 {
    flex: 0 0 66.666% !important;
    max-width: 66.666% !important;
}

.industry-content .col-lg-4 {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
}

/* Kill Summernote inline width chaos */
.industry-content [style*="width: 760px"],
.industry-content [style*="width: 380px"] {
    width: auto !important;
}

/* Image safety */
.industry-content img {
    width: 100% !important;
    height: auto !important;
}

@media (max-width: 768px) {

    .industry-content .row {
        flex-direction: column !important;
    }

    .industry-content .col-lg-8,
    .industry-content .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ─── MOBILE (≤ 576px) ───────────────────────────────────────────── */
@media (max-width: 576px) {

    .career-box {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        padding: 0 16px;
    }

    .career-content {
        background: #fff;
        border: 1px solid #e8f4f1;
        border-radius: 16px;
        padding: 32px 24px;
        box-shadow: 0 4px 24px rgba(61, 139, 122, 0.08);
    }

    .career-header h3 {
        font-size: 1.25rem;
        line-height: 1.4;
        color: var(--dark);
        margin-bottom: 16px;
    }

    .career-para p {
        font-size: 0.88rem;
        line-height: 1.75;
        color: var(--mid);
    }

    /* Remove forced <br> line-breaks visually on small screens */
    .career-para br {
        display: none;
    }

    .career-para a {
        color: var(--accent);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid rgba(61, 139, 122, 0.35);
        transition: border-color 0.2s;
    }

    .career-para a:hover {
        border-color: var(--accent);
    }

    .industry-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .industry-content h1,
    .industry-content h2,
    .industry-content h3 {
        font-size: 18px;
    }

    .footer-bar {
        padding: 12px 16px;
        text-align: center;
    }

    .footer-bar p {
        font-size: 10.5px;
    }
}