@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    text-size-adjust: 100%;
    font-weight: 400;
    font-family: SUIT-Regular, Noto Sans KR, sans-serif;
    font-size: 1em;
    line-height: 1.25;
    color: #333;
}

body, html {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-size: 100%;
}



      @keyframes pulse-blue {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
            }
        }

        @keyframes pulse-red {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(255, 87, 87, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 25px rgba(255, 87, 87, 0.5);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(255, 87, 87, 0.3);
            }
        }

        @keyframes pulse-green {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
            }
        }

        @keyframes pulse-purple {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(212, 179, 235, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 25px rgba(225, 174, 242, 0.5);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(226, 199, 255, 0.3);
            }
        }

        /* 파란색 버튼 */
        .blue-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background: linear-gradient(135deg, #005fcc 0%, #005fcc 100%);
            color: white !important;
            text-decoration: none !important;
            padding: 20px 40px;
            border-radius: 10px;
            font-weight: bold;
            text-align: center;
            font-size: 20px;
            line-height: 1.2;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
            cursor: pointer;
            letter-spacing: 0.5px;
            animation: pulse-blue 2s infinite;
            box-sizing: border-box;
            margin: 10px 0;
            min-height: 70px;
            border: none;
            font-family: inherit;
        }

        .blue-button:hover {
            animation: none;
            background: linear-gradient(135deg, #4db2e0 0%, #4db2e0 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(74, 144, 226, 0.6);
            color: black !important;
            text-decoration: none !important;
        }

        .blue-button:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        }

        /* 빨간색 버튼 */
        .red-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background: linear-gradient(135deg, #e41b1b 0%, #e41b1b 100%);
            color: white !important;
            text-decoration: none !important;
            padding: 20px 40px;
            border-radius: 10px;
            font-weight: bold;
            text-align: center;
            font-size: 20px;
            line-height: 1.2;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 87, 87, 0.3);
            cursor: pointer;
            letter-spacing: 0.5px;
            animation: pulse-red 2s infinite;
            box-sizing: border-box;
            margin: 10px 0;
            min-height: 70px;
            border: none;
            font-family: inherit;
        }

        .red-button:hover {
            animation: none;
            background: linear-gradient(135deg, #ff6551 0%, #ff6551 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 87, 87, 0.6);
            color: black !important;
            text-decoration: none !important;
        }

        .red-button:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 4px 15px rgba(255, 87, 87, 0.3);
        }

        /* 초록색 버튼 */
        .green-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background: linear-gradient(135deg, #00752d 0%, #00752d 100%);
            color: white !important;
            text-decoration: none !important;
            padding: 20px 40px;
            border-radius: 10px;
            font-weight: bold;
            text-align: center;
            font-size: 20px;
            line-height: 1.2;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
            cursor: pointer;
            letter-spacing: 0.5px;
            animation: pulse-green 2s infinite;
            box-sizing: border-box;
            margin: 10px 0;
            min-height: 70px;
            border: none;
            font-family: inherit;
        }

        .green-button:hover {
            animation: none;
            background: linear-gradient(135deg, #3ac769 0%, #3ac769 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(46, 204, 113, 0.6);
            color: black !important;
            text-decoration: none !important;
        }

        .green-button:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
        }

        /* 보라색 버튼 */
        .bora-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background: linear-gradient(135deg, #7700b8 0%, #7700b8 100%);
            color: white !important;
            text-decoration: none !important;
            padding: 20px 40px;
            border-radius: 10px;
            font-weight: bold;
            text-align: center;
            font-size: 20px;
            line-height: 1.2;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 179, 235, 0.3);
            cursor: pointer;
            letter-spacing: 0.5px;
            animation: pulse-purple 2s infinite;
            box-sizing: border-box;
            margin: 10px 0;
            min-height: 70px;
            border: none;
            font-family: inherit;
        }

        .bora-button:hover {
            animation: none;
            background: linear-gradient(135deg, #6c7aff 0%, #6c7aff 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(212, 179, 235, 0.6);
            color: black !important;
            text-decoration: none !important;
        }

        .bora-button:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 4px 15px rgba(212, 179, 235, 0.3);
        }

        /* 모바일 대응 */
        @media screen and (max-width: 768px) {
            .blue-button, .red-button, .green-button, .bora-button {
                font-size: 21px !important;
                padding: 15px 30px !important;
                min-height: 70px !important;
            }
        }

        @media screen and (max-width: 480px) {
            .blue-button, .red-button, .green-button, .bora-button {
                font-size: 19px !important;
                padding: 12px 20px !important;
                min-height: 60px !important;
            }
        }



blockquote, code, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, legend, li, ol, p, pre, td, textarea, th, ul {
    margin: 0px;
    padding: 0px;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}



button, input, select, textarea {
    font-size: 100%;
    border-radius: 0px;
}

button {
    overflow: visible;
    margin: 0px;
    padding: 0px;
    border: 0px;
    background: 0px 0px;
}

ul li {
    list-style: none;
}

fieldset, img {
    border: none;
    vertical-align: top;
}



a, a:link {
    text-decoration: none;
    color: #333333;
}

a:visited {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}


.inner {
    margin-bottom: 20px;
    color: rgb(51, 51, 51);
}

#header .inner {
    position: relative;
    max-width: 1080px;
    margin: 0px auto;
}

#header .inner .logo {
    padding: 50px 0px 0px;
    font-size: 1.75em;
    line-height: 32px;
    letter-spacing: -1px;
    color: #333;
    font-family: SUIT-Regular, Noto Sans KR;
    font-weight: normal;
}

#header .inner .logo a {
    display: inline-block;
    height: 32px;
    text-decoration: none;
    color: rgb(51, 51, 51);
    vertical-align: top;
}
#header .inner .logo img {
    width: auto;
    height: 32px;
}

#container {
    position: relative;
}

#container .content-wrap {
    max-width: 1200px;
    margin: 50px auto 0px;
    padding: 0px 20px;
}

#container .content-wrap::after {
    content: "";
    clear: both;
    display: block;
    height: 0px;
    visibility: hidden;
}

#content {
    float: left;
    width: 800px;
    padding: 0px 0px 60px;
    box-sizing: border-box;
}

#content > .inner::after {
    content: "";
    clear: both;
    display: block;
    height: 0px;
    visibility: hidden;
}

#aside {
    float: right;
    width: 300px;
    padding: 0px 0px 32px;
    box-sizing: border-box;
    position: sticky;
    position: -webkit-sticky;
    top: -80px;
}



#footer {
    padding: 38px 0px 28px;
}

#footer .inner {
    position: relative;
    max-width: 1080px;
    margin: 0px auto;
}

#footer p {
    margin-bottom: 10px;
    font-size: 0.875em;
    color: rgb(119, 119, 119);
}


#footer .page-top {
    position: absolute;
    bottom: -40px;
    right: 0px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: url("images/ico_package.png") -100px -200px no-repeat rgb(255, 255, 255);
    text-indent: -999em;
    border: 1px solid rgb(238, 238, 238);
    margin-bottom: 40px;
}

#footer .page-top:focus, #footer .page-top:hover {
    background-color: rgb(117, 117, 117);
    background-position-x: -150px;
}


#tt-body-index #content {
    padding-bottom: 20px;
}

.btn, a.btn {
    display: inline-block;
    width: 100px;
    height: 36px;
    background-color: rgb(196, 196, 196);
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    color: rgb(255, 255, 255);
    vertical-align: middle;
}

.btn:hover {
    background-color: rgb(103, 103, 103);
}



.post-header h1 {
    margin-bottom: 15px;
    font-size: 1.4em;
    line-height: 1.375;
}

.post-header h1 em {
    margin-left: 7px;
    font-style: normal;
    color: rgb(4, 190, 184);
}

.post-item {
    float: left;
    width: 31.0811%;
    margin: 0px 0px 20px 3.37838%;
}
.post-item:hover {
    opacity:.7;
}

.post-item:nth-child(3n+1) {
    clear: both;
    margin-left: 0px;
}

.post-item a {
    display: block;
    text-decoration: none;
}

.post-item .thum {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 0px;
    margin-bottom: 5px;
    padding-bottom: 100%;
    background-color: rgb(248, 248, 248);
    border-radius: 10px;
}

.post-item .thum img {
    width: 100%;
    height: auto;
}

.post-item .title {
    display: block;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 4px;
    padding-top: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
    font-weight: bold;
}

.post-item .excerpt {
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    font-size: 0.9125em;
    line-height: 1.5rem;
    color: rgb(51, 51, 51);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-item.protected .thum::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 47px;
    margin: -24px 0px 0px -17px;
    background: url("images/ico_package.png") 0px -120px / 120px no-repeat;
}



#tt-body-archive .not-found ul, #tt-body-category .not-found ul, #tt-body-tag .not-found ul {
    display: none;
}

#tt-body-archive .not-found .archive, #tt-body-category .not-found .category, #tt-body-tag .not-found .tag {
    display: block;
}

.pagination {
    margin-bottom: 60px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    margin: 0px 12px;
    font-size: 0.875em;
    line-height: 1.5rem;
    vertical-align: top;
    color: #333333;
}

.pagination .selected {
    color: rgb(51, 51, 51);
}

.pagination .next, .pagination .prev {
    width: 22px;
    height: 22px;
    border: 1px solid rgb(238, 238, 238);
    background: url("images/ico_package.png") 0px -50px no-repeat;
    text-indent: -999em;
}

.pagination .next {
    background-position-x: -50px;
}

.pagination .view-more {
    display: block;
    margin: 0px;
    padding: 12px 0px 11px;
    border: 1px solid rgb(238, 238, 238);
    text-align: center;
    font-size: 0.875em;
    color: rgb(153, 153, 153);
}


.related-articles {
    margin-bottom: 55px;
}

.related-articles h2 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1em;
}

.related-articles ul {
    display: inline-block;
    width: 101.622%;
    margin-left: -1.62162%;
    vertical-align: top;
}

.related-articles ul li {
    float: left;
    width: 25%;
    padding-left: 1.62162%;
    box-sizing: border-box;
}

.related-articles ul li:first-child {
    margin-left: 0px;
}

.related-articles ul li a {
    color: rgb(85, 85, 85);
}

.related-articles ul li a:focus, .related-articles ul li a:hover {
    color: rgb(51, 51, 51);
}

.related-articles ul li figure {
    display: block;
    width: 100%;
    height: 0px;
    margin-bottom: 0px;
    padding-bottom: 100%;
    background-color: rgb(248, 248, 248);
    border-radius: 10px;
}

.related-articles ul li figure img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.related-articles ul li .title {
    overflow: hidden;
    max-width: 100%;
    white-space: initial;
    font-size: 0.975em;
    line-height: 1.4;
    margin-top: 10px !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    display: -webkit-box;
    font-weight: bold;
}


/* 공통 스타일 */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content p {
  margin: 28px 0 20px;
  line-height: 1.5;
  display: block;
  text-align: left;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.entry-content h1 {
  font-size: 29px !important;
  font-weight: 700 !important;
  background: #f8f4e3;
  color: #252422;
  padding: 10px 15px !important;
  position: relative;
  margin-top: 10px;
  border: 2px solid #02760d;
  border-radius: 0;
  box-shadow: 5px 5px 0 #92b99b;

}

 .entry-content h1:hover {
  padding-left: 25px !important; /* padding left → padding-left로 수정 */
}


.entry-content h2 {
  font-size: 25px !important;
  font-weight: 700 !important;
  background: #f8f4e3;
  color: #252422;
  padding: 10px 15px !important;
  position: relative;
  border: 2px solid #0027a7;
  border-radius: 0;
  box-shadow: 5px 5px 0 #9392b9;

}

 .entry-content h2:hover {
  padding-left: 20px !important; /* padding left → padding-left로 수정 */
}

.entry-content h3 {

  font-size: 21px !important;
  font-weight: 600 !important;
  color: #000000;
  padding: 3px 7px !important;
  display: inline-block !important; /* inline → inline-block으로 변경 */
  background: linear-gradient(0deg, #7796ff 50%, transparent 50%);
  border-bottom: 2px dotted #0027a7;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.6 !important;
  margin-bottom: 12px !important; /* 하단 여백 추가 */
  width: 98% !important; /* 전체 너비 사용 */
  transition: padding-left 0.3s ease; /* 호버 애니메이션 */

}

 .entry-content h3:hover {
  padding-left: 15px !important; /* padding left → padding-left로 수정 */
}


.entry-content h4 {
  font-size: 19px !important;
  font-weight: 500 !important;
  color: #000000;
  padding: 3px 7px !important;
  background: #7796ff;
  border-left: 3px solid #0027a7;
  border-radius: 0;
}

 .entry-content h4:hover {
  padding-left: 15px !important; /* padding left → padding-left로 수정 */
}


.entry-content p {
    word-break: break-all;
    font-size: 18px !important;
    line-height: 1.7;
    color: #333;
    margin-block-end:1em;
    
}


.entry-content p img {
    max-width: 100% !important;
    height: auto;
}

@media screen and (max-width: 767px) {
    .entry-content h1 {
        font-size: 27px !important;
        font-weight: 700 !important;
        background: #f8f4e3 !important;
        color: #252422 !important;
        padding: 8px 12px !important;
        border: 2px solid #02760d !important;
        box-shadow: 4px 4px 0 #92b99b !important;
        transition: padding-left 0.3s ease !important;
    }
    
    .entry-content h1:hover {
        padding-left: 22px !important;
    }
    
    .entry-content h2 {
        font-size: 23px !important;
        font-weight: 700 !important;
        background: #f8f4e3 !important;
        color: #252422 !important;
        padding: 8px 12px !important;
        border: 2px solid #02760d !important;
        box-shadow: 4px 4px 0 #92b99b !important;
        transition: padding-left 0.3s ease !important;
    }
    
    .entry-content h2:hover {
        padding-left: 18px !important;
    }
    
    .entry-content h3 {
        font-size: 21px !important;
        font-weight: 600 !important;
        color: #000000 !important;
        padding: 2px 3px !important;
        display: inline !important;
        background: linear-gradient(0deg, #a7d8f6 50%, transparent 50%) !important;
        border-bottom: 2px dotted #078c4c !important;
        box-decoration-break: clone !important;
        -webkit-box-decoration-break: clone !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
        width: 100% !important;
        transition: padding-left 0.3s ease !important;
    }
    
    .entry-content h3:hover {
        padding-left: 12px !important;
    }
    
 .entry-content h3 + * {
    margin-top: 12px !important;
  }

    .entry-content h4 {
        font-size: 18px !important;
        font-weight: 500 !important;
        color: #000000 !important;
        padding: 4px 8px !important;
        background: #92b99b !important;
        border-left: 3px solid #087106 !important;
        border-radius: 0 !important;
        transition: padding-left 0.3s ease !important;
    }
    
    .entry-content h4:hover {
        padding-left: 12px !important;
    }
    
    .entry-content p {
        font-size: 17px !important;
        line-height: 1.7 !important;
        margin-bottom: 18px !important;
        color: #333 !important;
        word-break: break-all !important;
    }
}



.entry-content figure {
    margin-top: 8px !important;
}
.entry-content pre {
    word-break: break-all;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}
.entry-content ul {
    list-style: none;
    margin-bottom: 10px;
    padding: 0px;
}
.entry-content ul li {
    position: relative;
    margin-bottom: 5px;
    font-size: 17px !important;
    line-height: 1.5714;
    text-indent: 15px;
    list-style-type: none!important;
}
.entry-content ul li::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0px;
    width: 8px;
    height: 1px;
    background-color: rgb(153, 153, 153);
}

.entry-content ol {
    margin-bottom: 22px;
}

.entry-content ol li {
    position: relative;
    margin-bottom: 10px;
    font-size: 0.9375em;
    line-height: 1.5714;
    color: #333333;
    text-indent: 15px;
    list-style-type: none!important;
}

.entry-content ol li::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0px;
    width: 8px;
    height: 1px;
    background-color: rgb(153, 153, 153);
}


.entry-content img.alignleft {
    float: left;
    margin: 0px 22px 22px 0px;
}

.entry-content img.aligncenter {
    display: block;
    margin: 0px auto 22px;
}

.entry-content img.alignright {
    float: right;
    margin: 0px 0px 22px 22px;
}

.entry-content blockquote {
    margin-bottom: 40px;
    padding: 16px 20px;
    border-left: 4px solid rgb(230, 230, 230);
}

.entry-content blockquote p {
    margin: 22px 0px 0px;
}

.entry-content blockquote p:first-child {
    margin-top: 0px;
}

.entry-content table {
    width: 100%;
    margin-bottom: 22px;
    border: 1px solid rgb(230, 230, 230);
    border-collapse: collapse;
    text-align: center;
    font-size: 0.9375em;
    line-height: 1.5714;
    color: rgb(102, 102, 102);
}

.entry-content table thead th {
    padding: 7px 0px 11px;
    border-left: 1px solid rgb(230, 230, 230);
}

.entry-content table tbody td {
    padding: 7px 0px 11px;
    border-left: 1px solid rgb(230, 230, 230);
    border-top: 1px solid rgb(230, 230, 230);
}

.entry-content input {
    height: 36px;
    padding: 0px 10px;
    border: 1px solid rgb(230, 230, 230);
    font-size: 0.875em;
    line-height: 1.25;
    color: rgb(102, 102, 102);
    box-sizing: border-box;
    vertical-align: middle;
}

.entry-content .entry-content .protected_form {
    margin-bottom: 40px;
    padding: 120px 0px 200px;
    border-bottom: 1px solid rgb(122, 88, 58);
    text-align: center;
}

.entry-content .entry-content .protected_form input {
    width: 200px;
    margin-bottom: 10px;
    vertical-align: top;
}

.entry-content .cap1 {
    text-align: center;
    font-size: 0.875em;
    font-style: italic;
}

.entry-content .iframe-wrap {
    position: relative;
    height: 0px;
    padding-bottom: 56.25%;
}

.entry-content .iframe-wrap iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.entry-content .protected_form {
    display: block;
    width: 100%;
    padding: 98px 0px 120px;
    text-align: center;
}

.entry-content .protected_form h2 {
    margin: 0px 0px 8px;
    font-weight: 600;
    font-size: 1.625em;
    line-height: 2.125rem;
    color: rgb(85, 85, 85);
}

.entry-content .protected_form p {
    margin-bottom: 34px;
    font-weight: 300;
    font-size: 1em;
    line-height: 1.75;
    color: rgb(153, 153, 153);
}

.entry-content .protected_form input {
    width: 183px;
    padding: 0px 23px;
    border: 1px solid rgb(238, 238, 238);
    font-size: 0.9125em;
    line-height: 2.125rem;
}

.entry-content .protected_form input:focus {
    border-color: rgb(72, 72, 72);
}

.entry-content .protected_form .btn {
    margin-left: 5px;
}




.sidebar ul li {
    padding: 4px 0px 5px;
    font-size: 0.8125em;
    line-height: 1.25rem;
    color: rgb(51, 51, 51);
}

.sub_category_list li::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0px;
    width: 8px;
    height: 1px;
    background-color: rgb(153, 153, 153);
}

.sidebar ul li a {
    color: #333333;
}

.sidebar ul li a:hover {
    color: rgb(51, 51, 51);
}

.sidebar .sidebar-2 {
    margin-top: 38px;
    padding-top: 46px;
    border-top: 1px solid rgb(238, 238, 238);
}

.sidebar .category {
    margin-bottom: 36px;
}

.sidebar .category ul li {
    padding: 0px;
    font-size: 1.075em;
    font-weight: 600;
}

.sidebar .category ul li ul {
    padding-top: 8px;
}

.sidebar .category ul li ul li {
    padding: 6px 0px 7px;
    font-weight: 400;
    font-size: 0.9rem;
}

.sidebar .category ul li ul li ul {
    overflow: hidden;
    margin-bottom: -4px;
    padding-top: 6px;
}

.sidebar .category ul li ul li ul li {
    position: relative;
    padding: 3px 0px 3px 15px;
    font-size: 0.9rem;
}

.sidebar .recent-comment {
    margin-bottom: 36px;
}

.sidebar .recent-comment ul li a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sidebar .post-list {
    margin-bottom: 46px;
}

.sidebar .post-list h2 {
    margin-bottom: 12px;
}

.sidebar .post-list ul li {
    overflow: hidden;
    margin-bottom: 18px;
    padding: 0px;
}

.sidebar .post-list ul li img {
    float: right;
    width: 58px;
    height: 58px;
    margin: 2px 0px 0px 20px;
}

.sidebar .post-list ul li a {
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.sidebar .post-list ul li a:hover .title {
    text-decoration: underline;
}

.sidebar .post-list ul li .title {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sidebar .tab-ui h2 a {
    color: rgb(153, 153, 153);
}

.sidebar .tab-ui h2 a.current {
    color: rgb(85, 85, 85);
}

.sidebar .tab-ui h2 a::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 5px;
    margin: 0px 10px;
    vertical-align: middle;
    background: url("images/ico_package.png") -100px -50px no-repeat;
}

.sidebar .tab-ui h2 a:first-child::before {
    content: none;
}

#dimmed {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 300;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.slide-wrap {
    overflow: hidden;
}

#content .another_category {
    padding: 16px 20px 14px;
    margin: 60px 0px 57px !important;
}

#content .another_category h4 {
    margin: 0px 0px 13px !important;
    padding: 0px !important;
    border-bottom: 0px !important;
    font-size: 0.875em !important;
}

#content .another_category table {
    border: 0px;
    margin: 0px !important;
}

#content .another_category th {
    padding: 2px 0px !important;
    font-size: 0.875rem !important;
}

#content .another_category th a.current {
    font-weight: 400;
    text-decoration: underline !important;
    color: rgb(51, 51, 51) !important;
    border: 0px !important;
}

#content .another_category td {
    border: 0px;
    padding: 2px 0px !important;
    font-size: 0.75rem !important;
}

.container_postbtn {
    margin: 53px 0px 55px;
    padding: 0px !important;
}

.absent_post::before {
    content: "";
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 1.75em;
    line-height: 1.28571;
    color: rgb(85, 85, 85);
    white-space: pre;
}

.absent_post {
    line-height: 1.75;
    padding: 98px 0px !important;
    background: 0px 0px !important;
    font-weight: 400 !important;
    font-size: 1em !important;
    color: rgb(153, 153, 153) !important;
}

.layout-aside-left #content {
    float: right;
}

.layout-aside-left #aside {
    float: left;
    margin-left: 0px;
    padding: 80px 0px;
}

.layout-aside-left #container .content-wrap::before {
    margin-left: -256px;
}

.list-type-thumbnail .post-header {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgb(238, 238, 238);
}

.list-type-thumbnail .post-header h1 {
    margin-bottom: 0px;
}

.list-type-thumbnail .post-item {
    float: none;
    overflow: hidden;
    width: 100%;
    margin: 0px 0px 28px;
}

.list-type-thumbnail .post-item .thum {
    display: inline;
    width: auto;
    height: auto;
    margin: 0px;
    padding: 0px;
}

.list-type-thumbnail .post-item .thum img {
    float: right;
    width: 126px;
    height: auto;
    margin-left: 57px;
    border: 1px solid rgb(241, 241, 241);
    transform: translateY(0px);
}

.list-type-thumbnail .post-item.protected .thum {
    float: right;
    width: 126px;
    height: 166px;
    margin-left: 57px;
    border: 1px solid rgb(241, 241, 241);
    background-color: rgb(248, 248, 248);
}

.list-type-thumbnail .post-item .title {
    max-width: 100%;
    margin-bottom: 12px;
    padding-top: 7px;
    font-size: 1.25em;
}

.list-type-thumbnail .post-item .excerpt {
    overflow: hidden;
    height: 3.75rem;
    margin-bottom: 20px;
    font-size: 0.875em;
    line-height: 1.25rem;
}

.list-type-text .post-header {
    margin-bottom: 38px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgb(238, 238, 238);
}

.list-type-text .post-header h1 {
    margin-bottom: 0px;
}

.list-type-text .post-item {
    float: none;
    overflow: hidden;
    width: 100%;
    margin: 0px 0px 35px;
}

.list-type-text .post-item .thum {
    display: none;
}

.list-type-text .post-item .title {
    max-width: 100%;
    margin-bottom: 10px;
    padding-top: 0px;
    font-size: 1em;
}

.list-type-text .post-item .excerpt {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 0.875em;
    line-height: 1.25rem;
}


.list-type-text .pagination {
    margin-top: 36px;
}


@media screen and (max-width: 1080px) {
    #footer, #header h1 {
        padding-left: 12px;
        padding-right: 12px;
    }

    #container .content-wrap::before {
        left: 72.7%;
        margin-left: 0px;
    }

    .layout-aside-left #container .content-wrap::before {
        left: 27.3%;
        margin-left: 0px;
    }
    #header .inner .logo {
        padding: 0px 12px;
        padding-top: 24px;
    }

}

@media screen and (max-width: 767px) {
    #header h1 {
        position: relative;
        z-index: 10;
        padding: 40px 12px 0 12px;
        background-color: rgb(255, 255, 255);
        margin: 0;
    }

	
    #container .content-wrap {
        padding: 0px;
        margin: 0;
    }

    #container .content-wrap::before {
        content: none;
    }

    #content {
        float: none;
        width: auto;
        padding: 24px 10px 30px;
    }

    #aside {
        position: fixed;
        top: 0px;
        right: -278px;
        z-index: 400;
        float: none;
        overflow: auto;
        width: 278px;
        height: 100%;
        padding: 94px 24px 40px;
        background-color: rgb(255, 255, 255);
        box-sizing: border-box;
        transition: right 0.5s ease 0s;
    }

	
	
    #footer {
        padding: 32px 12px 26px;
    }

    #footer p {
        margin-bottom: 11px;
        font-size: 0.8125em;
    }
    #header .inner .logo {
        padding: 0px 12px;
        padding-top: 24px;
        text-align: center;
    }
	
    #tt-body-index #content {
        padding: 0px;
    }

    #tt-body-index #content > .inner {
        padding: 0px 20px;
    }

    #tt-body-index #content > .inner:first-child {
        padding-top: 30px;
    }

    #tt-body-index.list-type-text #content > .inner:first-child {
        padding-top: 36px;
    }

    #tt-body-index .pagination {
        margin: 0px 20px 40px;
    }

    #tt-body-page #content {
        padding-left: 0px;
        padding-right: 0px;
    }

    .layout-aside-left #aside {
        padding: 80px 20px 40px;
    }

	
    .post-header {
        padding-top: 2px;
    }

    .post-item {
        float: none;
        width: auto;
        margin-left: 0px;
        margin-bottom: 30px;
    }

    .post-item .thum {
        margin-bottom: 7px;
    }

    .post-item .title {
        margin-bottom: 12px;
    }

    .post-item .excerpt {
        margin-bottom: 12px;
    }

    .pagination {
        margin-bottom: 0px;
    }

    .pagination a {
        margin: 0px 4px;
    }

    .list-type-vertical .post-item {
        margin-bottom: 30px;
    }

    .list-type-vertical .post-item .title {
        margin-bottom: 7px;
    }

    .list-type-thumbnail .post-item .thum img {
        width: 96px;
        margin-left: 25px;
    }

    .list-type-thumbnail .post-item .title {
        margin-bottom: 9px;
        padding-top: 3px;
        font-size: 1.125em;
    }

    .list-type-thumbnail .post-item .excerpt {
        margin-bottom: 11px;
    }

    .list-type-thumbnail .post-item.protected .thum {
        width: 96px;
        height: 128px;
        margin-left: 25px;
    }

    .list-type-text .post-header {
        margin-bottom: 28px;
    }

    .list-type-text .post-item {
        margin-bottom: 26px;
    }

    .list-type-text .post-item .title {
        margin-bottom: 10px;
    }

    .list-type-text .post-item .excerpt {
        margin-bottom: 12px;
        -webkit-line-clamp: 4;
    }

    .list-type-text .pagination {
        margin-top: 30px;
    }
    .inner h1 {
        margin-bottom: 20px;
        color: rgb(51, 51, 51);
        padding: 0px 12px;
        font-size: 1.4em;
        line-height: 1.5;
        letter-spacing: -1px;
    }

    .entry-content {
        padding: 0px 8px;
    }

    .entry-content p {
        margin-bottom: 15px;
        line-height: 1.6rem;
    }

    .entry-content figure {
        margin-top: 6px !important;
    }

    .entry-content .protected_form input {
        width: 163px;
    }

    #content .another_category {
        margin: 40px 0px 37px !important;
    }

    .container_postbtn {
        margin: 35px 0px 37px;
    }

	
    .related-articles {
        margin-bottom: 21px;
        padding: 0px 24px;
    }

    .related-articles h2 {
        margin-bottom: 19px;
    }

    .related-articles ul {
        width: 103.571%;
        margin-left: -3.57143%;
    }

    .related-articles ul li {
        width: 50%;
        margin-bottom: 15px;
        padding-left: 3.44828%;
    }

    .related-articles ul li figure {
        margin-bottom: 9px;
    }

    .related-articles ul li .title {
        height: 2.8em;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .layout-aside-left #content {
        float: none;
    }

    #content .another_category th {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
}

@media screen and (max-width: 767px) {
    #tt-body-index .post-header {
        padding-top: 36px;
        padding-left: 24px;
    }
}

.revenue_unit_wrap.position_list {
    max-width: 800px !important;
    margin: 30px auto;
}
.adsense {
		width:100%; 
		height:100%;
}

/* 라곰 제품 배너 스타일 - 최종 수정 버전 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap');

/* 기본 애니메이션 정의 */
@keyframes laagomElegantRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes laagomGradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes laagomButtonColorChange {
  0% { background: linear-gradient(135deg, #3498db, #2980b9); }
  25% { background: linear-gradient(135deg, #5D1EB7, #4527A0); }
  50% { background: linear-gradient(135deg, #e74c3c, #c0392b); }
  75% { background: linear-gradient(135deg, #27ae60, #16a085); }
  100% { background: linear-gradient(135deg, #3498db, #2980b9); }
}

@keyframes cornerGlow {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

@keyframes laagomButtonShine {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes laagomBlink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

@keyframes laagomPulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes laagomPulseDot {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}

@keyframes laagomBorderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes borderColor {
  0% { border-color: #5D1EB7; }
  33% { border-color: #3498db; }
  66% { border-color: #9b59b6; }
  100% { border-color: #5D1EB7; }
}

@keyframes borderWidth {
  0% { border-width: 1px; }
  50% { border-width: 3px; }
  100% { border-width: 1px; }
}


/* 4. 회전하는 스트라이프 테두리 */
@keyframes stripeRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes stripeGlow {
  0%, 100% { filter: brightness(1) saturate(1); box-shadow: 0 0 15px rgba(233, 30, 99, 0.5); }
  50% { filter: brightness(1.2) saturate(1.3); box-shadow: 0 0 25px rgba(233, 30, 99, 0.7); }
}

@keyframes limitedPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes stripeMove {
  0% { background-position: 0 0; }
  100% { background-position: 50px 0; }
}


/* 2. 그라데이션 반짝임 테두리 */
@keyframes gradientRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmerEffect {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

.laagom-banner-wrapper {
  margin: 25px auto;
  max-width: 100%;
  padding: 10px;
  border-radius: 16px;
  position: relative;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-family: 'SUIT-Regular', sans-serif;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.laagom-banner-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(147, 112, 219, 0.3);
}

/* 그라데이션 테두리 */
.laagom-banner-wrapper::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff, #00ffff);
  background-size: 400% 400%;
  border-radius: 20px;
  z-index: 1;
  animation: gradientRotate 3s ease infinite, shimmerEffect 2s infinite;
  filter: brightness(1.2) contrast(1.2);
}

/* 내부 흰색 배경 */
.laagom-banner-wrapper::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: white;
  border-radius: 12px;
  z-index: 2;
}


.laagom-banner-wrapper * {
  box-sizing: border-box;
}

.laagom-product-link {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: #333;
  margin: 0;
  padding: 0;
  height: 344px;
  cursor: pointer;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

/* 배지 스타일 */
.laagom-badge-container {
  position: absolute;
  top: 15px;
  left: 15px; 
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.laagom-badge {
  background: #e74c3c;
  color: white;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: laagomPulseBadge 1.5s infinite;
  max-width: 80px;
  text-align: center;
}

/* 이미지 컨테이너 스타일 */
.laagom-image-container {
  width: 49%;
  position: relative;
  isolation: isolate;
  z-index: 6;
  overflow: hidden;
  background: #f5f5f5;
  padding: 5px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laagom-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  border-radius: 8px;
}

.laagom-hover-overlay {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.1));
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 8px;
}

.laagom-image-container:hover .laagom-product-image {
  transform: scale(1.06);
}

.laagom-image-container:hover .laagom-hover-overlay {
  opacity: 1;
}

/* 평점 컨테이너 */
.laagom-rating-container {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 7;
}

.laagom-stars-wrap {
  color: #FFC107;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -1px;
}

.laagom-score-text {
  font-weight: 700;
  font-size: 15px;
  color: #212121;
}

.laagom-reviews-count {
  font-weight: 400;
  font-size: 13px;
  color: #757575;
  margin-left: 2px;
}

/* 정보 컨테이너 스타일 */
.laagom-info-container {
  width: 51%;
  padding: 16px 20px;
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.laagom-content-top {
  flex: 1;
}

.laagom-content-bottom {
  margin-bottom: 5px;
}

.laagom-product-title {
  font-size: 22px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 5px;
  margin-top: -15px;
  line-height: 1.3;
  display: flex;
  align-items: center;
}

.laagom-hot-icon {
  color: #e74c3c;
  margin-left: 8px;
  animation: laagomBlink 2s infinite;
}

/* 설명 부분 */
.laagom-product-description {
  color: #424242;
  margin-bottom: 5px;
  height: 63px;
  max-height: 63px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 52px;
}

/* 가격 컨테이너 스타일 */
.laagom-price-container {
  margin-bottom: 5px;
  width: 100%;
}

.laagom-original-price {
  font-size: 16px;
  color: #757575;
  text-decoration: line-through;
  margin-bottom: 0px;
  margin-top: 7px;
  display: block;

}

.laagom-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.laagom-discount-price {
  font-size: 23px;
  font-weight: 700;
  color: #e74c3c;
  margin-top: -3px;
}

.laagom-won {
  font-size: 18px;
  font-weight: 500;
  margin-left: 2px;
}

.laagom-discount-percent {
  background: #e74c3c;
  color: white;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 15px;
  margin-left: 5px;
}

/* 배송 정보 */
.laagom-shipping-info {
  font-size: 14px;
  color: #616161;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

/* 관심 배지 */
.laagom-attention-badge {
  background: #ECEFF1;
  border-left: 3px solid #5D1EB7;
  color: #212121;
  font-size: 13px;
  padding: 6px 10px;
  margin-bottom: 6px;
  border-radius: 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* 점 색상을 테두리 색상과 동일하게 변경 */
.laagom-pulse-icon {
  color: #5D1EB7;
  margin-right: 8px;
  animation: laagomPulseDot 1.5s infinite;
}

/* 재고 정보 */
.laagom-limited-stock {
  background: #FFEBEE;
  border-left: 3px solid #B71C1C;
  color: #B71C1C;
  font-size: 13px;
  padding: 6px 10px;
  margin-bottom: 5px;
  border-radius: 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.laagom-stock-icon {
  color: #B71C1C;
  margin-right: 8px;
  animation: laagomPulseDot 1.5s infinite;
}

.laagom-stock-count {
  font-weight: 700;
}

/* 버튼 컨테이너 스타일 */



.laagom-info-container {
  width: 51%;
  padding: 15px 3px 7px 10px; /* 좌우 패딩 동일하게 설정 */
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* 버튼 컨테이너 좌우 여백 조정 */
.laagom-button-container {
  position: relative;
  margin-bottom: 0;
  width: 100%;
  padding: 0 2px; /* 좌우 여백 미세 조정 */
}


/* 3. 로즈 골드 메탈 버튼 */
@keyframes roseGoldWave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes metalGlow {
  0%, 100% { 
    box-shadow: 
      0 5px 15px rgba(183, 110, 121, 0.4),
      inset 0 1px 2px rgba(255, 255, 255, 0.5),
      inset 0 -1px 2px rgba(0, 0, 0, 0.2);
  }
  50% { 
    box-shadow: 
      0 8px 20px rgba(183, 110, 121, 0.5),
      inset 0 1px 3px rgba(255, 255, 255, 0.7),
      inset 0 -1px 2px rgba(0, 0, 0, 0.3);
  }
}

.laagom-button-container {
  position: relative;
  margin-top: 5px;
  margin-bottom: 0;
  width: 100%;
  padding: 0 2px; /* 좌우 여백 미세 조정 */
}

.laagom-buy-button {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #B76E79, #F7CAC9, #DEA5A4, #F7CAC9, #B76E79);
  background-size: 200% 200%;
  animation: roseGoldWave 6s ease infinite, metalGlow 3s ease-in-out infinite;
  color: #5E3640 !important;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  overflow: hidden;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.laagom-buy-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #C57A86, #F7CAC9, #E5B2B1, #F7CAC9, #C57A86);
  box-shadow: 
    0 8px 25px rgba(183, 110, 121, 0.6),
    inset 0 1px 3px rgba(255, 255, 255, 0.7),
    inset 0 -1px 2px rgba(0, 0, 0, 0.3);
  filter: brightness(1.05);
}

.laagom-arrow {
  margin-left: 8px;
  transition: transform 0.4s ease;
  color: #5E3640;
}

.laagom-buy-button:hover .laagom-arrow {
  transform: translateX(5px) scale(1.2);
}

.laagom-buy-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.laagom-buy-button:hover::after {
  left: 100%;
}




/* 타임딜 스타일 */
.laagom-timedeal-container {
  position: absolute;
  bottom: 5px !important;
  left: 5px !important;
  right: 5px !important;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  z-index: 8;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 8px 8px;
  height: 60px;
  justify-content: center;
  transition: all 0.7s ease !important;
  transform-origin: bottom center !important;
}

.laagom-image-container:hover .laagom-timedeal-container {
  transform: scale(1.06) !important;
}

.laagom-timedeal-label, 
.laagom-timedeal-time {
  transition: all 0.7s ease !important;
}

.laagom-image-container:hover .laagom-timedeal-label,
.laagom-image-container:hover .laagom-timedeal-time {
  transform: scale(1.02) !important;
}

.laagom-image-container .laagom-rating-container {
  bottom: 75px !important;
  z-index: 9 !important;
}

.laagom-timedeal-label {
  font-size: 13px;
  font-weight: 700;
  color: #FFC107;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
}

.laagom-timedeal-time {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.laagom-timedeal-clock {
  margin-right: 5px;
  animation: laagomPulseBadge 1s infinite;
}

.laagom-timedeal-remaining {
  color: white;
}

.laagom-timedeal-ended {
  color: #FF5252;
  font-weight: 700;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .laagom-product-link {
    flex-direction: column;
    height: auto;
  }
  
  .laagom-image-container,
  .laagom-info-container {
    width: 100%;
  }
  
  .laagom-image-container {
    height: auto;
    aspect-ratio: 1/1;
    max-height: 300px;
  }
  
  .laagom-info-container {
    padding: 15px;
    height: auto;
  }
  
  .laagom-content-top,
  .laagom-content-bottom {
    width: 100%;
  }
  
  .laagom-product-title {
    font-size: 20px;
    margin-top: -10px;
    margin-bottom: 7px;
  }
  
  .laagom-badge {
    font-size: 12px;
    padding: 5px 9px;
    max-width: 70px;
  }

  .laagom-original-price {
    font-size: 15px;
    margin-top: 20px;
  
  .laagom-discount-price {
    font-size: 24px;
    
  }
  
  .laagom-buy-button {
    font-size: 18px;
    padding: 12px 15px;
    height: 52px;
  }
  
  .laagom-badge-container {
    right: auto;
    left: 15px;
  }
  
  .laagom-rating-container {
    bottom: 15px;
    left: auto;
    right: 15px;
  }
}