/* 상단 영역 */
.company-top-area {
    position: relative;
    height: 400px;
}

.company-top-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
}

.company-top-area .container {
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
    justify-content: center;
}

.company-top-area .container .title {
    width: 100%;
    height: 100%;
    position: relative;
    color: #fff !important;
    font-size: 70px;
    font-weight: bold;
    text-align: center;
    align-content: center;
}

/* 본문 */
.company-content-area .container {
    padding-top: 0px;
    padding-bottom: 100px;
    margin-left: 60px;
    margin-right: 60px;
    width: calc(100% - 120px); /* 좌우 마진 60px씩 고려 */
    justify-self: center;
}

/* 기업 이념 */
.company-ideology-area {
    padding-top: 100px;
    position: relative;
    text-align: center;
    font-size: 2em;
    line-height: 1.5em;
    display: block;
    font-weight: 700;
}

.company-ideology-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-ideology-title {
    width: 1300px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    position: relative;
    color: #fff !important;
    font-weight: bold;
    text-align: center;
    align-content: center;
    font-size: 22px;
}


/* 주요 사업 내용 */
.company-business {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
}

.company-business .overview-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-business .company-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.company-business .text-wrapper {
    position: absolute;
    top: 80px;
    left: 80px;
    right: 80px;
    z-index: 2;
    color: #fff;
    text-align: left;
    max-width: 800px;
}

.company-business .title {
    font-size: 2em;
    font-weight: bold;
    margin: 0 0 0.5em;
}


.company-business .description {
    word-break: keep-all;
    font-size: 1.1em;
    line-height: 1.5;
    margin: 0;
}


/* Overview */
.overview-title {
    padding-top: 70px;
    font-size: 5rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary);
}

.overview ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    padding-top: 60px;
    padding-left: 0px;
}

.overview ul li {
    width: 48%;
}

.overview dl {
    border-bottom: 1px solid #888;
    display: flex;
    align-items: center;
    padding: 25px 0;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
}

.overview dl dt {
    flex-shrink: 0;
    width: 135px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    transition: 0.3s;
}

@media all and (max-width: 1200px) {
    .company-top-area {
        height: 300px;
    }

    .company-top-area .container .title {
        font-size: 50px;
    }

    .overview ul li {
        width: 100%;
    }
}

@media all and (max-width: 767px) {
    /* 기업 이념 */
    .company-ideology-area {
        font-size: 1.5em;
    }

    .company-business .text-wrapper {
        top: 40px;
        left: 40px;
        right: 40px;
    }

    .company-business .title {
        font-size: 1.5em;
    }

    .company-business .description {
        font-size: 0.9em;
    }

    .overview-title {
        padding-top: 0px;
        font-size: 3rem;
    }

    .overview dl {
        flex-direction: column;
        align-items: flex-start;
    }
}