/*
Theme Name: Glasswallet Light Theme
Theme URI: http://pixl.xn--mk1bu44c/
Author: Antigravity AI
Author URI: https://github.com/google-deepmind
Description: A premium light mode WordPress theme inspired by Glasswallet. Implements a clean, single-column dashboard layout with subtle shadows and elegant blue-purple gradients.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: glasswallet-light
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+KR:wght@300;400;500;700&family=Outfit:wght@400;600;700;800&display=swap');

/* --- Base & Reset Styles --- */
:root {
    --bg-color: #f8fafc;
    --text-color: #334155;
    --text-title: #0f172a;
    --text-muted: #64748b;
    --border-color: rgba(15, 23, 42, 0.04);
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-bg-hover: rgba(255, 255, 255, 0.9);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom glow effects for light mode - very subtle */
.glow-blue {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.03);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.glow-purple {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.03);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

/* Glass card styling for Light Mode */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: var(--card-bg-hover);
    border-color: rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02), 0 4px 6px -2px rgba(0, 0, 0, 0.02), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* Custom content text styles for WordPress editor compatibility (Light Mode) */
.wp-content {
    line-height: 1.9;
}

.wp-content p {
    margin-top: 0;
    margin-bottom: 2.25rem;
    padding-bottom: 2.25rem; /* 구분선 위 패딩 */
    border-bottom: 1px dashed rgba(15, 23, 42, 0.08); /* 세련된 대시 타입의 단락 구분선 */
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.wp-content p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.wp-content h1, .wp-content h2, .wp-content h3, .wp-content h4 {
    color: var(--text-title);
    font-weight: 700;
    margin-top: 3.5rem; /* 제목 시작 전 단락과의 구분 여백 확대 */
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.wp-content h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.wp-content h3 {
    font-size: 1.25rem;
}

.wp-content a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.2s;
}

.wp-content a:hover {
    color: #1d4ed8;
}

.wp-content ul, .wp-content ol {
    margin-top: 0;
    margin-bottom: 2.25rem;
    padding-left: 1.75rem;
    color: var(--text-color);
}

.wp-content li {
    margin-bottom: 0.75rem; /* 목록 항목 간 간격 조정 */
}

.wp-content blockquote {
    border-left: 4px solid #3b82f6;
    padding: 0.75rem 1.25rem;
    margin: 2.5rem 0;
    background: rgba(59, 130, 246, 0.03);
    color: #475569;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.wp-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2.5rem 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
