.elementor-25290 .elementor-element.elementor-element-44d7bdb7{--display:flex;--padding-top:80px;--padding-bottom:80px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-4f57b8d */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #6B9B9B;
            --secondary-color: #A88FB3;
            --accent-color: #F0B5A0;
            --bg-color: #FAF8F5;
            --text-primary: #3A3A3A;
            --text-secondary: #6B6B6B;
            --white: #FFFFFF;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.12);
            --warning: #D67B65;
            --success: #7BAE7F;
        }

        body {
            font-family: 'Noto Sans KR', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-primary);
            line-height: 1.7;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }

        /* Hero Section */
        .hero-section {
            background: var(--white);
            padding: 80px 0 40px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .hero-content {
            text-align: center;
        }

        .hero-title {
            font-family: 'Pretendard', sans-serif;
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .hero-icon {
            font-size: 48px;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Search Section */
        .search-section {
            background: var(--white);
            padding: 40px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .search-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 16px 24px 16px 56px;
            border: 2px solid #E0E0E0;
            border-radius: 30px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(107, 155, 155, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            color: var(--text-secondary);
        }

        /* Category Navigation */
        .category-nav {
            display: flex;
            gap: 16px;
            margin-top: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .category-pill {
            padding: 8px 20px;
            border-radius: 20px;
            background: var(--bg-color);
            color: var(--text-secondary);
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .category-pill:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .category-pill.active {
            background: var(--primary-color);
            color: var(--white);
        }

        /* Main Content */
        .main-content {
            padding: 60px 0 120px;
        }

        /* Featured Terms */
        .featured-section {
            margin-bottom: 60px;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
        }

        .section-title {
            font-family: 'Pretendard', sans-serif;
            font-size: 28px;
            font-weight: 600;
        }

        .view-all-link {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.3s ease;
        }

        .view-all-link:hover {
            gap: 8px;
        }

        /* Term Card Grid */
        .term-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 24px;
        }

        @media (max-width: 768px) {
            .term-grid {
                grid-template-columns: 1fr;
            }
        }

        .term-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 32px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .term-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .term-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .term-title {
            font-family: 'Pretendard', sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .term-english {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        .difficulty-badge {
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 500;
        }

        .difficulty-basic {
            background: rgba(123, 174, 127, 0.1);
            color: var(--success);
        }

        .difficulty-intermediate {
            background: rgba(107, 155, 155, 0.1);
            color: var(--primary-color);
        }

        .difficulty-advanced {
            background: rgba(168, 143, 179, 0.1);
            color: var(--secondary-color);
        }

        .term-definition {
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .term-example {
            background: var(--bg-color);
            padding: 16px;
            border-radius: 8px;
            border-left: 3px solid var(--accent-color);
            margin-bottom: 20px;
        }

        .example-label {
            font-size: 12px;
            color: var(--accent-color);
            font-weight: 500;
            margin-bottom: 8px;
        }

        .example-text {
            font-size: 14px;
            color: var(--text-secondary);
            font-style: italic;
        }

        .term-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .related-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .related-tag {
            font-size: 12px;
            color: var(--primary-color);
            background: rgba(107, 155, 155, 0.1);
            padding: 4px 12px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .related-tag:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .share-button {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 18px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .share-button:hover {
            color: var(--primary-color);
        }

        /* Alphabet Index */
        .alphabet-section {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }

        .alphabet-title {
            font-family: 'Pretendard', sans-serif;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 24px;
            text-align: center;
        }

        .alphabet-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .alphabet-button {
            width: 48px;
            height: 48px;
            border: 2px solid #E0E0E0;
            background: var(--white);
            border-radius: 8px;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .alphabet-button:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .alphabet-button.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--white);
        }

        .alphabet-button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* Special Feature Card */
        .feature-card {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            padding: 48px;
            border-radius: 12px;
            margin: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .feature-title {
            font-family: 'Pretendard', sans-serif;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .feature-description {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 24px;
        }

        .feature-button {
            background: var(--white);
            color: var(--primary-color);
            padding: 16px 32px;
            border-radius: 30px;
            border: none;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .feature-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Quick Reference */
        .quick-reference {
            background: var(--white);
            padding: 32px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }

        .reference-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 24px;
        }

        .reference-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .reference-icon {
            width: 48px;
            height: 48px;
            background: var(--bg-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .reference-text {
            flex: 1;
        }

        .reference-label {
            font-weight: 500;
            margin-bottom: 4px;
        }

        .reference-desc {
            font-size: 14px;
            color: var(--text-secondary);
        }/* End custom CSS */