@charset "utf-8";

/**
 * ZZAN Studio Official Widgetstyle
 * 
 * @package    ZZAN_NEONLIME
 * @author     ZZAN Studio (contact@zzan.me)
 * @version    1.0.1
 * @license    Commercial
 * @link       https://zzan.me
 * 
 * Design Concept: Quiet Luxury with Neon Accents
 * Compatibility: ZZAN Studio Official Layout v1
 */

/* Widget Container: Shared Styles */
.zzan-ws-container {
    width: 100%;
    margin-bottom: 60px;
    color: var(--zzan-text);
    font-family: 'Montserrat', 'Pretendard', sans-serif;
}

/* Alignment Settings */
.zzan-ws-container.align-center .zzan-ws-header {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}
.zzan-ws-container.align-center .zzan-ws-title {
    margin-right: 0;
}

/* Widget Header: Title & More Link */
.zzan-ws-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--zzan-border);
}

/* Widget Title */
.zzan-ws-title {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Montserrat', 'Pretendard', sans-serif;
    letter-spacing: -1px;
    margin: 0;
    text-transform: uppercase;
}

/* More Button (Link) */
.zzan-ws-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--zzan-text);
    font-size: 11px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.zzan-ws-more .more-icon {
    width: 14px;
    height: 14px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.zzan-ws-more:hover {
    opacity: 1;
    color: var(--zzan-neon);
}

.zzan-ws-more:hover .more-icon {
    transform: translateX(4px);
}

/* Widget Content Body */
.zzan-ws-content {
    width: 100%;
}

/* Dark/Light Theme Support (CSS Variable Overrides) */
[data-theme='dark'] .zzan-ws-container {
    --zzan-border: rgba(255, 255, 255, 0.1);
}

[data-theme='light'] .zzan-ws-container {
    --zzan-border: rgba(0, 0, 0, 0.08);
}

/* Responsive Media Queries */
@media screen and (max-width: 768px) {
    .zzan-ws-title {
        font-size: 22px;
    }
    .zzan-ws-container {
        margin-bottom: 40px;
    }
}
