/**
 * Sub0501 - DILO 페이지 스타일
 */

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.hero-section {
    padding: 80px 0 0;
    background-color: #ffffff;
}

.hero-image {
    width: 100%;
    height: 386px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   2. Intro Section
   ========================================================================== */
.intro-section {
    padding: 120px 0 80px;
    background-color: #ffffff;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.intro-logo {
    width: 83px;
    height: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-logo img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.intro-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    color: #2d2d2d;
    margin: 0;
}

.intro-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0;
    max-width: 1200px;
}

/* ==========================================================================
   3. Information Section
   ========================================================================== */
.information-section {
    padding: 0 0 120px;
    background-color: #ffffff;
}

.information-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 70px;
    border-top: 1px solid #B9C2CE;
}

.information-title {
    text-align: center;
}

.information-title h3 {
    font-family: 'Pretendard', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
    color: #2d2d2d;
    margin: 0;
}

.information-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Info Item */
.info-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-bullet {
    width: 9px;
    height: 9px;
    background-color: #5A626E;
    flex-shrink: 0;
}

.info-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0;
}

.info-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.info-image {
    width: 466px;
    height: 312px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
    margin: 0 auto;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 466px);
    gap: 16px;
    margin: 0 auto;
}

.info-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #2D333C;
    margin: 0;
    word-break: keep-all;
}

/* ==========================================================================
   4. Contact Section
   ========================================================================== */
/* Contact Section 컴포넌트는 components.css에 정의되어 있습니다 */
/* 페이지별 배경 이미지만 오버라이드 */
.contact-bg {
    background-image: url('/assets/img/sub0501/contact-bg.jpg');
}

/* ==========================================================================
   5. Responsive
   ========================================================================== */

@media screen and (max-width: 1440px) {
    .information-layout {
        gap: 80px;
    }
}

@media screen and (max-width: 1200px) {
    .information-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .information-title h3 {
        font-size: 32px;
    }

    .intro-title {
        font-size: 36px;
    }

    .info-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-image {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .hero-section {
        padding: 40px 0 0;
    }

    .hero-image {
        height: 300px;
    }

    .intro-section {
        padding: 80px 0 60px;
    }

    .intro-logo {
        width: 70px;
        height: 70px;
    }

    .intro-title {
        font-size: 32px;
    }

    .intro-text {
        font-size: 16px;
    }

    .information-section {
        padding: 0 0 100px;
    }

    .information-layout {
        padding-top: 50px;
    }

    .information-title h3 {
        font-size: 28px;
    }

    .info-title {
        font-size: 22px;
    }


}

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 30px 0 0;
    }

    .hero-image {
        height: 240px;
        border-radius: 8px;
    }

    .intro-section {
        padding: 60px 0 40px;
    }

    .intro-content {
        gap: 16px;
    }

    .intro-logo {
        width: 60px;
        height: 60px;
    }

    .intro-title {
        font-size: 26px;
    }

    .intro-text {
        font-size: 15px;
    }

    .information-section {
        padding: 0 0 80px;
    }

    .information-layout {
        padding-top: 40px;
        gap: 30px;
    }

    .information-title h3 {
        font-size: 24px;
    }

    .information-content {
        gap: 50px;
    }

    .info-item {
        gap: 14px;
    }

    .info-header {
        gap: 8px;
    }

    .info-bullet {
        width: 8px;
        height: 8px;
    }

    .info-title {
        font-size: 20px;
    }

    .info-body {
        gap: 16px;
    }

    .info-image {
        height: 240px;
    }

    .info-images-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-desc {
        font-size: 15px;
    }


}

@media screen and (max-width: 480px) {
    .hero-image {
        height: 160px;
    }

    .intro-section {
        padding: 50px 0 30px;
    }

    .intro-title {
        font-size: 22px;
    }

    .intro-text {
        font-size: 14px;
    }

    .information-layout {
        padding-top: 30px;
    }

    .information-title h3 {
        font-size: 20px;
    }

    .information-content {
        gap: 40px;
    }

    .info-title {
        font-size: 18px;
    }

    .info-image {
        height: 200px;
    }

    .info-desc {
        font-size: 14px;
    }


}
