h2 {
    font-size: 150%; /* 글씨 크기를 80%로 설정 */
}

.jobHead {
    margin-bottom: 20px;
}

.about-banner {
    text-align: center;
    /* background: linear-gradient(to bottom, #ffffff, #e9f3ff); */
    padding: 50px 20px;
}
.about-banner h1 {
    font-size: 2.5rem;
    color: #444;
    margin-bottom: 20px;
}
.about-banner h1 span {
    color: #07006b;
}
.sections {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.section {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
}
.section_left {
    margin: 20px auto;
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
}

.section h2 {
    color: #004A8F;
    margin-bottom: 15px;
}
.section ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.section ul li {
    margin-bottom: 10px;
    color: #444;
}
.fixed-period {
    display: inline-block;
    width: 150px; /* 고정된 폭 */
    text-align: left; /* 텍스트 정렬 */
    color: #001224; /* 기간 색상 */
    font-weight: bold; /* 강조 */
}
.description {
    color: #444;
}

.compJY {
    font-size: 1rem;
}
@media screen and (max-width: 1000px) {
    .sections {
        grid-template-columns: 1fr;
    }

    .mobilehidden {
        display: none;
    }

    .row {
        justify-content: center;
    }
    .col-md-8 {
        width: auto;
    }

    .fixed-period {
        display: none;
    }

    .compJY {
        display: none;
    }
    

}