.elementor-190 .elementor-element.elementor-element-ed1a4b7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-190 .elementor-element.elementor-element-9146bf4{text-align:center;}.elementor-190 .elementor-element.elementor-element-9146bf4 .elementor-heading-title{font-family:"Nanum Gothic", Sans-serif;font-weight:600;color:#000000;}.elementor-190 .elementor-element.elementor-element-7ea1723{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* 쿠폰 페이지 박스 통일 스타일 */
.page-boxes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
}

.page-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.page-box-header {
    height: 120px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
}

.page-box-content {
    padding: 24px;
}

.page-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.page-box-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-box-title a:hover {
    color: #3b82f6;
}

.page-box-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.page-box-button {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-box-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .page-boxes-container {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 16px;
    }
    
    .page-box-header {
        height: 100px;
        font-size: 2rem;
    }
    
    .page-box-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-box-header {
        height: 80px;
        font-size: 1.5rem;
    }
    
    .page-box-content {
        padding: 16px;
    }
    
    .page-box-title {
        font-size: 1.125rem;
    }
}

/* 추가 유틸리티 클래스 */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }/* End custom CSS */