
    /* iOS 자동확대(줌) 방지: 모바일 입력칸 글자 16px (그 미만이면 탭 시 iOS가 화면 확대) */
    @media (max-width: 768px) {
        input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]), textarea, select, [contenteditable] { font-size: 16px !important; }
    }
    /* 글 목록 a 태그 완전 초기화 */
    a.post-item,
    a.post-item:hover,
    .post-list > a,
    .post-list > a:hover {
        text-decoration: none !important;
        border-bottom: none !important;
        color: inherit !important;
    }
    
    /* 내부 요소는 색상 상속 제외 */
    a.post-item *,
    a.post-item:hover *,
    .post-list > a *,
    .post-list > a:hover *,
    .sidebar-widget a,
    .sidebar-widget a *,
    .sidebar-widget a:hover,
    .sidebar-widget a:hover * {
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    .post-list > a {
        display: block;
    }
    
    /* 추천 글 슬라이드 밑줄 제거 */
    .slider-track > a,
    .slider-track > a *,
    .slider-track > a:hover,
    .slider-track > a:hover * {
        text-decoration: none !important;
        border-bottom: none !important;
        color: inherit !important;
    }
    
    /* 추천 글 슬라이드 링크 초기화 */
    .slider-track > a {
        display: block;
        min-width: 100%;
        flex-shrink: 0;
    }
    
    /* 인기 키워드 밑줄 제거 */
    .keyword-list > a,
    .keyword-list > a *,
    .keyword-list > a:hover,
    .keyword-list > a:hover * {
        text-decoration: none !important;
        border-bottom: none !important;
        color: inherit !important;
    }

/* 커뮤니티 글목록 모바일 스타일 — 두 줄 (제목 / 작성자·메타) */
@media (max-width: 768px) {
    .community-list-item {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 5px !important;
    }

    .community-list-item > div:first-child a {
        flex-wrap: nowrap !important;
    }

    /* 둘째 줄: 작성자(사진+닉네임) + 좋아요 + 댓글 + 날짜 */
    .community-meta-desktop {
        display: flex !important;
        flex-wrap: wrap;
        gap: 8px !important;
        padding-left: 2px;
    }

    /* 날짜만 줄 / 제목옆 댓글수는 둘째 줄로 대체되므로 숨김 */
    .community-meta-mobile {
        display: none !important;
    }

    .comment-count-mobile {
        display: none !important;
    }
}

/* ===================================
   쿠팡 검색창 스타일
=================================== */
.coupang-search-section {
    background: white;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 1px;
    overflow: hidden;
}

.coupang-search-section .sidebar-header {
    background: #ff6b35;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.coupang-search-section .sidebar-title {
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
}

.coupang-search-section .sidebar-content {
    padding: 15px;
}

.coupang-search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.coupang-search-form input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    outline: none;
    transition: all 0.3s;
}

.coupang-search-form input[type="text"]:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.coupang-search-form button {
    width: 100%;
    padding: 12px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.coupang-search-form button:hover {
    background: #e85a28;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .coupang-search-section {
        margin-bottom: 1px;
    }
    
    .coupang-search-form input[type="text"],
    .coupang-search-form button {
        padding: 10px;
        font-size: 13px;
    }
}

/* Sliding Banner */
.customBannerArea {
    position: relative;
    overflow: hidden;
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
}

.customBox {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.customBox iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.customBox .backward {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.customBanner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.customBanner img.cover {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    opacity: 0.93;
}

.customBanner.active img {
    box-shadow: none !important;
}

.customBanner.active a {
    height: 100% !important;
}

/* 화살표 - 파란 원 + 화살표 합친 디자인 */
.customBanner .arrow {
    position: absolute;
    top: calc(50% - 15px);
    background-color: #2196f3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customBanner .arrow::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid white;
    margin-right: 2px;
}

.customBanner .arrow img {
    display: none !important;
}

/* 오른쪽 방향 화살표 (sliding-banner-280용) */
.sliding-banner-280 .customBanner .arrow::after {
    border-right: none;
    border-left: 8px solid white;
    margin-right: 0;
    margin-left: 2px;
}

.banner-bubble {
    position: absolute;
    top: 10px;
    background-color: #bd0000;
    height: 24px;
    width: 77px;
    color: white !important;
    font-size: 0.75em !important;
    border-radius: 5px;
    padding-top: 2px;
    line-height: 1.2rem !important;
}

.sliding-banner-300 .banner-bubble:after, 
.sliding-banner-150 .banner-bubble:after, 
.sliding-banner-250 .banner-bubble:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #bd0000;
    border-bottom: 0;
    border-left: 0;
    margin-left: -2.5px;
    margin-bottom: -5px;
}

.sliding-banner-280 .banner-bubble:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #bd0000;
    border-bottom: 0;
    border-right: 0;
    margin-left: -45.5px;
    margin-bottom: -5px;
}

.customBanner.active {
    animation: customMv1 1.2s ease-out infinite;
}

@keyframes customMv1 {
    0% {
        transform: translate3d(-12%, 0, 0);
    }
    20% {
        transform: translate3d(-15%, 0, 0);
    }
    40% {
        transform: translate3d(-10%, 0, 0);
    }
    60% {
        transform: translate3d(-15%, 0, 0);
    }
    80% {
        transform: translate3d(-10%, 0, 0);
    }
    100% {
        transform: translate3d(-12%, 0, 0);
    }
}

@media (min-width: 1200px) {
    .customBannerArea {
        background-color: #ffffffc9;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 0px;
        z-index: 1000;
        text-align: center;
    }
}

/* 슬라이딩 배너 덮개 이미지 - 컨테이너 완전 덮기 */
.sliding-banner-300,
.sliding-banner-150,
.sliding-banner-250,
.sliding-banner-280 {
    width: 300px !important;
    height: 320px !important;
    margin: 20px auto !important;
    overflow: hidden !important;
}
.sliding-banner-300 .customBannerArea,
.sliding-banner-150 .customBannerArea,
.sliding-banner-250 .customBannerArea,
.sliding-banner-280 .customBannerArea {
    width: 300px !important;
    height: 320px !important;
    padding: 0 !important;
    overflow: hidden !important;
}
.sliding-banner-300 .customBox,
.sliding-banner-150 .customBox,
.sliding-banner-250 .customBox,
.sliding-banner-280 .customBox {
    width: 300px !important;
    height: 330px !important;
    overflow: hidden !important;
}
.sliding-banner-300 .customBanner,
.sliding-banner-150 .customBanner,
.sliding-banner-250 .customBanner,
.sliding-banner-280 .customBanner {
    width: 340px !important;
    height: 300px !important;
    left: -10px !important;
}
.sliding-banner-300 .customBanner img.cover,
.sliding-banner-150 .customBanner img.cover,
.sliding-banner-250 .customBanner img.cover,
.sliding-banner-280 .customBanner img.cover {
    width: 340px !important;
    height: 300px !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
}
.sliding-banner-300 .customBox .backward,
.sliding-banner-150 .customBox .backward,
.sliding-banner-250 .customBox .backward,
.sliding-banner-280 .customBox .backward {
    width: 300px !important;
    height: 300px !important;
}

@media (max-width: 768px) {
    .sliding-banner-300 .customBox,
    .sliding-banner-150 .customBox,
    .sliding-banner-250 .customBox,
    .sliding-banner-280 .customBox {
        height: 300px !important;
    }
}


    