#careers {
    padding: 130px 0;
    background-color: #111;
}
#careers > .container {
    text-align: center;
}
#careers > .container > h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 80px;
}
#careers > .container > p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.5;
}
#careers #vision-list {
    counter-reset: vision 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-auto-rows: 450px;
    margin-top: 130px;
    background-color: #222;
}
#careers #vision-list .list-item::before {
    content: counter(vision, decimal-leading-zero);
    counter-increment: vision;
    font-size: 40px;
    font-weight: 700;
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;

    display: inline-block;
    padding-bottom: 36px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--white);
    max-width: 120px;
}
#careers #vision-list .list-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 108px;
}
#careers #vision-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#careers #vision-list .list-item h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}
#careers #vision-list .list-item p {
    font-size: 20px;
    color: #ccc;
    line-height: 1.5;
    word-break: keep-all;
}
#careers #welfare {
    margin-top: 130px;
}
#careers #welfare .container {
    text-align: center;
}
#careers #welfare .container h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 80px;
}
#careers #welfare .container > p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.5;
    word-break: keep-all;
    margin-bottom: 80px;
}
#careers #welfare .container .welfare-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    grid-auto-rows: 380px;
    gap: 30px;
}
#careers #welfare .container .welfare-list .list-item {
    border-radius: 20px;
    border: 1px solid #666;
    /* display: grid;
    place-items: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 52px 0;
}
#careers #welfare .container .welfare-list .list-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
}
#careers #welfare .container .welfare-list .list-item strong {
    font-size: 26px;
    font-weight: 700;
}
#careers #welfare .container .welfare-list .list-item p {
    font-size: 20px;
    color: #ccc;
    word-break: keep-all;
    line-height: 1.5;
}
#recruit {
    padding: 130px 0;
    background-color: #111;
}
#recruit .apply {
    padding-bottom: 350px;
}
#recruit .apply .container{
    text-align: center;
}
#recruit .apply .container h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 80px;
}
#recruit .apply .container > p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.5;
}
/* 지원안내 */
#recruit .apply .container .process-list{
    display: grid;
    grid-template-columns: repeat(4, minmax(0,300px));
    grid-auto-rows: 300px;
    justify-content: center;
    gap: 24px;
    counter-reset: process 0;
    margin-top: 100px;
}
#recruit .apply .container .process-list .list-item{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 16px;
}
#recruit .apply .container .process-list .list-item img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    object-position: center;
}
#recruit .apply .container .process-list .list-item::before {
    content: '';
    border-radius: 56px;
    position: absolute;
    inset: 0;
    z-index: -1;
    rotate: 45deg;
}
#recruit .apply .container .process-list .list-item p {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#recruit .apply .container .process-list .list-item p::before {
    content: counter(process, decimal-leading-zero);
    counter-increment: process;
    display: inline-block;
    width: max-content;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--white);
    margin-bottom: 13px;
}
#recruit .apply .container .process-list .list-item:nth-child(1)::before {
    background-color: #2c2c2c;
}
#recruit .apply .container .process-list .list-item:nth-child(2)::before {
    background-color: #556271;
}
#recruit .apply .container .process-list .list-item:nth-child(3)::before {
    background-color: #537193;
}
#recruit .apply .container .process-list .list-item:nth-child(4)::before {
    background-color: var(--blue);
}
#recruit .apply .container .process-list .list-item:nth-child(2),
#recruit .apply .container .process-list .list-item:nth-child(4) {
    translate: 0 50%;
}
#recruit .announce{
    padding: 130px 0;
    background-color: #222;
}
#recruit .announce .container {
    text-align: center;
}
#recruit .announce .container > h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 80px;
}
#recruit .announce .container > p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 80px;
    line-height: 1.5;
}
/* 채용공고 */
.announce-list {
    display: grid;
    row-gap: 30px;
}
.announce-list .list-item {
    padding: 40px 100px;
    border-radius: 20px;
    border: 1px solid #666;
    display: grid;
    grid-template-rows: max-content 0fr;
    transition: 0.3s all;
}
.announce-list .list-item .title {
    position: relative;
    text-align: left;
    cursor: pointer;
}
.announce-list .list-item .title::after {
    content: '';
    background-image: url('../images/careers/icon-down-chevron.svg');
    width: 32px;
    height: 32px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%;
    transition: 0.3s all;
}
.announce-list .list-item[aria-expanded='true'] {
    grid-template-rows: max-content 1fr;
    background-color: #2e2e2e;
    border-color: #999;
}
.announce-list .list-item[aria-expanded='true'] .title::after {
    rotate: 180deg;
}
.announce-list .list-item .title strong {
    font-size: 28px;
    font-weight: 700;
    line-height: 2.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    padding-right: 40px;
}
.announce-list .list-item .title p {
    font-size: 26px;
    font-weight: 700;
    line-height: 2;
    color: #ccc;
    padding-right: 40px;
}
.announce-list .list-item .content {
    text-align: left;
    overflow: hidden;
    transition: 0.3s all;
}
.announce-list .list-item[aria-expanded='true'] .content {
    margin-top: 36px;
    grid-auto-rows: 1fr;
}
.announce-list .list-item .content strong {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0;
    padding-left: 20px;
    border-left: 2px solid var(--white);
    line-height: 20px;
}
.announce-list .list-item .content p {
    color: #ccc;
    white-space: pre-line;
    font-size: 18px;
    line-height: 1.5;
    padding-left: 20px;
    word-break: keep-all;
}
.announce-list .list-item .content .file-download:has(a:not(:empty)) {
    border-radius: 20px;
    background-color: #383838;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    margin-top: 40px;
}
.announce-list .list-item .content .file-download:has(a:not(:empty))::before {
    content: '첨부파일';
    font-size: 24px;
    font-weight: 700;
    margin-right: 44px;
}
.announce-list .list-item .content .file-download a {
    font-size: 18px;
    color: #ccc;
    display: flex;
    align-items: center;
}
.announce-list .list-item .content .file-download a::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('../images/common/icon-download.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 8px;
}
#recruit .nessesary-list > .container {
    display: grid;
    row-gap: 30px;
    grid-auto-rows: 240px;
    margin-top: 130px;
}
#recruit .nessesary-list > .container > .list-item {
    border-radius: 20px;
    border: 1px solid #666;
    background-color: #222;
    display: flex;
    align-items: center;
    padding: 60px 100px;
}
#recruit .nessesary-list > .container > .list-item > strong {
    font-size: 36px;
    color: var(--white);
    font-weight: 700;
    padding-right: 90px;
    margin-right: 90px;
    border-right: 1px solid #666;
    line-height: 120px;
    min-width: max-content;
}
#recruit .nessesary-list > .container > .list-item > p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.5;
    word-break: keep-all;
}
/* mobile 모바일 */
/* container 크기보다 작으면 모바일 화면 */
@media screen and (max-width: 1409px) {
    #careers > .container > h1 {
        font-size: 30px;
    }
    #careers > .container > p {
        font-size: 16px;
        word-break: keep-all;
    }
    #careers #vision-list {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    #careers #vision-list img {
        display: none;
    }
    #careers #vision-list .list-item {
        padding: 32px 16px;
    }
    #careers #vision-list .list-item::before {
        padding-bottom: 16px;
        margin-bottom: 32px;
    }
    #careers #vision-list .list-item h2 {
        font-size: 22px;
    }
    #careers #vision-list .list-item p {
        font-size: 16px;
    }
    #careers #welfare .container h2 {
        font-size: 30px;
    }
    #careers #welfare .container > p {
        font-size: 16px;
    }
    #careers #welfare .container .welfare-list {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 16px;
        grid-auto-rows: 1fr;
    }
    #careers #welfare .container .welfare-list .list-item {
        padding: 32px 0;
        row-gap: 16px;
    }
    #careers #welfare .container .welfare-list .list-item img {
        width: 48px;
        height: 48px;
    }
    #careers #welfare .container .welfare-list .list-item strong {
        font-size: 20px;
    }
    #careers #welfare .container .welfare-list .list-item p {
        font-size: 14px;
    }
    #recruit .apply .container h2 {
        font-size: 30px;
    }
    #recruit .announce .container > h2 {
        font-size: 30px;
    }
    #recruit .apply .container .process-list {
        grid-template-columns: repeat(2, 170px);
        grid-auto-rows: auto;
        gap: 130px 0px;
        translate: 5% 0;
    }
    #recruit .apply .container .process-list .list-item {
        aspect-ratio: 1 / 1;
        min-height: max-content;
        row-gap: 8px;
    }
    #recruit .apply .container .process-list .list-item::before {
        border-radius: 24px;
    }
    #recruit .apply .container .process-list .list-item img {
        width: 54px;
        height: min-content;
        aspect-ratio: 1 / 1;
    }
    #recruit .apply .container .process-list .list-item p {
        font-size: 18px;
    }
    #recruit .apply .container .process-list .list-item p::before {
        font-size: 24px;
    }
    #recruit .apply .container > p,
    #recruit .announce .container > p {
        font-size: 16px;
        word-break: keep-all;
    }
    .announce-list .list-item {
        padding: 32px 16px;
    }
    .announce-list .list-item .title strong {
        font-size: 20px;
        padding-right: 0;
        line-height: 1.5;
    }
    .announce-list .list-item .title p {
        font-size: 14px;
        padding-right: 20px;
    }
    .announce-list .list-item .title::after {
        width: 16px;
        height: 16px;
    }
    .announce-list .list-item[aria-expanded='true'] .content {
        margin-top: 0;
    }
    .announce-list .list-item .content strong {
        font-size: 18px;
        line-height: 14px;
        margin: 16px 0;
    }
    .announce-list .list-item .content p {
        font-size: 14px;
    }
    .announce-list .list-item .content .file-download:has(a:not(:empty))::before {
        font-size: 18px;
        margin-right: 16px;
    }
    .announce-list .list-item .content .file-download a {
        font-size: 14px;
    }
    .announce-list .list-item .content .file-download:has(a:not(:empty)) {
        height: auto;
        padding-block: 16px;
    }
    #recruit .nessesary-list > .container {
        grid-auto-rows: auto;
    }
    #recruit .nessesary-list > .container > .list-item {
        padding: 24px 16px;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 16px;
    }
    #recruit .apply .container .process-list .list-item:nth-child(even) {
        translate: -20% 90%;
    }
    #recruit .nessesary-list > .container > .list-item > strong {
        font-size: 24px;
        padding-right: 0;
        margin-right: 0;
        line-height: 1;
        border: none;
    }
    #recruit .nessesary-list > .container > .list-item > p {
        font-size: 14px;
    }
}