.elementor-6602 .elementor-element.elementor-element-6598940{--display:flex;}@media(max-width:1366px){.elementor-6602 .elementor-element.elementor-element-6598940{--padding-top:0px;--padding-bottom:0px;--padding-left:20px;--padding-right:20px;}}/* Start custom CSS for shortcode, class: .elementor-element-33b6aaa */@media (max-width: 1024px) {
    .blog-filters .category-filters {
        display: none;
    }

    .blog-filters .filter-wrapper {
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .blog-filters .category-filters {
        display: none;
    }
    
    /* 검색창은 유지하고 싶다면 */
    .blog-filters .filter-wrapper {
        justify-content: flex-end;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e4426a0 *//* 블로그 아카이브 스타일 */
.blog-header {
    padding: 120px 0 80px;
    background: #f8f8f8;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.blog-subtitle {
    font-size: 1.375rem;
    color: #666666;
    position: relative;
    z-index: 1;
}

/* 카테고리 필터 */
.blog-filters {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666666;
    position: relative;
}

.filter-btn .count {
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.875rem;
}

.filter-btn:hover {
    border-color: #0066FF;
    color: #0066FF;
    background-color: white;
}

.filter-btn.active {
    background: #0066FF;
    border-color: #0066FF;
    color: white;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f8f8;
    padding: 12px 20px;
    border-radius: 100px;
    min-width: 280px;
}

.search-icon {
    color: #666666;
    width: 20px;
    height: 20px;
}

.search-input {
    border: none;
    background: none;
    outline: none;
    font-size: 0.9375rem;
    flex: 1;
    color: #1a1a1a;
}

.search-input::placeholder {
    color: #999999;
}

/* 블로그 그리드 */
.blog-content {
    padding: 80px 0 120px;
}

.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.grid-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.sort-select {
    padding: 8px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: white;
    font-size: 0.9375rem;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:hover,
.sort-select:focus {
    border-color: #0066FF;
    outline: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 3rem;
    margin-bottom: 80px;
}

/* 블로그 카드 */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.blog-thumbnail {
    width: 100%;
    height: 240px;
    background: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 102, 255, 0.9);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: #666666;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.read-more {
    color: #0066FF;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

.blog-views {
    font-size: 0.875rem;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 추천 포스트 */
.featured-posts {
    margin-bottom: 80px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    height: 500px;
}

.featured-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
}

.featured-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.featured-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: white;
}

.featured-main-category {
    display: inline-block;
    background: #0066FF;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-main-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-main-excerpt {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-small {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-small:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.featured-small-category {
    color: #0066FF;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.featured-small-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-small-date {
    font-size: 0.875rem;
    color: #666666;
}

/* 페이지네이션 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination a:hover {
    border-color: #0066FF;
    color: #0066FF;
}

.pagination .current {
    background: #0066FF;
    border-color: #0066FF;
    color: white;
}

/* 검색 결과 없음 */
.no-posts,
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f8f8f8;
    border-radius: 16px;
}

.no-posts p,
.no-results p {
    font-size: 1.125rem;
    color: #666666;
}

/* 반응형 */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .featured-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .blog-header {
        padding: 80px 0 60px;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-filters {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .grid-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-sidebar {
        grid-template-columns: 1fr;
    }
    
    .pagination a,
    .pagination span {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
}/* End custom CSS */