main {
    display: flex;
    flex-flow: column nowrap;
    color: #ffffff;
}

/* Section Container */
#recruitment {
    display: flex;
    align-items: center; /* Vertically centers the content within the 80vh */
    padding: 0 50px;
    box-sizing: border-box;
    height: 100%;
    flex: 1 0;
}

/* The Grid Layout */
.recruitment-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr; /* Asymmetric split: Offers get more room */
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Typography for Headers */
.recruitment-grid h2 {
    color: #ffffff;
    font-variant: small-caps;
    letter-spacing: 2px;
    font-size: 24px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

/* Universal List Reset */
.sci-fi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Intro line above the offers grid */
.recruitment-intro {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    line-height: 1.5;
    margin: -18px 0 28px; /* pull up under the h2, breathe before the grid */
    max-width: 46ch;
}

/* Offers Card Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.offer-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 2px solid #ff9900; /* Orange accent rail */
    border-radius: 8px;
    padding: 18px 20px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.offer-card:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 153, 0, 0.4);
    border-left-color: #ff9900;
    box-shadow: 0 6px 24px rgba(255, 153, 0, 0.12);
}

/* Monospaced category label */
.offer-cat {
    display: flex;
    align-items: center;
    font-family: 'Courier New', monospace;
    color: #ff9900;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.offer-card h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0 6px;
}

.offer-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.offer-card em {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-size: 12px;
}

/* Muting the Emojis so they don't break the dark UI */
.list-icon {
    margin-right: 15px;
    font-size: 16px;
    opacity: 0.8;
    filter: grayscale(30%); /* Takes the edge off bright emoji colors */
}

/* Smaller icon spacing inside the compact category labels */
.offer-cat .list-icon {
    margin-right: 8px;
    font-size: 14px;
}

/* Requirements Pane Styling - Distinct Box */
.requirements-pane {
    background-color: rgba(255, 255, 255, 0.03); /* Very subtle highlight */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.req-list li {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.req-number {
    color: #ff9900; /* Pulls in your orange accent color */
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.req-list p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.req-list p a, .req-list p a:active, .req-list p a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.req-list p strong {
    color: #ffffff;
}

/* CTA inside the requirements pane — ties the pitch to action */
.recruit-cta {
    margin-top: auto; /* anchor to the bottom of the flex pane */
    width: 100%;
    border-color: rgba(255, 153, 0, 0.5);
}

.recruit-cta:hover {
    border-color: #ff9900;
    background-color: rgba(255, 153, 0, 0.1);
}

/* Stack the layout on narrow screens */
@media (max-width: 900px) {
    #recruitment {
        padding: 40px 24px;
    }

    .recruitment-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }
}