/* Extracted Styles */

        :root {
          --grad-main:   linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
        }

        header.site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 85px;
            background: var(--header-bg) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            width: 100%;
        }

        .header-box {
            max-width: var(--site-width);
            margin: 0 auto;
            width: 100%;
            height: 85px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .nav-logo {
          display: flex; align-items: center; gap: 10px;
          text-decoration: none;
        }
        .nav-logo-mark {
          width: 36px; height: 36px; border-radius: 9px;
          background: var(--grad-main);
          display: flex; align-items: top; justify-content: center;
          font-weight: 700; font-size: 22px; color: #fff;
          box-shadow: 0 2px 12px rgba(99,102,241,0.5);
        }
        .nav-logo-mark .sup {font-size:12px !important;vertical-align: super !important;}
        .nav-logo-text { font-size: 24px !important; font-weight: 800; color: #fff; letter-spacing: 1px;}
        .nav-logo-text span { color: #a5b4fc !important; }

        .nav-links {
          display: flex; align-items: center; gap: 4px; list-style: none;
        }        

        .hamburger-btn {
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-main);
            border: none;
            background: none;
            display: flex;
            align-items: center;
            padding: 5px;
        }

        .hamburger-btn svg {
            width: 30px;
            height: 30px;
        }

        .pc-menu {
            display: flex;
            align-items: center;
        }
        
        .pc-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 25px;
        }
        
        .pc-nav-item a {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 600;
            font-size: 1.2rem;
            transition: color 0.2s;
        }
        
        .pc-nav-item a:hover {
            color: var(--primary);
        }
        .pc-nav-item {
            position: relative;
            padding: 25px 18px;
        }
        .pc-sub-menu {
            position: absolute;
            top: 100%;
            left: 100px;
            transform: translateX(-50%) translateY(-10px);
            background: var(--header-bg);
            border: 1px solid var(--border);
            min-width: 220px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 0px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .pc-nav-item:hover .pc-sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .pc-nav-item:last-child .pc-sub-menu {
            left: auto;
            right: 0;
            transform: translateY(-10px);
        }
        .pc-nav-item:last-child:hover .pc-sub-menu {
            transform: translateY(0);
        }
        .pc-sub-item a {
            display: block;
            font-weight: 500;
            padding: 12px 28px;
            border-bottom: 1px solid var(--border);
            color: var(--text-main);
            text-decoration: none;
            font-size: 1.1rem;
            text-align: left;
        }
        .pc-sub-item a:hover {
            background: rgba(0,0,0,0.05);
            color: var(--primary);
        }

        .mobile-sub-menu {
            display: none;
            list-style: none;
            padding: 0;
            margin: 0;
            background: rgba(0,0,0,0.02);
        }
        .mobile-nav-item.open .mobile-sub-menu {
            display: block;
        }
        .mobile-sub-item a {
            display: block;
            padding: 12px 20px 12px 40px;
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.95rem;
            border-bottom: 1px solid var(--border);
        }

        .highlight-box {
            background: var(--card-bg);
            border-left: 3px solid #2563eb;
            padding: 16px 20px;
            margin: 24px 0;
            border-radius: 4px;
            font-size: 16.5px;
            color: var(--text-main);
        }

        .stat-box {
            background: #f9f9f9;
            border: 1px solid #e2e2e2;
            border-radius: 10px;
            padding: 20px 24px;
            margin: 28px 0;
            font-size: 0.96em;
        }
        .stat-box b {
            color: #1a73e8;
        }     

        /* ══════════════════════════════════════════
           SCROLL ANIMATIONS
        ══════════════════════════════════════════ */
        .reveal {
          opacity: 0; transform: translateY(30px);
          transition: opacity .7s ease, transform .7s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: .1s; }
        .reveal-delay-2 { transition-delay: .2s; }
        .reveal-delay-3 { transition-delay: .3s; }
        .reveal-delay-4 { transition-delay: .4s; }           

        @media (min-width: 769px) {
            .hamburger-btn { display: none; }
            .fs-menu { display: none !important; }
        }
        @media (max-width: 768px) {
            .pc-menu { display: none; }
        }

        .fs-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 360px;
            height: 100vh;
            background: var(--card-bg);
            border-left: 1px solid var(--border);
            z-index: 2000;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            padding: 40px 30px;
            box-sizing: border-box;
            overflow-y: auto;
        }

        .fs-menu.open {
            transform: translateX(0);
        }

        .fs-menu-close {
            align-self: flex-end;
            cursor: pointer;
            margin-bottom: 30px;
            color: var(--text-main);
            transition: color 0.2s;
        }


        .fs-menu-close i {font-size:24px;}
        
        .fs-menu-close:hover {
            color: var(--primary);
        }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(4px);
            z-index: 1500;
            display: none;
        }

        .overlay.open {
            display: block;
        }

        .user-section {
            background: var(--user-section-bg);
            padding: 20px;
            border-radius: 16px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid var(--border);
        }
        
        .user-logout div {
            color: var(--text-main);
        }
        
        .user-login i {font-size:1rem;margin-right:4px;color:var(--primary);}
        .user-logout i {font-size:1rem;margin-right:4px;}

        .user-avatar {
            width: 44px;
            height: 44px;
            background: var(--primary);
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            flex-shrink: 0;
        }

        .nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
            border-top: var(--border) solid 1px;
        }

        .nav-item {
            padding: 14px 10px;
            border-bottom: var(--border) solid 1px;
            display: flex;
            align-items: center;
        }

        .nav-item i {font-size:1.2rem;color:var(--primary);margin-right:6px;flex-shrink:0;} 

        .nav-link {
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            color: var(--text-main);
            transition: color 0.2s;
            display: flex;
            align-items: center;
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
        }

        @media (max-width: 480px) {
            .fs-menu {
                width: 100% !important;
                padding: 30px 20px !important;
                border-left: none !important;
            }
        }

        .container {
            max-width: var(--site-width);
            margin: 0 auto 60px auto;
            padding: 0px 20px;
            width: 100%;
            box-sizing: border-box;
            flex: 1;
        }

        /* Board UI */
        .board-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .sub-tabs .tab-link.active {
            background: #fff;
            color: var(--primary);
            border-color: #fff;
        }

        .board-header-full {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: linear-gradient(90deg,rgba(5, 71, 97, 1) 0%, rgba(41, 56, 97, 1) 0%, rgba(19, 29, 59, 1) 0%, rgba(35, 55, 97, 1) 99%);
            padding: 0px 0px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-sizing: border-box;
        }

        .board-header-full h2 {
            font-weight: 500;
            font-size:40px;
        }

        .sub-breadcrumb-bar {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: var(--card-bg);
            border-top: var(--border) solid 1px;
            border-bottom: var(--border) solid 1px;
            box-sizing: border-box;
            z-index: 50;
        }

        .breadcrumb-inner {
            max-width: var(--site-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            height: 50px;
        }

        .home-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            color: var(--text-main);
            border-right: 1px solid var(--border);
            border-left: 1px solid var(--border);
            text-decoration: none;
            background: var(--card-bg);
        }

        .home-icon i {
            font-size: 18px;
        }

        .breadcrumb-dropdown {
            position: relative;
            height: 50px;
            border-right: 1px solid var(--border);
            min-width: 200px;
        }

        .dropdown-toggle {
            width: 100%;
            height: 100%;
            background: transparent;
            border: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            font-size: 0.95rem;
            color: var(--text-main);
            cursor: pointer;
            font-family: inherit;
        }

        .dropdown-menu {
            position: absolute;
            top: 50px;
            left: -1px;
            width: calc(100% + 1px);
            background: var(--border);
            border: 1px solid var(--border);
            border-top: none;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 60;
            display: flex;
            flex-direction: column;
        }

        .breadcrumb-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            padding: 12px 20px;
            text-decoration: none;
            color: #fff;
            font-size: 0.95rem;
            border-bottom: 1px solid var(--border);
            transition: background 0.2s, color 0.2s;
        }

        .dropdown-menu a:last-child {
            border-bottom: none;
        }

        .dropdown-menu a:hover {
            background: var(--card-bg);
            color: #fff;
        }

        .dropdown-menu a.active {
            background:#2f4a6f;
            color: #fff;
        }

        .content-title-area {
            text-align: center;
            margin: 60px 0 60px 0;
        }

        .content-title-area h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #a0bcff;
            margin: 0;
            display: inline-block;
            position: relative;
        }

        .content-title-area h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: #50679d;
        }

        @media (max-width: 768px) {
            .breadcrumb-inner {
                flex-wrap: wrap;
                height: auto;
            }
            .breadcrumb-dropdown {
                flex: 1;
                min-width: 0;
            }
            .content-title-area h2 {
                font-size: 1.6rem;
            }
        }

        .board-title {
            font-size: 2rem;
            font-weight: 600;
            margin: 0px auto 20px auto;
            position: relative;
            letter-spacing: -1px;
            color: var(--text-main);
        }

        .board-title::before {
            content: '';
            position: absolute;
            left: 38%;
            top: 60px;
            height: 2px;
            width: 40px;
            background: var(--primary);
            border-radius: 3px;
        }

        .post-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
        }

        .card {
            background: var(--card-bg);
            border-radius: 24px;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .card-thumb {
            height: 240px !important;
            overflow: hidden;
            background: #f1f5f9;
        }

        .card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-body {
            padding: 25px;
        }

        .card-title {
            font-size: 1.25rem;
            margin-bottom: 12px;
            font-weight: 600;
            line-height: 1.3;
        }

        .card-title svg {width:24px !important;height: 24px !important;color:#85b3ff !important;}

        .card-content {
            font-size: 1rem;
            color: var(--text-muted);
            -webkit-line-clamp: 3;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .webzine-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .webzine-item {
            display: flex;
            gap: 30px;
            background: var(--card-bg);
            padding: 30px;
            border-radius: 14px;
            border: 1px solid var(--border);
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
        }

        .webzine-item:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }

        .webzine-thumb {
            width: 280px;
            height: 160px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--user-section-bg);
        }

        .webzine-thumb img {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            object-fit: cover;
        }

        .webzine-body {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .guestbook-masonry {
            column-count: 3;
            column-gap: 12px;
        }

        .guestbook-masonry img {border-radius: 10px;}

        .guestbook-item {
            break-inside: avoid;
            background: var(--card-bg);
            padding: 12px 20px;
            border-radius: 14px;
            border: 1px solid var(--border);
            margin-bottom: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            text-decoration: none;
            color: inherit;
            display: block;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .guestbook-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px -5px rgba(99, 102, 241, 0.15);
            border-color: var(--primary);
        }
        .guestbook-item svg {width:16px;height: 16px;margin-right:4px;}

        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 80px;
        }

        .page-link {
            padding: 12px 22px;
            border: 1px solid var(--border);
            border-radius: 14px;
            text-decoration: none;
            color: var(--text-main);
            background: var(--card-bg);
            font-weight: 600;
            transition: all 0.2s;
        }

        .page-link:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .page-link.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        /* View Page UI */
        .board-info {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .post-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 25px;
            line-height: 1.1;
            letter-spacing: -1px;
            color: var(--text-main);
        }

        .post-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 50px;
            color: var(--text-muted);
            font-size: 1rem;
        }

        .post-meta svg {width:12px;height:12px;margin-left:8px;}

        .post-content {
            line-height: 1.9;
            font-size: 1.1rem;
            margin-bottom: 80px;
            color: var(--text-main);
        }

        .post-content img {
            margin: 20px auto;
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .post-content h2 {
            font-size: 24px;
            font-weight: 600;
            letter-spacing: -1px;
            margin: 24px 0;
            color: #96caff;
        }

        .post-content a {text-decoration: none;color:var(--primary);}
        .tags {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .post-content p {line-height:28px;padding-bottom:12px;}

        .post-content ul {padding-left:0px;}
        .post-content li {padding-left:12px;}

        .x_table {border-top:var(--border) solid 2px;}
        .x_table th {font-weight: 600;text-align: center;padding:6px 0;border-bottom:var(--border) solid 1px;}
        .x_table td {padding:6px 12px;border-bottom:var(--border) solid 1px;}

        .tag {
            background: var(--user-section-bg);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 0.95rem;
            color: var(--text-main);
            border: 1px solid var(--border);
            font-weight: 500;
        }

        .action-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 8px;
            margin-top: 60px;
            border-top: 1px solid var(--border);
            padding-top: 40px;
        }

        .btn-post {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            border-radius: 14px;
            border: 1px solid var(--border);
            background: var(--card-bg);
            text-decoration: none;
            color: var(--text-main);
            font-weight: 600;
            transition: all 0.2s;
            cursor: pointer;
        }

        .btn-post:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--user-section-bg);
        }

        .btn-primary {
            background: var(--primary) !important;
            color: #fff !important;
            border-color: var(--primary) !important;
        }

        .btn-primary:hover {
            opacity: 0.9;
            color: #fff !important;
        }

        .btn-danger {
            color: #ef4444 !important;
            border-color: rgba(239, 68, 68, 0.3) !important;
            background: rgba(239, 68, 68, 0.05) !important;
        }

        .btn-danger:hover {
            background: #ef4444 !important;
            color: #fff !important;
            border-color: #ef4444 !important;
        }

        .btn-write {
            display: block;
            width:fit-content;
            margin:20px 0 20px auto;
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            text-decoration: none;
            padding: 6px 12px;
            border-radius: 6px;
        }

        /* YouTube Responsive */
        .youtube-container {
            margin: 30px auto;
            position: relative;
            border-radius: 20px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .youtube-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .youtube-standard {
            width: 100%;
            aspect-ratio: 16 / 9;
        }

        .youtube-shorts {
            width: 60%;
            max-width: 450px;
            aspect-ratio: 9 / 16;
        }

        @media (max-width: 768px) {
            .youtube-shorts {
                width: 85%;
            }
        }

        /* 9:16 aspect ratio roughly */

        /* Centered Boards & Bottom Bar */
        .board-centered {
            max-width: var(--site-width) !important;
            margin: 0 auto !important;
        }

        /* Comment Cleanup */
        .comments-section {
            margin-top: 80px;
            padding-top: 60px;
            border-top: 1px solid var(--border);
        }

        .comment-item {
            padding: 25px 0;
            border-bottom: 1px solid var(--border);
        }

        .reply-item {
            margin-left: 40px;
            border-left: 3px solid var(--border);
            padding: 15px 20px;
            background: var(--user-section-bg);
            border-radius: 0 16px 16px 0;
            margin-top: 10px;
            border-top: 1px solid var(--border);
            border-right: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .comment-form-container {
            margin-top: 40px;
            background: var(--card-bg);
            padding: 30px;
            border-radius: 24px;
            border: 1px solid var(--border);
        }

        .comment-form-container textarea,
        .comment-form-container input {
            background: var(--bg) !important;
            color: var(--text-main) !important;
            border: 1px solid var(--border) !important;
            transition: border-color 0.2s;
        }

        .comment-form-container textarea:focus,
        .comment-form-container input:focus {
            border-color: var(--primary) !important;
            outline: none;
        }

        .comment-form-container textarea::placeholder,
        .comment-form-container input::placeholder {
            color: var(--text-muted) !important;
            opacity: 0.7;
        }

        .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .reply-form-active {
            margin: 15px 0 15px 40px;
            padding: 20px;
            background: var(--user-section-bg);
            border-radius: 16px;
            border: 1px solid var(--border);
        }

        .reply-form-active textarea,
        .reply-form-active input {
            background: var(--bg) !important;
            color: var(--text-main) !important;
            border: 1px solid var(--border) !important;
        }

        .reply-form-active textarea::placeholder,
        .reply-form-active input::placeholder {
            color: var(--text-muted) !important;
            opacity: 0.7;
        }

        footer {
            background: var(--footer-bg);
            border-top: 1px solid var(--border);
            padding: 30px 0;
            margin-top: auto;
        }

        .footer-box {
            max-width: var(--site-width);
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }

        .footer-info h4 {
            margin-top: 0;
            color: #aed6ff;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .footer-info p {
            font-size: 1rem;
            color: #fff;
            margin: 8px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-info i {color:#aed6ff;font-size:20px;}

        .footer-links {
            display: flex;
            flex-direction: column;

        }
        
        .footer-links a {text-decoration: none;padding-bottom:6px; color:#fff;}
        .footer-links h5 {font-size:18px;color: #aed6ff;padding-bottom:12px;margin:0px;}
        .copyright {color:#fff;margin-top: 0px; font-size: 0.8rem; opacity: 0.6;}

        @media (max-width: 1024px) {
            .guestbook-masonry {
                column-count: 3;
            }
        }

        @media (max-width: 768px) {
            .footer-box {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .guestbook-masonry {
                column-count: 2;
            }

            .webzine-item {
                flex-direction: column;
            }

            .webzine-thumb {
                width: 100%;
                height: 160px;
            }

            .card-thumb {
                height: 140px !important;
                overflow: hidden;
                background: #f1f5f9;
            }            

            .post-title {
                font-size: 2rem;
            }

            .module-title-box h2 {font-size:22px !important;margin-bottom:-20px !important;}
            .phone-icon-wrapper {display: none !important;}

           footer {
                background: var(--footer-bg);
                border-top: 1px solid var(--border);
                padding: 30px 0;
                text-align: center;
                margin-top: auto;
            }

            .footer-box {
                text-align: center !important;
                max-width: 100%;
                margin: 0;
                padding: 0 20px;
            }
            
            .footer-info {text-align: center !important;}

            .footer-info h4 {
                margin-top: 0;
                color: #aed6ff;
                font-size: 1.2rem;
                margin-bottom: 12px;
            }

            .footer-info p {
                font-size: 0.9rem;
                color: #fff;
                margin: 4px auto !important;
            }

            .footer-info i {color:#aed6ff;}

            .footer-links {
                display: none;

            }            
        }

        /* Portfolio Masonry Grid */
        .portfolio-masonry {
            column-count: 3;
            column-gap: 20px;
            width: 100%;
        }

        .portfolio-item {
            display: block;
            position: relative;
            margin-bottom: 20px;
            break-inside: avoid;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #f1f5f9;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
        }

        .portfolio-thumb {
            width: 100%;
            display: block;
        }

        .portfolio-thumb img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover .portfolio-thumb img {
            transform: scale(1.05);
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.4));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            box-sizing: border-box;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: #fff;
            z-index: 2;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0 0 8px 0;
            color: #ffffff;
            line-height: 1.4;
            transform: translateY(10px);
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-title {
            transform: translateY(0);
        }

        .portfolio-meta {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            transform: translateY(10px);
            transition: transform 0.3s ease 0.05s;
        }

        .portfolio-item:hover .portfolio-meta {
            transform: translateY(0);
        }

        /* Responsiveness for Portfolio Masonry */
        @media (max-width: 1024px) {
            .portfolio-masonry {
                column-count: 3;
            }
        }

        @media (max-width: 768px) {
            .portfolio-masonry {
                column-count: 2;
            }
            .top-bar {display: none;}
        }

        @media (max-width: 480px) {
            .portfolio-masonry {
                column-count: 1;
            }
            .top-bar {display: none;}
        }
    

        .messenger-floating-btn {
            position: fixed;
            right: 30px;
            bottom: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary, #6366f1), #4f46e5);
            color: #fff;
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99999;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .messenger-floating-btn:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
        }
        .messenger-floating-btn i {font-size:32px;}
        .messenger-badge {
            position: absolute;
            top: -3px;
            right: -3px;
            background: #ef4444;
            color: #fff;
            font-size: 0.7rem;
            font-weight: bold;
            padding: 3px 7px;
            border-radius: 10px;
            border: 2px solid #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            animation: pulse-badge 2s infinite;
        }
        @keyframes pulse-badge {
            0% { transform: scale(1); }
            50% { transform: scale(1.15); }
            100% { transform: scale(1); }
        }

        /* Chat Popup Window */
        .messenger-window {
            position: fixed;
            right: 30px;
            bottom: 105px;
            width: 370px;
            height: 520px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.18);
            display: none;
            flex-direction: column;
            z-index: 99999;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            transition: all 0.3s ease;
        }
        .messenger-header {
            padding: 16px 20px;
            background: linear-gradient(135deg, var(--primary, #6366f1), #4f46e5);
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .messenger-header-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
        }
        .messenger-header-title i {font-size:20px;}
        .messenger-close {
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            opacity: 0.8;
            transition: opacity 0.2s;
        }
        .messenger-close i {font-size:20px;}
        .messenger-close:hover {
            opacity: 1;
        }

        /* Away banner inside chat */
        .away-banner {
            background: #fef3c7;
            border-bottom: 1px solid #fde68a;
            color: #b45309;
            padding: 10px 15px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .messenger-body {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
            background: #f3f4f6; /* KakaoTalk feeling gray bg */
        }

        /* Messages */
        .chat-msg-row {
            display: flex;
            gap: 10px;
            max-width: 82%;
        }
        .chat-msg-row.received {
            align-self: flex-start;
        }
        .chat-msg-row.sent {
            align-self: flex-end;
            flex-direction: row-reverse;
        }
        .chat-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #cbd5e1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.8rem;
            color: #475569;
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .chat-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .chat-msg-content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .chat-msg-username {
            font-size: 0.72rem;
            color: #64748b;
            font-weight: 600;
        }
        .chat-msg-bubble {
            padding: 9px 13px;
            border-radius: 12px;
            font-size: 0.85rem;
            line-height: 1.4;
            word-break: break-all;
            white-space: pre-wrap;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }
        .chat-msg-row.received .chat-msg-bubble {
            background: var(--user-section-bg);
            color: var(--text-main);
            border-top-left-radius: 2px;
            border: 1px solid var(--border);
        }
        .chat-msg-row.sent .chat-msg-bubble {
            background: var(--primary, #6366f1);
            color: #fff;
            border-top-right-radius: 2px;
        }
        .chat-msg-meta {
            display: flex;
            align-items: flex-end;
            gap: 5px;
            font-size: 0.65rem;
            color: #64748b;
        }
        .chat-msg-row.sent .chat-msg-meta {
            flex-direction: row-reverse;
        }
        .chat-msg-unread {
            color: #f59e0b;
            font-weight: bold;
        }

        /* Input Area */
        .messenger-input-area {
            padding: 12px 15px;
            background: var(--card-bg);
            border-top: 1px solid var(--border);
            display: flex;
            gap: 10px;
            align-items: flex-end;
        }
        .messenger-textarea {
            flex: 1;
            height: 54px;
            resize: none;
            background: var(--bg);
            color: var(--text-main);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 0.85rem;
            outline: none;
            line-height: 1.4;
            box-sizing: border-box;
            font-family: inherit;
        }
        .messenger-textarea:focus {
            border-color: var(--primary, #6366f1);
        }
        .btn-messenger-send {
            background: linear-gradient(135deg, var(--primary, #6366f1), #4f46e5);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 0 14px;
            height: 54px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.2s;
        }
        .btn-messenger-send:hover {
            opacity: 0.9;
        }
        .btn-messenger-send i {font-size:22px;}
        @media (max-width: 768px) {
            .messenger-floating-btn {
                position: fixed;
                right: 20px;
                bottom: 20px;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--primary, #6366f1), #4f46e5);
                color: #fff;
                box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                z-index: 99999;
                transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }
            .messenger-floating-btn:hover {
                transform: scale(1.1) rotate(5deg);
                box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
            }
            .messenger-floating-btn i {font-size:24px !important;}
            .messenger-badge {
                position: absolute;
                top: -6px !important;
                right: -3px;
                background: #ef4444;
                color: #fff;
                font-size: 0.6rem;
                font-weight: bold;
                padding: 2px 7px;
                border-radius: 10px;
                border: 2px solid #fff;
                box-shadow: 0 2px 5px rgba(0,0,0,0.2);
                animation: pulse-badge 2s infinite;
            }
        }
    

        .main-module-section {
            width: 100%;
            box-sizing: border-box;
            position: relative;
        }
        .main-module-inner-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }
        .module-title-box {
            text-align: center;
            margin-bottom: 30px !important;
        }
        .module-title-box h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
            display: inline-block;
            position: relative;
            color: var(--text-main);
        }
        .module-title-box h2 span {
            display: block;
            width: 45px;
            height: 3px;
            background: var(--primary);
            margin: 12px auto 0 auto;
            border-radius: 2px;
        }

        /* Profile Module styling */
        .profile-module-card {
            background: var(--card-bg);
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 25px rgba(0,0,0,0.03);
            margin: 0 auto;
            max-width: 800px;
            box-sizing: border-box;
        }
        .profile-module-body {
            width: 100%;
        }
        .profile-text-content {
            font-size: 1.02rem;
            line-height: 1.6;
            color: var(--text-muted);
            max-height: 190px; /* 항목타이틀 포함 약 7줄 */
            overflow: hidden;
            position: relative;
            margin-bottom: 25px;
            text-align: center;
        }
        .profile-text-content::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 45px;
            background: linear-gradient(to bottom, transparent, var(--card-bg));
            pointer-events: none;
        }
        @media (max-width: 768px) {
            .profile-text-content::after {
                background: linear-gradient(to bottom, transparent, var(--bg));
            }
        }
        .profile-text-content .profile-section {
            margin-bottom: 20px;
            text-align: center;
        }
        .profile-text-content .profile-section h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-top: 0;
            margin-bottom: 12px;
        }
        .profile-text-content .profile-section ul {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            display: inline-flex;
            flex-direction: column;
            gap: 8px;
            text-align: center;
        }
        .profile-text-content .profile-section li {
            font-size: 0.95rem;
            line-height: 1.5;
            color: var(--text-main);
        }
        .profile-image-slide {
            flex: 0 0 calc((100% - (3 - 1) * 20px) / 3);
            min-width: 0;
            aspect-ratio: 1.2;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border);
            transition: transform 0.3s ease;
        }
        .profile-image-slide:hover {
            transform: scale(1.02);
        }
        .profile-image-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .profile-btn-wrapper {
            text-align: center;
            margin-bottom: 10px;
        }
        .profile-btn-wrapper .btn-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: #fff;
            padding: 10px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.88rem;
            transition: all 0.2s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .profile-btn-wrapper .btn-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(99,102,241,0.2);
        }
        .profile-images-section {
            margin-top: 30px;
            border-top: 1px dashed var(--border);
            padding-top: 30px;
            width: 100%;
        }
        .profile-images-viewport {
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        .profile-images-track {
            display: flex;
            gap: 20px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            box-sizing: border-box;
        }
        .slider-arrow {
            background: rgba(0, 0, 0, 0.4);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            cursor: pointer;
            color: #fff;
            z-index: 10;
            backdrop-filter: blur(4px);
            transition: all 0.2s;
        }
        .slider-arrow i {font-size:26px;}
        .slider-arrow:hover {
            background: rgba(0, 0, 0, 0.6);
            transform: translateY(-50%) scale(1.05);
        }
        .slider-arrow.prev {
            left: 0;
        }
        .slider-arrow.next {
            right: 0;
        }

        /* Phone Module styling */
        .phone-module-card {
            text-align: center;
            background: var(--card-bg);
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 25px rgba(0,0,0,0.03);
            max-width: 800px;
            margin: 0 auto;
            box-sizing: border-box;
        }
        .phone-icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(99, 102, 241, 0.1);
            color: var(--primary);
            margin-bottom: 20px;
        }
        .phone-icon-wrapper i {font-size:32px;}
        .phone-module-card h3 {
            font-size: 1.35rem;
            margin-top: 0;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--text-main);
        }
        .phone-number-text {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 30px 0;
            letter-spacing: 0.5px;
        }
        .phone-btn-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }
        .phone-btn-grid i {font-size:22px;color: var(--primary)}
        .phone-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--border);
            padding: 15px 10px;
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-main);
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.2s;
            cursor: pointer;
            box-sizing: border-box;
        }
        .phone-btn:hover {
            border-color: var(--primary) !important;
            background: rgba(99, 102, 241, 0.05) !important;
            transform: translateY(-2px);
        }

        /* SNS Module styling */
        .sns-module-card {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            box-sizing: border-box;
        }
        .sns-links-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        .sns-icon-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: var(--card-bg);
            border: 1px solid var(--border);
            color: var(--text-main);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px rgba(0,0,0,0.03);
            text-decoration: none;
            box-sizing: border-box;
        }
        .sns-icon-btn:hover {
            background: var(--primary) !important;
            color: #fff !important;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(99,102,241,0.3) !important;
        }
        .sns-icon-btn:hover i {
            color: #fff !important;
        }

        /* Recent Posts Guestbook styling */
        .recent-guestbook-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            width: 100%;
            box-sizing: border-box;
        }
        .guestbook-line-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            padding: 12px 18px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: var(--card-bg);
            transition: all 0.2s;
            box-sizing: border-box;
        }
        .guestbook-line-item:hover {
            border-color: var(--primary) !important;
            transform: translateX(4px);
        }
        .guestbook-content-text {
            font-size: 0.95rem;
            color: var(--text-main);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex-grow: 1;
            text-align: left;
            margin-right: 15px;
        }
        .guestbook-author-tag {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--primary);
            flex-shrink: 0;
            background: rgba(99, 102, 241, 0.08);
            padding: 4px 10px;
            border-radius: 20px;
        }

        /* Recent Posts Slide Module styling */
        .recent-posts-viewport {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding: 10px 0;
            box-sizing: border-box;
        }
        .recent-posts-track {
            display: flex;
            gap: 20px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            box-sizing: border-box;
        }
        .recent-post-card {
            min-width: 260px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            transition: all 0.2s;
            box-sizing: border-box;
        }
        .recent-post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.08) !important;
            border-color: var(--primary) !important;
        }
        .recent-post-card .card-thumb {
            height: 140px;
            overflow: hidden;
            background: rgba(255,255,255,0.01);
        }
        .recent-post-card .card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .recent-card-body {
            padding: 18px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: left;
        }
        .recent-badge {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary);
            background: rgba(99, 102, 241, 0.1);
            padding: 3px 8px;
            border-radius: 4px;
            margin-bottom: 8px;
            display: inline-block;
        }
        .recent-card-title {
            font-size: 1.05rem;
            margin-top: 0;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-main);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .recent-card-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin: 0 0 10px 0;
            text-overflow: ellipsis;
            word-break: break-all;
        }
        .recent-card-date {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Responsive & Mobile Optimization (Minimize margins, NO boxes) */
        @media (max-width: 768px) {
            .main-module-inner-container {
                padding: 0 12px !important;
            }
            .recent-post-card {
                flex: 0 0 82% !important;
            }
            
            /* Profile Module Mobile Optimization */
            .profile-module-card {
                padding: 20px 8px !important;
                border: none !important;
                background: transparent !important;
                box-shadow: none !important;
                border-radius: 0 !important;
            }
            .profile-image-slide {
                flex: 0 0 calc((100% - (2 - 1) * 15px) / 2);
            }
            
            /* Phone Module Mobile Optimization */
            .phone-module-card {
                padding: 20px 8px !important;
                border: none !important;
                background: transparent !important;
                box-shadow: none !important;
                border-radius: 0 !important;
            }
            
            /* SNS Module Mobile Optimization */
            .sns-module-card {
                padding: 20px 8px !important;
                border: none !important;
                background: transparent !important;
                box-shadow: none !important;
                border-radius: 0 !important;
            }
            
            /* Guestbook Line Item Mobile Optimization */
            .guestbook-line-item {
                border-left: none !important;
                border-right: none !important;
                border-radius: 0 !important;
                background: transparent !important;
                padding: 12px 6px !important;
                margin-bottom: 0 !important;
                border-bottom: 1px solid var(--border) !important;
            }
            
            /* Recent Posts Card Viewport Mobile Optimization */
            .recent-posts-viewport {
                padding: 10px 0 !important;
            }
        }
    

        /* LIST SKIN */
        .list-skin-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
        .list-skin-table th { border-top: 2px solid #6b8ebd; border-bottom: 1px solid var(--border); padding: 12px 10px; background: var(--bg-hover); color: var(--text-main); font-weight: 600; text-align: center; }
        .list-skin-table td { border-bottom: 1px solid var(--border); padding: 15px 10px; text-align: center; color: var(--text-muted); }
        .list-skin-table td.list-title { text-align: left; }
        .list-skin-table td.list-title a { color: var(--text-main); text-decoration: none; font-weight: 500; transition: color 0.2s; }
        .list-skin-table td.list-title a:hover { color: var(--primary); }

        /* GALLERY SKIN */
        .gallery-skin-grid { display: grid; grid-template-columns: repeat(var(--col-pc, 4), minmax(0, 1fr)); gap: 20px; margin-bottom: 20px; }
        @media (max-width: 768px) { .gallery-skin-grid { grid-template-columns: repeat(var(--col-mobile, 2), minmax(0, 1fr)); gap: 15px; } }
        .gallery-item { display: flex; flex-direction: column; background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; min-width: 0; }
        .gallery-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--primary); }
        .gallery-thumb { position: relative; width: 100%; aspect-ratio: 4/3; background: #f1f5f9; overflow: hidden; }
        .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .gallery-body { padding: 15px; }
        .gallery-body h3 { margin: 0 0 8px 0; font-size: 1.1rem; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .gallery-excerpt { margin: 0 0 12px 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
        .gallery-meta { font-size: 0.85rem; color: var(--text-muted); }

        /* FAQs SKIN */
        .faqs-skin-wrapper { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
        .faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
        .faq-item[open] { border-color: var(--primary); }
        .faq-title { display: flex; align-items: center; padding: 15px 20px; cursor: pointer; font-weight: 600; color: var(--text-main); list-style: none; user-select: none; }
        .faq-title::-webkit-details-marker { display: none; }
        .faq-q { color: var(--primary); font-size: 1.2rem; font-weight: bold; margin-right: 15px; }
        .faq-icon { margin-left: auto; transition: transform 0.3s; color: var(--text-muted); }
        .faq-item[open] .faq-icon { transform: rotate(180deg); color: var(--primary); }
        .faq-content { display: flex; padding: 0 20px 20px 20px; color: var(--text-muted); line-height: 1.6; border-top: 1px dashed transparent; }
        .faq-item[open] .faq-content { border-top-color: var(--border); padding-top: 20px; }
        .faq-a { color: #f59e0b; font-size: 1.2rem; font-weight: bold; margin-right: 15px; }
        .faq-text { flex: 1; }

        /* MASONRY GALLERY SKIN */
        .masonry-gallery-skin { column-count: 4; column-gap: 20px; margin-bottom: 20px; }
        @media (max-width: 1024px) { .masonry-gallery-skin { column-count: 3; } }
        @media (max-width: 768px) { .masonry-gallery-skin { column-count: 2; column-gap: 15px; } }
        @media (max-width: 480px) { .masonry-gallery-skin { column-count: 1; } }
        .masonry-gallery-item { break-inside: avoid; margin-bottom: 20px; display: block; position: relative; border-radius: 12px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
        .masonry-gallery-item img { width: 100%; display: block; object-fit: cover; transition: transform 0.4s ease; }
        .masonry-gallery-item:hover img { transform: scale(1.05); }
        .masonry-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); padding: 30px 20px 20px; color: #fff; transform: translateY(100%); transition: transform 0.3s ease; }
        .masonry-gallery-item:hover .masonry-overlay { transform: translateY(0); }
        .masonry-overlay h3 { margin: 0 0 5px 0; font-size: 1.1rem; font-weight: 600; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .masonry-date { font-size: 0.85rem; opacity: 0.8; }

        /* MASONRY GUESTBOOK SKIN */
        .masonry-guestbook-skin { column-count: 3; column-gap: 20px; margin-bottom: 20px; }
        @media (max-width: 768px) { .masonry-guestbook-skin { column-count: 2; column-gap: 15px; } }
        @media (max-width: 480px) { .masonry-guestbook-skin { column-count: 1; } }
        .masonry-guestbook-item { break-inside: avoid; margin-bottom: 20px; display: flex; flex-direction: column; background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 20px; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
        .masonry-guestbook-item:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.05); border-color: var(--primary); }
        .masonry-guestbook-content { font-size: 0.95rem; line-height: 1.6; color: var(--text-main); margin-bottom: 15px; word-break: break-word; }
        .masonry-guestbook-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed var(--border); padding-top: 12px; font-size: 0.85rem; color: var(--text-muted); }
        .masonry-guestbook-meta .author { display: flex; align-items: center; gap: 6px; font-weight: 500; color: var(--primary); }
                .slider-btn:hover {
                    background: var(--primary) !important;
                    color: #fff !important;
                    border-color: var(--primary) !important;
                }
                .slider-dot {
                    width: 8px;
                    height: 8px;
                    border-radius: 50%;
                    background: rgba(0,0,0,0.15);
                    cursor: pointer;
                    transition: all 0.2s;
                }
                .slider-dot.active {
                    background: var(--primary);
                    width: 20px;
                    border-radius: 4px;
                }
            

            .share-btn {
                transition: transform 0.2s, box-shadow 0.2s !important;
            }
            .share-btn:hover {
                transform: translateY(-3px) scale(1.05) !important;
                box-shadow: 0 6px 12px rgba(0,0,0,0.15) !important;
            }
        

    .slider-viewport {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: #000;
        margin-bottom: 30px;
    }
    
    .slider-viewport.contained {
        max-width: 1200px;
        margin: 0 auto 30px auto;
        border-radius: 16px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    }
    
    .slider-track {
        display: flex;
        width: 100%;
        height: 100%;
        position: relative;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .slider-slide {
        flex-shrink: 0;
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        box-sizing: border-box;
    }
    
    /* Background Styles */
    .slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    
    .slide-video-container {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 56.25vw; /* 16:9 Aspect Ratio */
        min-height: 100%;
        min-width: 177.77%; /* 16:9 Aspect Ratio */
        transform: translate(-50%, -50%);
        z-index: 1;
        pointer-events: none;
    }
    
    .slide-video-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    
    /* Content Layout */
    .slide-content-wrapper {
        position: relative;
        z-index: 3;
        width: 100%;
        height: 100%;
        padding: 40px 80px;
        box-sizing: border-box;
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .slide-content {
        max-width: 650px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    
    .slide-title {
        font-size: 3rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
    }
    
    .slide-desc {
        font-size: 1.2rem;
        margin: 0;
        opacity: 0.9;
        line-height: 1.6;
        white-space: pre-line;
    }
    
    .slide-btn {
        display: inline-block;
        padding: 14px 35px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        width: fit-content;
        transition: all 0.3s;
        box-shadow: 0 4px 6px rgba(0,0,0,0.15);
        margin-top: 10px;
    }
    .slide-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px rgba(0,0,0,0.3);
    }
    
    /* Controls */
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(0,0,0,0.3);
        color: #fff;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        backdrop-filter: blur(4px);
    }
    .slider-arrow:hover {
        background: var(--primary);
    }
    .slider-arrow.prev { left: 20px; }
    .slider-arrow.next { right: 20px; }
    
    .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        padding: 0;
    }
    
    .slider-dot.active {
        background: #fff;
        width: 28px;
        border-radius: 5px;
    }
    
    

/* Auto-extracted inline styles */
.xz-inline-1 { overflow:hidden; }
.xz-inline-2 { font-weight: 600; }
.xz-inline-3 { display:flex;gap:8px; }
.xz-inline-4 { flex-direction: column; align-items: flex-start; cursor: pointer; }
.xz-inline-5 { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.xz-inline-6 { width: 100%; }
.xz-inline-7 { display: none; }
.xz-inline-8 { display: none; }
.xz-inline-9 { padding: 15px; font-size: 0.95rem; line-height: 1.5; }
.xz-inline-10 { margin: 0 0 10px 0; font-size: 1.1rem; color: #1e293b; }
.xz-inline-11 { color: #475569; }
.xz-inline-12 { display: flex; border-top: 1px solid #e2e8f0; background: #f8fafc; }
.xz-inline-13 { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.xz-inline-14 { width: 100%; max-width: 100%; padding: 0; }
.xz-inline-15 { max-width:1200px; margin: 0 auto; padding: 0 20px; }
.xz-inline-16 { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }
.xz-inline-17 { max-width: 1000px; margin: 0 auto; padding: 0 20px 40px 20px; box-sizing: border-box; }
.xz-inline-18 { display: flex; justify-content: center; gap: 8/px; margin-bottom: 26px; flex-wrap: wrap; }
.xz-inline-19 { overflow-x: auto; }
.xz-inline-20 { width: 60px; }
.xz-inline-21 { width: 100px; }
.xz-inline-22 { width: 120px; }
.xz-inline-23 { width: 100px; }
.xz-inline-24 { width: 80px; }
.xz-inline-25 { width: 80px; }
.xz-inline-26 { padding: 50px 0; }
.xz-inline-27 { color: #3b82f6; width: 16px; margin-right: 4px; vertical-align: middle; }
.xz-inline-28 { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:48px; height:48px; }
.xz-inline-29 { color: #3b82f6; width: 16px; margin-right: 4px; vertical-align: middle; }
.xz-inline-30 { width: 100%; }
.xz-inline-31 { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:48px; height:48px; }
.xz-inline-32 { color: #60a5fa; width: 16px; margin-right: 4px; vertical-align: middle; }
.xz-inline-33 { width:14px; height:14px; }
.xz-inline-34 { color: #3b82f6; width: 14px; margin-right: 2px; }
.xz-inline-35 { position:relative; }
.xz-inline-36 { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:48px; height:48px; }
.xz-inline-37 { font-size: 1.3rem; margin-top:0; }
.xz-inline-38 { color: #3b82f6; width: 18px; margin-right: 4px; vertical-align: middle; }
.xz-inline-39 { -webkit-line-clamp: 2; }
.xz-inline-40 { width:12px; }
.xz-inline-41 { margin-bottom: 12px; }
.xz-inline-42 { width: 100%; height: 40px; border-radius: 20px; background: #f1f3f5; }
.xz-inline-43 { margin-top: 50px; margin-bottom: 50px; }
.xz-inline-44 { width:20px; vertical-align: middle; margin-right: 6px; }
.xz-inline-45 { display: flex; transition: transform 0.5s ease-in-out; width: 100%; }
.xz-inline-46 { flex: 0 0 50%; box-sizing: border-box; padding: 10px; aspect-ratio: 4/3; user-select: none; }
.xz-inline-47 { width: 20px; height: 20px; }
.xz-inline-48 { width: 20px; height: 20px; }
.xz-inline-49 { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.xz-inline-50 { width:18px; }
.xz-inline-51 { display: flex; flex-direction: column; gap: 10px; }
.xz-inline-52 { width:16px; }
.xz-inline-53 { display: flex; gap: 15px; justify-content: center; align-items: center; flex-wrap: wrap; }
.xz-inline-54 { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; background: #fee500; color: #191919; border: none; cursor: pointer; transition: transform 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.xz-inline-55 { font-size: 22px; }
.xz-inline-56 { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; background: #1877f2; color: #fff; border: none; cursor: pointer; transition: transform 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.xz-inline-57 { font-size: 22px; }
.xz-inline-58 { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; background: #000000; color: #fff; border: none; cursor: pointer; transition: transform 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.xz-inline-59 { font-size: 22px; }
.xz-inline-60 { font-size: 22px; }
.xz-inline-61 { width:16px; }
.xz-inline-62 { width:16px; }
.xz-inline-63 { width:16px; }
.xz-inline-64 { width:16px; }
.xz-inline-65 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.xz-inline-66 { margin:0; }
.xz-inline-67 { width:32px; height:32px; font-size:0.8rem; overflow:hidden; }
.xz-inline-68 { flex-grow:1; }
.xz-inline-69 { font-weight: 600; font-size: 1rem; }
.xz-inline-70 { display: flex; gap: 10px; }
.xz-inline-71 { padding: 8px 20px; }
.xz-inline-72 { margin-bottom:10px; font-weight:600; font-size:0.9rem; }
.xz-inline-73 { display: flex; gap: 10px; }
.xz-inline-74 { padding: 8px 20px; }
.xz-inline-75 { width:28px; height:28px; font-size:0.7rem; background: #94a3b8; overflow:hidden; }
.xz-inline-76 { flex-grow:1; }
.xz-inline-77 { font-weight: 600; font-size: 0.95rem; }
.xz-inline-78 { display: flex; gap: 10px; }
.xz-inline-79 { padding: 8px 20px; }
.xz-inline-80 { width:16px; }
.xz-inline-81 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.xz-inline-82 { width: 100%; justify-content: center; height: 50px; font-size: 1.1rem; }

    .banner-group-container {
        margin: 40px 0;
        width: 100%;
    }
    
    .banner-group-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--text-main);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .banner-group-title::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 20px;
        background: var(--primary);
        border-radius: 2px;
    }
    
    .banner-grid {
        display: grid;
        grid-template-columns: repeat(var(--pc-cols, 1), 1fr);
        gap: 24px;
    }
    
    .banner-card {
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border: 1px solid var(--border);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    
    .banner-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border-color: var(--primary);
    }
    
    .banner-card-img {
        width: 100%;
        height: 220px;
        overflow: hidden;
        position: relative;
        background: #f1f5f9;
    }
    
    .banner-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .banner-card:hover .banner-card-img img {
        transform: scale(1.05);
    }
    
    .banner-card-body {
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
        box-sizing: border-box;
    }
    
    .banner-card-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0 0 8px 0;
        line-height: 1.3;
    }
    
    .banner-card-desc {
        font-size: 0.95rem;
        opacity: 0.85;
        margin: 0 0 16px 0;
        line-height: 1.5;
        flex-grow: 1;
    }
    
    .banner-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(0,0,0,0.06);
        padding-top: 15px;
        margin-top: 10px;
    }
    
    /* Dark border helper if banner background is dark */
    .banner-card.is-dark-bg .banner-card-footer {
        border-top-color: rgba(255,255,255,0.1);
    }
    
    .banner-extra {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary);
    }
    
    .banner-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        background: var(--primary);
        color: #fff;
        transition: all 0.2s;
    }
    
    .banner-card:hover .banner-btn {
        background: var(--primary);
        filter: brightness(1.1);
    }
    
    @media (max-width: 768px) {
        .banner-grid {
            grid-template-columns: repeat(var(--mob-cols, 1), 1fr);
            gap: 16px;
        }
        .banner-card-img {
            height: 160px;
        }
        .banner-card-body {
            padding: 16px;
        }
        .banner-card-title {
            font-size: 1.1rem;
        }
        .banner-card-desc {
            font-size: 0.85rem;
            margin-bottom: 12px;
        }
        .banner-extra {
            font-size: 0.95rem;
        }
        .banner-btn {
            padding: 6px 12px;
            font-size: 0.75rem;
        }
    }


            @media (max-width: 768px) {
                .webzine-item { flex-direction: column !important; }
                .webzine-thumb { width: 100% !important; }
            }
        

            .recent-gallery-grid-<?php echo $moduleIndex; ?> {
                display: grid;
                grid-template-columns: repeat(<?php echo $displayPc; ?>, minmax(0, 1fr));
                gap: 20px;
            }
            @media (max-width: 768px) {
                .recent-gallery-grid-<?php echo $moduleIndex; ?> {
                    grid-template-columns: repeat(<?php echo $displayMobile; ?>, minmax(0, 1fr));
                    gap: 15px;
                }
            }
            .recent-gallery-item {
                display: flex; flex-direction: column; background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; min-width: 0;
            }
            .recent-gallery-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--primary); }
            .recent-gallery-thumb { position: relative; width: 100%; aspect-ratio: <?php echo $imageRatio === 'auto' ? '4/3' : $imageRatio; ?>; background: #f1f5f9; overflow: hidden; }
            .recent-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
        

            .recent-swiper-<?php echo $moduleIndex; ?> { padding: 10px <?php echo $showArrows ? '45px' : ($widthType === 'full' ? '15px' : '0'); ?>; }
            .recent-swiper-<?php echo $moduleIndex; ?> .swiper-button-next,
            .recent-swiper-<?php echo $moduleIndex; ?> .swiper-button-prev {
                color: var(--primary);
                background: rgba(255,255,255,0.8);
                width: 40px; height: 40px; border-radius: 50%;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }
            .recent-swiper-<?php echo $moduleIndex; ?> .swiper-button-next:after,
            .recent-swiper-<?php echo $moduleIndex; ?> .swiper-button-prev:after {
                font-size: 16px;
                font-weight: bold;
            }
            @media (max-width: 768px) {
                .recent-swiper-<?php echo $moduleIndex; ?> { padding: 10px <?php echo $widthType === 'full' ? '15px' : '0'; ?> !important; }
                .recent-swiper-<?php echo $moduleIndex; ?> .swiper-button-next,
                .recent-swiper-<?php echo $moduleIndex; ?> .swiper-button-prev {
                    display: none !important;
                }
            }
            .recent-post-card {
                display: flex; flex-direction: column; height: 100%; text-decoration: none;
                border-radius: 12px; overflow: hidden; background: var(--card-bg, #fff);
                box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.2s;
                width: 100%; box-sizing: border-box; min-width: 0; word-break: break-word; overflow-wrap: anywhere;
            }
            .recent-swiper-<?php echo $moduleIndex; ?> .swiper-slide {
                min-width: 0 !important;
                box-sizing: border-box;
                overflow: hidden;
            }
            .recent-post-card:hover {
                transform: translateY(-5px);
            }
        

/* Module extracted inline styles */
.xz-inline-500 { width:14px; height:14px; }
.xz-inline-501 { overflow-x: auto; }
.xz-inline-502 { color: #3b82f6; width: 16px; margin-right: 4px; vertical-align: middle; }
.xz-inline-503 { display: flex; flex-direction: column; gap: 20px; }
.xz-inline-504 { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:32px; height:32px; }
.xz-inline-505 { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.xz-inline-506 { margin-bottom: 8px; }
.xz-inline-507 { margin: 0 0 10px 0; font-size: 1.25rem; }
.xz-inline-508 { color: #3b82f6; width: 16px; margin-right: 4px; vertical-align: middle; }
.xz-inline-509 { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:48px; height:48px; }
.xz-inline-510 { padding: 15px; }
.xz-inline-511 { margin-bottom: 8px; }
.xz-inline-512 { color: #3b82f6; width: 14px; margin-right: 4px; vertical-align: middle; }
.xz-inline-513 { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:48px; height:48px; }
.xz-inline-514 { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.xz-inline-515 { flex: 1; }
.xz-inline-516 { color: #3b82f6; width: 16px; margin-right: 4px; vertical-align: middle; }

/* ???? Recent Posts Gallery Grid ?????????????????????????????????????????????? */
[class^="recent-gallery-grid-"] {
    display: grid;
    grid-template-columns: repeat(var(--gallery-cols-pc, 3), 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    [class^="recent-gallery-grid-"] {
        grid-template-columns: repeat(var(--gallery-cols-mob, 2), 1fr);
        gap: 12px;
    }
}

.recent-gallery-item {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.recent-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -5px rgba(0,0,0,0.12);
    border-color: var(--primary);
}
.recent-gallery-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--user-section-bg);
    position: relative;
}
.recent-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.recent-gallery-item:hover .recent-gallery-thumb img {
    transform: scale(1.04);
}

/* ???? Main Slide: Full-width image + centered text ???????????? */

/* ????̵尡 ?θ? padding ??? ???? ???Ʈ 100% ä?쵵?? */
.slider-viewport:not(.contained) {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* slide-bg picture ?? img ??? Ŀ?? */
.slide-bg {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.slide-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
}

/* slide-content-wrapper: ???Ʈ ?⺻ ?߾? ???? */
.slide-content-wrapper {
    justify-content: center !important;
    align-items: center !important;
    max-width: 100% !important;
    padding: 40px 80px;
}

/* slide-content: ???Ʈ center */
.slide-content {
    text-align: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
}

/* ???? */
@media (max-width: 768px) {
    .slide-content-wrapper {
        padding: 30px 20px;
    }
    .slide-content {
        max-width: 100%;
    }
}
