body {
    margin: 0;
    background: #f3f3f3;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

#contentwrap {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
}

.top-header {
    display: flex;
    justify-content: space-between;
}

.header-left,
.header-right {
    width: 38%;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 14px 18px;
}

.header-right {
    justify-content: flex-end;
}

img {
    max-width: 100%;
    height: auto;
}

.header-left img,
.header-right img,
.meta-images img {
    display: block;
}

.slider-wrap,
.slideshow {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #d9eef5;
}

.slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideshow 12s infinite;
}

.slideshow img:nth-child(1) {
    animation-delay: 0s;
}

.slideshow img:nth-child(2) {
    animation-delay: 4s;
}

.slideshow img:nth-child(3) {
    animation-delay: 8s;
}

@keyframes slideshow {
    0%, 100% {
        opacity: 0;
    }

    8%, 33% {
        opacity: 1;
    }

    41% {
        opacity: 0;
    }
}

.main {
    padding: 28px 36px 40px;
}

.job-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    background: #e6e6e6;
}

.meta-images {
    width: 175px;
    flex-shrink: 0;
}

.meta-images img:first-child {
    margin-bottom: 2px;
}

.meta-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 18px 22px 18px 0;
}

.meta-left {
    flex: 1;
}

.meta-right {
    width: 220px;
    text-align: right;
}

.meta-block,
.meta-item {
    margin-bottom: 18px;
}

.meta-block:last-child,
.meta-item:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3 {
    color: #0070c0;
    line-height: 1.3;
}

h1 {
    margin: 0 0 28px;
    font-size: 26px;
    text-align: center;
}

h2 {
    margin: 0 0 10px;
    font-size: 18px;
}

h3 {
    margin: 14px 0 10px;
    font-size: 16px;
}

.job-meta h2,
.job-meta h3 {
    margin-bottom: 4px;
    font-size: 16px;
}

p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.45;
}

.job-meta p {
    margin: 0;
}

ul {
    margin: 0 0 12px;
    padding-left: 22px;
}

li {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.35;
}

.intro-box,
.blue-box {
    padding: 10px 22px;
    background: #d9edf5;
}

.grey-box {
    padding: 18px 22px;
    background: #e6e6e6;
}

.offer-section {
    padding: 22px 22px 26px;
    border-bottom: 2px solid #0070c0;
}

.two-col,
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.two-col {
    gap: 32px;
}

.info-grid {
    gap: 0 34px;
    padding-top: 26px;
}

.info-box {
    padding-bottom: 28px;
    border-bottom: 2px solid #0070c0;
}

.info-box h2 {
    margin-bottom: 16px;
}

.mt-small {
    margin-top: 10px;
}

a {
    color: #005eb8;
    font-weight: bold;
}

@media (max-width: 700px) {
    .top-header,
    .job-meta,
    .meta-content {
        flex-direction: column;
    }

    .header-left,
    .header-right {
        width: auto;
        justify-content: center;
    }

    .main {
        padding: 22px 18px 32px;
    }

    .slider-wrap,
    .slideshow {
        height: 200px;
    }

    .meta-images {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .meta-content {
        padding: 18px;
    }

    .meta-right {
        width: auto;
        text-align: left;
    }

    h1 {
        font-size: 22px;
    }

    .two-col,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}