.sub-hero {
    position: relative;
    height: 420px;
    background: url('/images/company_greeting.webp') center center/100% auto no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}



.sub-hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.sub-hero-text h1 {
    margin: 0 0 14px;
    font-size: 44px;
    font-weight: 800;
}

.sub-hero-text p {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.company-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px 90px;
}

.greeting-section {
    background: #fff;
}

.greeting-title {
    margin-bottom: 34px;
    text-align: center;
}

.greeting-title h2 {
    margin: 0;
    font-size: 32px;
    color: #173b72;
    font-weight: 800;
}

.greeting-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    word-break: keep-all;
}

.greeting-content p {
    margin: 0 0 24px;
}

.info-box-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.info-box {
    padding: 32px;
    border-radius: 18px;
    background: #f5f8fc;
    border: 1px solid #e1e8f2;
}

.info-box h3 {
    margin: 0 0 18px;
    font-size: 21px;
    color: #173b72;
}

.info-box p {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.7;
}

.info-box a {
    color: #173b72;
    text-decoration: none;
}

.info-box ul {
    margin: 0;
    padding-left: 20px;
}

.info-box li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
}

.youtube-section {
    margin-top: 80px;
}

.youtube-section h2 {
    margin: 0 0 24px;
    font-size: 30px;
    color: #222;
    text-align: center;
}

.youtube-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.15);
}

.youtube-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .sub-hero {
        height: 460px;
        background-size: cover;
        background-position: center center;
    }

    .sub-hero-text h1 {
        font-size: 34px;
    }

    .sub-hero-text p {
        font-size: 17px;
    }

    .company-main {
        padding: 50px 16px 70px;
    }

    .greeting-title h2 {
        font-size: 26px;
    }

    .greeting-content {
        font-size: 16px;
        line-height: 1.8;
    }

    .info-box-wrap {
        grid-template-columns: 1fr;
    }

    .info-box {
        padding: 26px 22px;
    }

    .info-box p {
        font-size: 22px;
    }
}

.location-main {
    width: 100%;
    background: #fff;
}

.location-map-section {
    width: 70%;
    margin: 0 auto;
}

.location-map {
    width: 100%;
    height: 460px;
    background: #f2f2f2;

    border: 1px solid #d8e0ea;
    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.location-info-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 90px;
}

.location-info-section h1 {
    margin: 0 0 34px;
    font-size: 34px;
    color: #173b72;
    text-align: center;
}

.location-info-box {
    border-top: 2px solid #173b72;
}

.location-info-box dl {
    display: flex;
    margin: 0;
    border-bottom: 1px solid #e1e6ee;
}

.location-info-box dt {
    width: 180px;
    padding: 22px 24px;
    background: #f5f8fc;
    font-weight: 800;
    color: #173b72;
}

.location-info-box dd {
    flex: 1;
    margin: 0;
    padding: 22px 24px;
    color: #333;
}

.location-btn-wrap {
    margin-top: 32px;

    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .location-map {
        height: 340px;
    }

    .location-info-section {
        padding: 42px 16px 70px;
    }

    .location-info-section h1 {
        font-size: 28px;
    }

    .location-info-box dl {
        display: block;
    }

    .location-info-box dt {
        width: auto;
        padding: 16px 18px 8px;
    }

    .location-info-box dd {
        padding: 0 18px 18px;
    }

    .location-map-section {
        width: 100%;
    }

    .location-map {
        height: 340px;
    }
}

.location-btn-wrap {
    margin-top: 32px;
    text-align: center;
}

/* 모바일 아이콘 */
.mobile-map-icons {
    display: none;
    gap: 22px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.mobile-map-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-map-icons img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: .2s;
}

.mobile-map-icons img:active {
    transform: scale(.95);
}

@media (max-width:900px) {

    /* PC 버튼 숨김 */
    .pc-location-btn {
        display: none;
    }

    /* 아이콘 표시 */
    .mobile-map-icons {
        display: flex;
    }

}

@media (max-width:480px) {

    .mobile-map-icons {
        gap: 18px;
    }

    .mobile-map-icons img {
        width: 50px;
        height: 50px;
    }

}

/* 오시는 길 버튼 최종 */
.location-btn-wrap {
    margin-top: 32px;
    text-align: center;
    display: block !important;
}

.location-mobile-icons {
    display: none !important;
}

.location-pc-btn {
    display: inline-flex !important;
}

@media (max-width: 900px) {
    .location-pc-btn {
        display: inline-flex !important;
    }

    .location-mobile-icons {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 18px;
        margin-top: 18px;
    }

    .location-mobile-icons img {
        width: 52px;
        height: 52px;
        object-fit: contain;
    }
}

@media (max-width: 900px) {
    .company-main {
        padding: 15px 16px 70px;
    }
}

@media (max-width: 900px) {
    .sub-hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
        height: 420px;
        background-size: cover;
        background-position: center center;
    }

    .greeting-hero {
        margin-top: -50px !important;
    }
}

@media (max-width: 480px) {
    .greeting-title h2 {
        font-size: 22px !important;
        line-height: 1.4 !important;
        letter-spacing: -1.5px !important;
        word-break: keep-all;
    }
}