/* Home Blue cont */
.home-blue {
    width: 100%;
    min-height: 100vh;
}

.home-blue .cont {
    max-width: 1320px;
    margin: 0 auto;
}

/* Hero Banner Section - Full Image Banner */
.home-blue .main-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-blue .main-banner .hero-swiper {
    width: 100%;
}

.home-blue .main-banner .swiper-slide {
    position: relative;
    width: 100%;
}

.home-blue .main-banner .slide-image {
    width: 100%;
    height: auto;
    /* 이미지 렌더링 품질 개선 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* 또는 */
    image-rendering: high-quality;

    /* 최대 너비 제한으로 과도한 확대 방지 */
    max-width: 1905px;

    /* 부드러운 스케일링 원하면 */
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
}

.home-blue .main-banner .slide-link {
    display: block;
    width: 100%;
}

.home-blue .main-banner .swiper-pagination {
    bottom: 20px;
}

.home-blue .main-banner .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
}

.home-blue .main-banner .swiper-pagination-bullet-active {
    background: #fff;
}

.home-blue .main-banner .slide-counter {
    position: absolute;
    bottom:40px;
    left:40px;
    background: rgba(0,0,0,0.4);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
    z-index: 10;
}

.home-blue .main-banner .slide-counter .current {
    font-weight: 600;
}

/* Quick Menu Section */
.home-blue .quick-menu {
    background: #fff;
    margin-top:120px;
}

.home-blue .quick-menu .menu-list {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.home-blue .quick-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.home-blue .quick-menu .menu-item img {width:100%;}

.home-blue .quick-menu .menu-item:hover {
    transform: translateY(-5px);
}

.home-blue .quick-menu .menu-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}


.home-blue .quick-menu .menu-text {
    font-size: 18px;
    color: #3A5079;
    font-weight: 500;
}

/* Section Common Styles */
.home-blue .section {

}

.home-blue .best-materials {padding:70px;box-sizing:border-box;}

.home-blue .play-plan {margin-bottom:150px;}
.home-blue .package-section {margin-top:150px;margin-bottom:170px;}

.home-blue .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.home-blue .section-title {
    font-size: 28px;
    font-weight:600;
    color: #232323;
    display:flex;
    align-items: center;
    margin-bottom:2px;
}

.home-blue .section-title a {display:flex;align-items: center;justify-content: center;}

.home-blue .section-title img {width:30px;height:30px;margin-left:2px;}

.home-blue .play-plan .section-flex {
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
}

.home-blue .section-desc {
    font-size:20px;
    color: #687B9E;
    margin-top:0px;
}

.home-blue .section-more {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-blue .section-more::after {
    content: '>';
}

/* Play Plan Section - Image Only Swiper */
.home-blue .play-plan {
    background: #fff;
    margin-top:170px;
}

.home-blue .play-plan .plan-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.home-blue .play-plan .plan-wrapper:first-child {display:none;}

.home-blue .play-plan .plan-left {
    flex-shrink: 0;
}

.home-blue .play-plan .plan-tabs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.home-blue .play-plan .plan-tab {
    width:91px;
    height:38px;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size:20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #F2F5FF;
    color: #687B9E;
    border: solid 1px #CED9FF;
}

.home-blue .play-plan .plan-tab.active {
    background: #171C50;
    color: #fff;
    font-weight:700;
    border:solid 1px #171C50;
}

.home-blue .play-plan .plan-slider {
    flex: 1;
    position: relative;
    max-width:774px;

}

.home-blue .play-plan .plan-slider:last-child {display:none;}

.home-blue .play-plan .plan-swiper {
    width: 100%;
}

.home-blue .play-plan .plan-image {
    display: block;
}

.home-blue .play-plan .plan-image img {
    width: 100%;
}

.home-blue .play-plan .swiper-button-prev,
.home-blue .play-plan .swiper-button-next {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    background:rgba(255,255,255,0.8);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.home-blue .play-plan .swiper-button-prev {left:-24px;}
.home-blue .play-plan .swiper-button-next {right:-24px;}

.home-blue .play-plan .swiper-button-prev::after,
.home-blue .play-plan .swiper-button-next::after {
    font-size: 18px;
    color: #7A9CDB;
    font-weight: bold;
}

/* Best Materials Section - Image Only */
.home-blue .best-materials {
    background: #F0F5FF;
}

.home-blue .best-materials .materials-slider {
    position: relative;
}

.home-blue .best-materials .material-item {
    display: block;
}

.home-blue .best-materials .material-item.single {
    height: 100%;
}

.home-blue .best-materials .material-item.single .material-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
}

.home-blue .best-materials .material-item.single .material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-blue .best-materials .material-item.double {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.home-blue .best-materials .material-item.double .material-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    min-height: 132px;
}

.home-blue .best-materials .material-item.double .material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-blue .best-materials .material-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-blue .best-materials .material-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.home-blue .best-materials .swiper-slide {
    height: auto;
}

.home-blue .best-materials .swiper-button-prev,
.home-blue .best-materials .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.home-blue .best-materials .swiper-button-prev::after,
.home-blue .best-materials .swiper-button-next::after {
    font-size: 16px;
    color: #666;
}

/* Package Section */
.home-blue .package-section {
    background: #fff;
}

.home-blue .package-section .package-list {
    display: flex;
    gap: 20px;
}

.home-blue .package-section .package-card {
    flex: 1;
    border: 1px solid #eee;
    border-radius: 16px;
    padding-bottom:0px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: url('/images/renewal/blue/pack_back.png') no-repeat;
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    overflow: hidden; /* 🆕 카드 자체에 overflow */
}

.home-blue .package-section .package-card:hover {
    border-color: #4a90c2;
    box-shadow: 0 5px 20px rgba(74, 144, 194, 0.15);
}

.home-blue .package-section .package-content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    margin:30px;
}

.home-blue .package-section .package-info {
    flex: 1;
    z-index: 1; /* 텍스트가 이미지 위에 오도록 */
}

.home-blue .package-section .package-card .package-image {
    width:180px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius:12px;
}

.home-blue .package-section .package-card .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.home-blue .package-section .package-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #161D4C;
}

.home-blue .package-section .package-desc {
    font-size: 18px;
    color: rgba(22, 29, 76, 0.8);
    margin-bottom: 15px;
}

.home-blue .package-section .package-btn {
    display: inline-flex;
    width:126px;
    height:42px;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 20px;
    font-weight: 500;
    font-size:18px;
    box-shadow: 0px 2px 4px 0px rgb(5, 0, 163, 0.25);
    color: rgba(22, 29, 76, 0.7);
}

/* Mall Products Section */
.home-blue .mall-section {
    margin-top:170px;
    margin-bottom:170px;
}

.home-blue .mall-section .mall-top {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.home-blue .mall-section .mall-tabs {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex:1;
    align-items: center;
    justify-content: center;
}

.home-blue .mall-section .mall-tabs .inner {
    width:250px;
    gap:6px;
}

.home-blue .mall-section .mall-tab {
    border-radius: 25px;
    width:250px;
    height:49px;
    align-items: center;
    justify-content: center;
    font-size:20px;
    background: #F2F5FF;
    border:solid 1px #CED9FF;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color:#687B9E;
}

.home-blue .mall-section .mall-tab + .mall-tab {margin-top:6px;}

.home-blue .mall-section .mall-tab:hover {
    background: #171C50;
    color: #fff;
    font-weight:bold;
}

.home-blue .mall-section .mall-tab.active {
    background: #171C50;
    color: #fff;
    font-weight:bold;
}

.home-blue .mall-section .mall-banner {
    border-radius: 16px;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
    width:788px;
    height:250px;
}

.home-blue .mall-section .mall-banner img {
    max-width: 788px;
    width:100%;
    height: 100%;
    object-fit: cover;
    min-height: 150px;
    border-radius:16px;
    object-fit: cover;
}

.home-blue .mall-section .products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}


.home-blue .mall-section .product-card {
    border-radius: 12px;
    overflow: hidden;
    width:100%;
    transition: all 0.3s ease;
}

.home-blue .mall-section .product-card img{
    margin:0px;
}

.home-blue .mall-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.home-blue .mall-section .product-image {
    width: 100%;
    aspect-ratio: 1;
}

.home-blue .mall-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-blue .mall-section .product-info {
    padding: 15px;
    text-align:left;
}

.home-blue .mall-section .product-title {
    font-size: 18px;
    color: #000000;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight:normal;
}

.home-blue .mall-section .product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size:20px;
}

.home-blue .mall-section .product-discount {
    font-size:20px;
    font-weight: 700;
    color: #4193FF;
}

.home-blue .mall-section .product-amount {
    font-size:20px;
    font-weight: 700;
    color: #333;
}

/* Review Section */
.home-blue .review-section {
    background: #F0F5FF;
    padding-top:70px;
    padding-bottom:70px;
}

.home-blue .review-section .review-list {
    display: flex;
    gap:16px;
}

.home-blue .review-section .review-card {

    background: #fff;
    border-radius: 16px;
    padding:40px 32px 32px 32px;
    transition: all 0.3s ease;
}

.home-blue .review-section .review-card .inner{
    display:flex;
    gap:20px;
}

.home-blue .review-section .review-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.home-blue .review-section .review-thumb {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
}

.home-blue .review-section .review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-blue .review-section .review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.home-blue .review-section .review-title {
    font-size: 18px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 10px;
}

.home-blue .review-section .review-desc {
    font-size: 14px;
    color: #8291AE;
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.home-blue .review-section .review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.home-blue .review-section .review-tags {
    display: flex;
    gap:2px;
}

.home-blue .review-section .review-tag {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid;
}

.home-blue .review-section .review-tag.blue {
    background: #4B9FFF;
    color: #fff;
    border-color: #4B9FFF;
}

.home-blue .review-section .review-tag.outline {
    background: #fff;
    color: #4B9FFF;
    border-color: #4B9FFF;
}

.home-blue .review-section .review-btn {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.home-blue .review-section .review-btn:hover {
    border-color: #4a90c2;
    color: #4a90c2;
}

/* CTA Banner Section - Full Image */
.home-blue .cta-section {
    padding: 40px 0;
}

.home-blue .cta-section .cta-wrapper {
    display: flex;
    gap: 20px;
}

.home-blue .cta-section .cta-banner {
    flex: 1;
    display: block;

}

.home-blue .cta-section .cta-banner:hover img {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.home-blue .cta-section .cta-banner .cta-image {
    width: 100%;
    border-radius:16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Notice Section */
.home-blue .notice-section {
    background: #fff;
    padding: 50px 0;
    margin-bottom:120px;
}

.home-blue .notice-section .notice-wrapper {
    display: flex;
    gap:120px;
    width:1320px;

}

.home-blue .notice-section .notice-column {
    flex: 1 1 0%;    /* flex-basis를 0%로 명시 */
    min-width: 0;
}

.home-blue .notice-section .notice-title {
    font-size: 28px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.home-blue .notice-section .notice-title a {display:flex;align-items: center;}

.home-blue .notice-section .notice-title img {
    width: 30px;
    height: 30px;
    margin-left: 2px;
}

.home-blue .notice-section .notice-list {
    list-style: none;
}

.home-blue .notice-section .notice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
}

.home-blue .notice-section .notice-item a {
    display:flex;width:100%;
    align-items: center;
}

.home-blue .notice-section .notice-item:last-child {
    border-bottom: none;
}

.home-blue .notice-section .notice-item .item-badge {
    display: inline-flex;
    width:44px;
    height:22px;
    align-items: center;
    justify-content: center;
    background: #469DFF;
    border-radius:20px;
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
}

.home-blue .notice-section .notice-item .item-badge.hot {
    background: #FF6EDB;
    color: #fff;
}

.home-blue .notice-section .notice-item .item-title {
    font-size: 18px;
    color: #232323;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-blue .notice-section .notice-item .item-date {
    font-size: 18px;
    color: #8291AE;
    margin-left:auto;
}

/* Swiper Custom Styles */
.home-blue .swiper {
    width: 100%;
}

.home-blue .swiper-button-prev,
.home-blue .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.home-blue .swiper-button-prev::after,
.home-blue .swiper-button-next::after {
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) {
    .home-blue .mall-section .mall-wrapper {
        flex-direction: column;
    }

    .home-blue .mall-section .mall-sidebar {
        width: 100%;
    }

    .home-blue .mall-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .home-blue .main-banner .hero-title {
        font-size: 28px;
    }

    .home-blue .quick-menu .menu-list {
        gap: 25px;
    }

    .home-blue .play-plan .plan-wrapper {
        flex-direction: column;
    }

    .home-blue .package-section .package-list {
        flex-direction: column;
    }

    .home-blue .mall-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-blue .review-section .review-grid {
        grid-template-columns: 1fr;
    }

    .home-blue .cta-section .cta-wrapper {
        flex-direction: column;
    }

    .home-blue .notice-section .notice-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}