@charset "utf-8";

:root {
    font-size: 16px;
    --page-bg: #eef1f5;
    --surface: #fff;
    --text: #263346;
    --heading: #182436;
    --muted: #8a93a4;
    --border: #d7dde5;
    --brand: #141ac7;
    --footer-icon: #8a92a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--page-bg);
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1rem;
}

#wrapper {
    position: relative;
    max-width: 61.25rem;
    margin: 0 auto;
    overflow: hidden;
    background: var(--page-bg);
}

header {
    background: var(--page-bg);
}

.logo {
    padding: 0.75rem 1rem 0.5rem;
    background-color: #fff;
}


.hero-banner {
    overflow: hidden;
    background: #1209be;
}

.hero-banner img {
    width: 100%;
}

article {
    padding-top: 1.625rem;
}



.job-main {
    background: var(--surface);
    border-radius: 0 0 0.5rem 0.5rem;
}

.job-hero {
    min-height: 9.125rem;
    padding: 1.75rem 2rem 1.625rem;
}

.job-hero h1 {
    margin-bottom: 1.25rem;
    color: #152235;
    font-size: 1.875rem;
    line-height: 1.15;
}

.apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.875rem;
    padding: 0.625rem 0.9375rem;
    border-radius: 999px;
    background: var(--brand);
    color: #fff !important;
    font-size: 0.9375rem;
    font-weight: 700;
}

.job-meta-section {
    padding: 1.5rem 2rem 0;
    border-top: 1px solid var(--border);
}

.job-meta {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 0.625rem 1.5rem;
    margin: 0;
    list-style: none;
    color: #2c394b;
}

.job-meta li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.45;
}

.job-meta i {
    margin-top: 0.125rem;
    color: var(--muted);
    font-size: 0.9375rem;
}

.job-meta-location {
    grid-column: 1;
    grid-row: 1;
}

.job-meta-detail {
    grid-column: 2;
}

.job-content {
    padding: 1.5rem 2rem 1.625rem;
    color: var(--text);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.job-content h3 {
    margin: 1.875rem 0 0.25rem;
    color: var(--heading);
    font-size: 1rem;
    line-height: 1.3;
}

.job-content h4 {
    margin-bottom: 0.5rem;
    color: var(--heading);
    font-size: 1rem;
    line-height: 1.4;
}

.job-content p {
    margin-bottom: 1.5rem;
}

.job-content ul {
    margin: 0 0 1.625rem 1.25rem;
}

.job-content li {
    margin-bottom: 0.3125rem;
}

.job-note {
    font-style: italic;
}

.job-sidebar {
    padding-top: 0.125rem;
}

.about-card {
    padding: 1.75rem 1.375rem 1.5rem;
    border-radius: 0.5rem;
    background: var(--surface);
}

.about-card h4 {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.gea-logo {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.125rem 0;
    color: #1828c9;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: center 55%;
    background-size: 100% 0.125rem;
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 2.25rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
}

.about-card p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.45;
}

footer {
    padding: 2rem 0 1rem;
    text-align: center;
}

footer p {
    margin-bottom: 0.625rem;
    color: #29364a;
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--footer-icon);
    color: #fff !important;
    font-size: 0.8125rem;
}

@media only screen and (max-width: 64rem) {
    #wrapper {
        max-width: none;
        margin: 0;
    }

    .job-layout {
        padding: 0 0.5rem;
        gap: 1.25rem;
    }
}

@media only screen and (max-width: 49.938rem) {
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {
    .job-layout {
        grid-template-columns: 1fr;
    }

    .job-sidebar {
        padding-top: 0;
    }

    .job-meta {
        grid-template-columns: 1fr;
    }

    .job-meta-location,
    .job-meta-detail {
        grid-column: auto;
        grid-row: auto;
    }

    footer {
        padding-top: 3.5rem;
    }
}

@media only screen and (max-width: 40rem) {
    .logo {
        padding: 0.75rem 1rem 0.5rem;
    }

    article {
        padding-top: 1rem;
    }

    .job-layout {
        padding: 0;
        gap: 1rem;
    }

    .job-hero,
    .job-meta-section,
    .job-content,
    .about-card {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .job-hero {
        min-height: auto;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .job-hero h1 {
        font-size: 1.75rem;
    }

    .job-meta-section {
        padding-top: 1.25rem;
    }

    .job-content {
        padding-bottom: 1.25rem;
    }

    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
