@chartset 'utf-8';

/* ESG 비전 */
.esg__vision {
    text-align:center;
}
.esg__vision .vision__desc {
}
.esg__vision .vision__desc p {
    font-size:30px;
    color:var(--point-color);
    margin-bottom:70px;
}
.esg__vision .vision__highlight {
    background:var(--point-color);
    padding:10px 30px;
    color:#fff;
    font-size:30px;
    font-weight:600;
    margin-bottom:70px;
    display:inline-block;
}
.esg__vision .vision__grid {
    display:flex;
    justify-content: center;
    align-items: stretch;
    gap:36px;
}
.esg__vision .vision__card {
    width:100%;
    min-height:430px;
    position:relative;
    display:flex;
    justify-content: center;
    align-items: center;
}
.esg__vision .card__bg {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.esg__vision .card__bg:after {
    content:'';
    display:block;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    position:absolute;
    top:0;
    left:0;
    z-index:1;
}
.esg__vision .card__bg img {
    width:100%;
    height:100%;
}
.esg__vision .card__content {
    z-index:2;
}
.esg__vision .card__content * {
    color:#fff;
}
.esg__vision .card__label {
    font-size:24px;
}
.esg__vision .card__content h3 {
    font-size:45px;
    font-weight:bold;
    margin:60px 0;
}
.esg__vision .card__desc {
    font-size:25px;
    line-height:1.6;
}
.esg__vision .card__mark {
    font-size:200px;
    font-weight:600;
    position:absolute;
    top:0;
    left:10px;
    opacity:0.08;
    line-height:0.85;
}

/* ESG 상세 */
.esg__detail {
    padding-bottom: 150px;
}
.esg__detail .detail__section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 80px;
}
.esg__detail .detail__item {
    width: 100%;
    gap: 20px;
    position: relative;
}
.esg__detail .item__line {
    width: 1px;
    height: 144px;
    background: var(--point-color);
    position: relative;
    margin:0 auto;
}
.esg__detail .item__dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 33, 75, 0.53);
    flex-shrink: 0;
    margin:0 auto;
    position: relative;
    z-index: 1;
    top:-15px;
}
.esg__detail .item__dot::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--point-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.esg__detail .item__content {
    margin-bottom: 80px;
    min-height:140px;
    width: 100%;
}
.esg__detail .item__content p {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
    margin-top: 20px;
}
.esg__detail .item__footer {
    text-align: center;
    background: var(--point-color);
    padding: 15px 10px;
}
.esg__detail .item__footer p {
    font-size: 22px;
    font-weight: 600;
    color:#fff;
    line-height: 1.8;
}
/* 안전보건경영 */
.esg__safety {
    padding: 0 0 150px;
    background: #f8f9fa;
}
.esg__safety .common__title {
    text-align: center;
    margin-bottom: 80px;
}
.esg__safety .safety__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}
.esg__safety .safety__card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.esg__safety .card__icon {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--point-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.esg__safety .card__icon img {
    max-width: 90px;
    max-height: 90px;
    width: 100%;
    object-fit: contain;
}
.esg__safety .card__content {
    padding-top: 20px;
}
.esg__safety .card__content h3 {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}
.esg__safety .card__content p {
    font-size: 25px;
    font-weight:300;
    line-height: 1.6;
}

/* ESG 규범 다운로드 */
.esg__download {
    padding: 100px 0 150px;
}
.esg__download .common__title {
    text-align: center;
    margin-bottom: 80px;
}
.esg__download .download__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.esg__download .download__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #000;
}
.esg__download .download__row:last-child {
    border-bottom: 1px solid #000;
}

.esg__download .download__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    border-right: 1px solid #000;
}
.esg__download .download__item:nth-child(3n+1){
    border-left:1px solid #000;
}
.esg__download .download__item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    width:100%;
    text-align: center;

}
.esg__download .btn__download {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    border: 1px solid #000;
    background: #fff;
    text-decoration: none;
    transition: all 0.3s;
    width:260px;
    min-width:260px;
    justify-content: center;
}
.esg__download .btn__download:hover {
    background:rgb(230, 230, 230);
}
.esg__download .btn__download span {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s;
}
.esg__download .btn__download img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}


@media screen and (max-width:991px){
    .esg__detail .item__content p {
        font-size:17px;
    }
    .esg__vision .vision__desc p {
        font-size:20px;
    }
    .esg__vision .vision__highlight{
        font-size:17px;
    }
    .esg__vision .card__desc{
        font-size:17px;
    }
    .esg__vision .card__content h3{
        font-size:35px;
    }
    .esg__detail .item__footer p{
        font-size:17px;
    }
    .esg__detail .item__content{
        min-height:160px;
    }
    .esg__safety .safety__grid {
        display:block;
    }
    .esg__safety .safety__card {
        margin-bottom:20px;
    }
    .esg__safety .card__icon{
        width:140px;
        height:140px;
    }
    .esg__safety .card__icon img{
        max-width:70px;
    }
    .esg__download .download__item{
        display:block;
    }
    .esg__download .download__item h3 {
        margin-bottom:20px;
    }
}

@media screen and (max-width:767px){
    .esg__vision .vision__desc p{
        font-size:17px;
    }
    .esg__vision .vision__highlight{
        font-size:17px;
    }
    .esg__vision .card__mark{
        font-size:50px;
    }
    .esg__vision .vision__grid{
        gap:10px;
    }
    .esg__vision .card__label{
        font-size:14px;
    }
    .esg__vision .card__content{
        height:100%;
        padding:20px 5px;
    }
    .esg__vision .card__content h3{
        font-size:24px;
        margin:15px 0;
    }
    .esg__vision .card__desc{
        font-size:14px;
    }
    .esg__vision .card__desc br{
        display:none;
    }
    .esg__vision .vision__card{
        min-height:auto;
    }
    .esg__detail .item__line{
        height:40px;
    }
    .detail__item{
        width:100%;
    }
    .esg__detail .detail__section {
        padding:0;
        gap:10px;
    }
    .esg__detail .item__dot::before{
        width:10px;
        height:10px;
    }
    .esg__detail .item__content p{
        font-size:14px;
        margin-top:10px;
    }
    .esg__detail .item__dot{
        width:20px;
        height:20px;
    }
    .esg__detail .item__content{
        min-height:180px;
        margin-bottom:10px;
    }
    .esg__detail .item__footer p{
        font-size:14px;
        line-height:1.2;
    }
    .esg__detail{
        padding-bottom:0;
    }
    .esg__safety .card__icon{
        width:60px;
        height:60px;
    }
    .esg__safety .card__icon img {
        max-width:30px;
    }
    .esg__safety .safety__card{
        gap:10px;
    }
    .esg__safety .card__content{
        padding-top:10px;
    }
    .esg__safety .card__content h3{
        font-size:17px;
        margin-bottom:5px;
    }
    .esg__safety .card__content p{
        font-size:14px;
    }
    .esg__safety .common__title{
        margin-bottom:30px;
    }
    .esg__safety{
        padding-bottom:50px;
    }
    .esg__download{
        padding:50px 0;
    }
    .esg__download .download__item:nth-child(3n+1) {
        border-left:0;
    }
    .esg__download .download__row {
        display:block;
        text-align:center;
        border:0
    }
    .esg__download .download__item{
        border:0 !important;
        border-top:1px solid #ddd !important;
        margin-bottom:10px;
        padding:20px;
    }
    .esg__download .download__item h3{
        font-size:17px;
        margin-bottom:10px;
    }
    .esg__download .btn__download{
        width:100%;
        gap:10px;
    }
    .esg__download .btn__download span{
        font-size:14px;
    }
    .esg__download .btn__download img{
        width:17px;
    }
    .esg__download .download__row:last-child{
        border-bottom:0;
    }
}