/* article-1.php */
body.page-article-1 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body.page-article-1 {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.7;
        }

        body.page-article-1 .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        body.page-article-1 .header {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        body.page-article-1 .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        body.page-article-1 .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
        }

        body.page-article-1 .nav {
            display: flex;
            gap: 32px;
        }

        body.page-article-1 .nav a {
            text-decoration: none;
            color: #475569;
            font-weight: 500;
            transition: color 0.3s;
        }

        body.page-article-1 .nav a:hover {
            color: #2a5298;
        }

        body.page-article-1 .article-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
            margin: 48px 0;
        }

        body.page-article-1 .article-content {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        body.page-article-1 .article-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.3;
            letter-spacing: -0.02em;
        }

        body.page-article-1 .article-meta {
            color: #64748b;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
        }

        body.page-article-1 .article-image {
            width: 100%;
            border-radius: 20px;
            margin: 30px 0;
        }

        body.page-article-1 .article-text h2 {
            font-size: 28px;
            margin: 32px 0 16px;
            font-weight: 600;
        }

        body.page-article-1 .article-text h3 {
            font-size: 22px;
            margin: 24px 0 12px;
            font-weight: 600;
        }

        body.page-article-1 .article-text p {
            margin-bottom: 20px;
            color: #334155;
        }

        body.page-article-1 .article-text ul, .article-text ol {
            margin: 20px 0 20px 30px;
        }

        body.page-article-1 .article-text li {
            margin-bottom: 10px;
        }

        body.page-article-1 .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }

        body.page-article-1 .sidebar-widget {
            background: white;
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        body.page-article-1 .sidebar-widget h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }

        body.page-article-1 .sidebar-links {
            list-style: none;
        }

        body.page-article-1 .sidebar-links li {
            margin-bottom: 12px;
        }

        body.page-article-1 .sidebar-links a {
            text-decoration: none;
            color: #475569;
            transition: color 0.3s;
            display: block;
            padding: 8px 0;
        }

        body.page-article-1 .sidebar-links a:hover {
            color: #2a5298;
        }

        body.page-article-1 .footer {
            background: #0f172a;
            color: #e2e8f0;
            padding: 60px 0 30px;
            margin-top: 60px;
        }

        body.page-article-1 .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        body.page-article-1 .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1e293b;
            color: #64748b;
        }

        @media (max-width: 768px) {
            body.page-article-1 .container {
                padding: 0 20px;
            }
            body.page-article-1 .article-layout {
                grid-template-columns: 1fr;
            }
            body.page-article-1 .article-title {
                font-size: 28px;
            }
            body.page-article-1 .article-content {
                padding: 24px;
            }
            body.page-article-1 .header-inner {
                flex-direction: column;
                gap: 16px;
            }
        }

/* article-10.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; }
        .nav { display: flex; gap: 32px; }
        .nav a { text-decoration: none; color: #475569; font-weight: 500; transition: color 0.3s; }
        .nav a:hover { color: #2a5298; }
        .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin: 48px 0; }
        .article-content { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .article-title { font-size: 42px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
        .article-meta { color: #64748b; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .article-image { width: 100%; border-radius: 20px; margin: 30px 0; }
        .article-text h2 { font-size: 28px; margin: 32px 0 16px; font-weight: 600; }
        .article-text h3 { font-size: 22px; margin: 24px 0 12px; font-weight: 600; }
        .article-text p { margin-bottom: 20px; color: #334155; }
        .article-text ul, .article-text ol { margin: 20px 0 20px 30px; }
        .article-text li { margin-bottom: 10px; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar-widget h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
        .sidebar-links { list-style: none; }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a { text-decoration: none; color: #475569; transition: color 0.3s; display: block; padding: 8px 0; }
        .sidebar-links a:hover { color: #2a5298; }
        .footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 30px; margin-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .article-layout { grid-template-columns: 1fr; }
            .article-title { font-size: 28px; }
            .article-content { padding: 24px; }
            .header-inner { flex-direction: column; gap: 16px; }
        }

/* article-11.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; }
        .nav { display: flex; gap: 32px; }
        .nav a { text-decoration: none; color: #475569; font-weight: 500; transition: color 0.3s; }
        .nav a:hover { color: #2a5298; }
        .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin: 48px 0; }
        .article-content { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .article-title { font-size: 42px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
        .article-meta { color: #64748b; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .article-image { width: 100%; border-radius: 20px; margin: 30px 0; }
        .article-text h2 { font-size: 28px; margin: 32px 0 16px; font-weight: 600; }
        .article-text h3 { font-size: 22px; margin: 24px 0 12px; font-weight: 600; }
        .article-text p { margin-bottom: 20px; color: #334155; }
        .article-text ul, .article-text ol { margin: 20px 0 20px 30px; }
        .article-text li { margin-bottom: 10px; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar-widget h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
        .sidebar-links { list-style: none; }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a { text-decoration: none; color: #475569; transition: color 0.3s; display: block; padding: 8px 0; }
        .sidebar-links a:hover { color: #2a5298; }
        .footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 30px; margin-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .article-layout { grid-template-columns: 1fr; }
            .article-title { font-size: 28px; }
            .article-content { padding: 24px; }
            .header-inner { flex-direction: column; gap: 16px; }
        }

/* article-12.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; }
        .nav { display: flex; gap: 32px; }
        .nav a { text-decoration: none; color: #475569; font-weight: 500; transition: color 0.3s; }
        .nav a:hover { color: #2a5298; }
        .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin: 48px 0; }
        .article-content { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .article-title { font-size: 42px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
        .article-meta { color: #64748b; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .article-image { width: 100%; border-radius: 20px; margin: 30px 0; }
        .article-text h2 { font-size: 28px; margin: 32px 0 16px; font-weight: 600; }
        .article-text h3 { font-size: 22px; margin: 24px 0 12px; font-weight: 600; }
        .article-text p { margin-bottom: 20px; color: #334155; }
        .article-text ul, .article-text ol { margin: 20px 0 20px 30px; }
        .article-text li { margin-bottom: 10px; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar-widget h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
        .sidebar-links { list-style: none; }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a { text-decoration: none; color: #475569; transition: color 0.3s; display: block; padding: 8px 0; }
        .sidebar-links a:hover { color: #2a5298; }
        .footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 30px; margin-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .article-layout { grid-template-columns: 1fr; }
            .article-title { font-size: 28px; }
            .article-content { padding: 24px; }
            .header-inner { flex-direction: column; gap: 16px; }
        }

/* article-2.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; }
        .nav { display: flex; gap: 32px; }
        .nav a { text-decoration: none; color: #475569; font-weight: 500; transition: color 0.3s; }
        .nav a:hover { color: #2a5298; }
        .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin: 48px 0; }
        .article-content { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .article-title { font-size: 42px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
        .article-meta { color: #64748b; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .article-image { width: 100%; border-radius: 20px; margin: 30px 0; }
        .article-text h2 { font-size: 28px; margin: 32px 0 16px; font-weight: 600; }
        .article-text h3 { font-size: 22px; margin: 24px 0 12px; font-weight: 600; }
        .article-text p { margin-bottom: 20px; color: #334155; }
        .article-text ul, .article-text ol { margin: 20px 0 20px 30px; }
        .article-text li { margin-bottom: 10px; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar-widget h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
        .sidebar-links { list-style: none; }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a { text-decoration: none; color: #475569; transition: color 0.3s; display: block; padding: 8px 0; }
        .sidebar-links a:hover { color: #2a5298; }
        .footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 30px; margin-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .article-layout { grid-template-columns: 1fr; }
            .article-title { font-size: 28px; }
            .article-content { padding: 24px; }
            .header-inner { flex-direction: column; gap: 16px; }
        }

/* article-3.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; }
        .nav { display: flex; gap: 32px; }
        .nav a { text-decoration: none; color: #475569; font-weight: 500; transition: color 0.3s; }
        .nav a:hover { color: #2a5298; }
        .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin: 48px 0; }
        .article-content { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .article-title { font-size: 42px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
        .article-meta { color: #64748b; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .article-image { width: 100%; border-radius: 20px; margin: 30px 0; }
        .article-text h2 { font-size: 28px; margin: 32px 0 16px; font-weight: 600; }
        .article-text h3 { font-size: 22px; margin: 24px 0 12px; font-weight: 600; }
        .article-text p { margin-bottom: 20px; color: #334155; }
        .article-text ul, .article-text ol { margin: 20px 0 20px 30px; }
        .article-text li { margin-bottom: 10px; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar-widget h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
        .sidebar-links { list-style: none; }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a { text-decoration: none; color: #475569; transition: color 0.3s; display: block; padding: 8px 0; }
        .sidebar-links a:hover { color: #2a5298; }
        .footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 30px; margin-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .article-layout { grid-template-columns: 1fr; }
            .article-title { font-size: 28px; }
            .article-content { padding: 24px; }
            .header-inner { flex-direction: column; gap: 16px; }
        }

/* article-4.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; }
        .nav { display: flex; gap: 32px; }
        .nav a { text-decoration: none; color: #475569; font-weight: 500; transition: color 0.3s; }
        .nav a:hover { color: #2a5298; }
        .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin: 48px 0; }
        .article-content { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .article-title { font-size: 42px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
        .article-meta { color: #64748b; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .article-image { width: 100%; border-radius: 20px; margin: 30px 0; }
        .article-text h2 { font-size: 28px; margin: 32px 0 16px; font-weight: 600; }
        .article-text h3 { font-size: 22px; margin: 24px 0 12px; font-weight: 600; }
        .article-text p { margin-bottom: 20px; color: #334155; }
        .article-text ul, .article-text ol { margin: 20px 0 20px 30px; }
        .article-text li { margin-bottom: 10px; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar-widget h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
        .sidebar-links { list-style: none; }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a { text-decoration: none; color: #475569; transition: color 0.3s; display: block; padding: 8px 0; }
        .sidebar-links a:hover { color: #2a5298; }
        .footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 30px; margin-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .article-layout { grid-template-columns: 1fr; }
            .article-title { font-size: 28px; }
            .article-content { padding: 24px; }
            .header-inner { flex-direction: column; gap: 16px; }
        }

/* article-5.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; }
        .nav { display: flex; gap: 32px; }
        .nav a { text-decoration: none; color: #475569; font-weight: 500; transition: color 0.3s; }
        .nav a:hover { color: #2a5298; }
        .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin: 48px 0; }
        .article-content { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .article-title { font-size: 42px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
        .article-meta { color: #64748b; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .article-image { width: 100%; border-radius: 20px; margin: 30px 0; }
        .article-text h2 { font-size: 28px; margin: 32px 0 16px; font-weight: 600; }
        .article-text h3 { font-size: 22px; margin: 24px 0 12px; font-weight: 600; }
        .article-text p { margin-bottom: 20px; color: #334155; }
        .article-text ul, .article-text ol { margin: 20px 0 20px 30px; }
        .article-text li { margin-bottom: 10px; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar-widget h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
        .sidebar-links { list-style: none; }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a { text-decoration: none; color: #475569; transition: color 0.3s; display: block; padding: 8px 0; }
        .sidebar-links a:hover { color: #2a5298; }
        .footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 30px; margin-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .article-layout { grid-template-columns: 1fr; }
            .article-title { font-size: 28px; }
            .article-content { padding: 24px; }
            .header-inner { flex-direction: column; gap: 16px; }
        }

/* article-6.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; }
        .nav { display: flex; gap: 32px; }
        .nav a { text-decoration: none; color: #475569; font-weight: 500; transition: color 0.3s; }
        .nav a:hover { color: #2a5298; }
        .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin: 48px 0; }
        .article-content { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .article-title { font-size: 42px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
        .article-meta { color: #64748b; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .article-image { width: 100%; border-radius: 20px; margin: 30px 0; }
        .article-text h2 { font-size: 28px; margin: 32px 0 16px; font-weight: 600; }
        .article-text h3 { font-size: 22px; margin: 24px 0 12px; font-weight: 600; }
        .article-text p { margin-bottom: 20px; color: #334155; }
        .article-text ul, .article-text ol { margin: 20px 0 20px 30px; }
        .article-text li { margin-bottom: 10px; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar-widget h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
        .sidebar-links { list-style: none; }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a { text-decoration: none; color: #475569; transition: color 0.3s; display: block; padding: 8px 0; }
        .sidebar-links a:hover { color: #2a5298; }
        .footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 30px; margin-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .article-layout { grid-template-columns: 1fr; }
            .article-title { font-size: 28px; }
            .article-content { padding: 24px; }
            .header-inner { flex-direction: column; gap: 16px; }
        }

/* article-7.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; }
        .nav { display: flex; gap: 32px; }
        .nav a { text-decoration: none; color: #475569; font-weight: 500; transition: color 0.3s; }
        .nav a:hover { color: #2a5298; }
        .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin: 48px 0; }
        .article-content { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .article-title { font-size: 42px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
        .article-meta { color: #64748b; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .article-image { width: 100%; border-radius: 20px; margin: 30px 0; }
        .article-text h2 { font-size: 28px; margin: 32px 0 16px; font-weight: 600; }
        .article-text h3 { font-size: 22px; margin: 24px 0 12px; font-weight: 600; }
        .article-text p { margin-bottom: 20px; color: #334155; }
        .article-text ul, .article-text ol { margin: 20px 0 20px 30px; }
        .article-text li { margin-bottom: 10px; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar-widget h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
        .sidebar-links { list-style: none; }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a { text-decoration: none; color: #475569; transition: color 0.3s; display: block; padding: 8px 0; }
        .sidebar-links a:hover { color: #2a5298; }
        .footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 30px; margin-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .article-layout { grid-template-columns: 1fr; }
            .article-title { font-size: 28px; }
            .article-content { padding: 24px; }
            .header-inner { flex-direction: column; gap: 16px; }
        }

/* article-8.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; }
        .nav { display: flex; gap: 32px; }
        .nav a { text-decoration: none; color: #475569; font-weight: 500; transition: color 0.3s; }
        .nav a:hover { color: #2a5298; }
        .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin: 48px 0; }
        .article-content { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .article-title { font-size: 42px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
        .article-meta { color: #64748b; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .article-image { width: 100%; border-radius: 20px; margin: 30px 0; }
        .article-text h2 { font-size: 28px; margin: 32px 0 16px; font-weight: 600; }
        .article-text h3 { font-size: 22px; margin: 24px 0 12px; font-weight: 600; }
        .article-text p { margin-bottom: 20px; color: #334155; }
        .article-text ul, .article-text ol { margin: 20px 0 20px 30px; }
        .article-text li { margin-bottom: 10px; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar-widget h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
        .sidebar-links { list-style: none; }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a { text-decoration: none; color: #475569; transition: color 0.3s; display: block; padding: 8px 0; }
        .sidebar-links a:hover { color: #2a5298; }
        .footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 30px; margin-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .article-layout { grid-template-columns: 1fr; }
            .article-title { font-size: 28px; }
            .article-content { padding: 24px; }
            .header-inner { flex-direction: column; gap: 16px; }
        }

/* article-9.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; }
        .nav { display: flex; gap: 32px; }
        .nav a { text-decoration: none; color: #475569; font-weight: 500; transition: color 0.3s; }
        .nav a:hover { color: #2a5298; }
        .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin: 48px 0; }
        .article-content { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .article-title { font-size: 42px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
        .article-meta { color: #64748b; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .article-image { width: 100%; border-radius: 20px; margin: 30px 0; }
        .article-text h2 { font-size: 28px; margin: 32px 0 16px; font-weight: 600; }
        .article-text h3 { font-size: 22px; margin: 24px 0 12px; font-weight: 600; }
        .article-text p { margin-bottom: 20px; color: #334155; }
        .article-text ul, .article-text ol { margin: 20px 0 20px 30px; }
        .article-text li { margin-bottom: 10px; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar-widget h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
        .sidebar-links { list-style: none; }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a { text-decoration: none; color: #475569; transition: color 0.3s; display: block; padding: 8px 0; }
        .sidebar-links a:hover { color: #2a5298; }
        .footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 30px; margin-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .article-layout { grid-template-columns: 1fr; }
            .article-title { font-size: 28px; }
            .article-content { padding: 24px; }
            .header-inner { flex-direction: column; gap: 16px; }
        }

/* index.php */
body.page-index * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body.page-index {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.6;
        }

        body.page-index .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Header */
        body.page-index .header {
            background: #ffffff;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.95);
        }

        body.page-index .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        body.page-index .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        body.page-index .nav {
            display: flex;
            gap: 32px;
        }

        body.page-index .nav a {
            text-decoration: none;
            color: #475569;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        body.page-index .nav a:hover {
            color: #2a5298;
        }

        /* Hero */
        body.page-index .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 32px;
            padding: 64px 48px;
            margin: 48px 0;
            color: white;
            text-align: center;
        }

        body.page-index .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        body.page-index .hero p {
            font-size: 20px;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Articles Grid */
        body.page-index .section-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
            letter-spacing: -0.5px;
            color: #0f172a;
        }

        body.page-index .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 32px;
            margin-bottom: 60px;
        }

        body.page-index .article-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: block;
        }

        body.page-index .article-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        body.page-index .card-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        body.page-index .card-content {
            padding: 24px;
        }

        body.page-index .card-title {
            font-size: 22px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        body.page-index .card-excerpt {
            color: #64748b;
            font-size: 15px;
            line-height: 1.6;
        }

        /* Footer */
        body.page-index .footer {
            background: #0f172a;
            color: #e2e8f0;
            padding: 60px 0 30px;
            margin-top: 60px;
        }

        body.page-index .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        body.page-index .footer h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
        }

        body.page-index .footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }

        body.page-index .footer a:hover {
            color: white;
        }

        body.page-index .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        body.page-index .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1e293b;
            color: #64748b;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            body.page-index .container {
                padding: 0 20px;
            }
            body.page-index .hero h1 {
                font-size: 32px;
            }
            body.page-index .hero {
                padding: 40px 24px;
            }
            body.page-index .header-inner {
                flex-direction: column;
                gap: 16px;
            }
            body.page-index .articles-grid {
                grid-template-columns: 1fr;
            }
        }
/* Общая адаптивная вёрстка */
:root { --ink: #172033; --muted: #667085; --accent: #e94560; --surface: #fff; --bg: #f6f8fc; }
body[class*="page-"] { min-width: 320px; background: var(--bg); color: var(--ink); overflow-x: hidden; }
body[class*="page-"] .container { width: min(1180px, calc(100% - 48px)); max-width: none; margin-inline: auto; padding: 0; }
body[class*="page-"] .header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(23,32,51,.08); backdrop-filter: blur(16px); }
body[class*="page-"] .header.scrolled { box-shadow: 0 8px 24px rgba(19,32,56,.08); }
body[class*="page-"] .header-inner { min-height: 72px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
body[class*="page-"] .logo { color: var(--ink); font-size: 1.35rem; font-weight: 800; letter-spacing:-.04em; text-decoration:none; }
body[class*="page-"] .nav { display:flex; flex-wrap:wrap; gap:24px; }
body[class*="page-"] .nav a { color:#475467; font-weight:600; text-decoration:none; }
body[class*="page-"] .nav a:hover, body[class*="page-"] .nav a:focus-visible { color:var(--accent); }
body.page-index .hero { padding:clamp(56px,10vw,112px) 0 clamp(48px,8vw,88px); }
body.page-index .hero h1 { max-width:820px; font-size:clamp(2.35rem,6vw,4.8rem); line-height:1.04; letter-spacing:-.055em; }
body.page-index .hero p { max-width:680px; color:#526075; font-size:clamp(1.05rem,2vw,1.25rem); }
body.page-index .articles-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
body.page-index .article-card { height:100%; overflow:hidden; border:1px solid rgba(23,32,51,.08); border-radius:18px; background:var(--surface); box-shadow:0 12px 32px rgba(19,32,56,.08); transition:transform .18s ease,box-shadow .18s ease; }
body.page-index .article-card:hover { transform:translateY(-5px); box-shadow:0 20px 40px rgba(19,32,56,.14); }
body.page-index .card-image { width:100%; height:auto; aspect-ratio:16/10; object-fit:cover; }
body.page-index .card-content { padding:20px; }
body[class*="page-article-"] .article-container, body[class*="page-article-"] .content { width:min(800px,calc(100% - 48px)); margin:48px auto 72px; }
body[class*="page-article-"] article { font-size:1.075rem; line-height:1.78; }
body[class*="page-article-"] article h1 { font-size:clamp(2rem,5vw,3.4rem); line-height:1.1; letter-spacing:-.045em; }
body[class*="page-article-"] article h2 { margin:2em 0 .65em; font-size:clamp(1.5rem,3vw,2rem); line-height:1.2; }
body[class*="page-article-"] article img { max-width:100%; height:auto; border-radius:18px; box-shadow:0 12px 32px rgba(19,32,56,.1); }
body[class*="page-"] .footer { margin-top:72px; padding:48px max(24px,calc((100% - 1180px)/2)) 24px; background:#121a2a; color:#c8d1df; }
body[class*="page-"] .footer-inner { max-width:1180px; margin:auto; display:flex; justify-content:space-between; gap:32px; }
body[class*="page-"] .footer-logo { display:inline-block; margin-bottom:10px; color:#fff; font-weight:800; text-decoration:none; }
body[class*="page-"] .footer p { max-width:380px; margin:0; }
body[class*="page-"] .footer-nav { display:flex; gap:20px; }
body[class*="page-"] .footer a { color:#c8d1df; text-decoration:none; }
body[class*="page-"] .footer a:hover { color:#fff; }
body[class*="page-"] .copyright { max-width:1180px; margin:32px auto 0; padding-top:20px; border-top:1px solid rgba(255,255,255,.12); color:#98a5bb; text-align:center; }
@media (max-width: 780px) { body.page-index .articles-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 560px) { body[class*="page-"] .container, body[class*="page-article-"] .article-container, body[class*="page-article-"] .content { width:calc(100% - 32px); } body[class*="page-"] .header-inner { min-height:64px; gap:12px; } body[class*="page-"] .nav { gap:14px; } body.page-index .articles-grid { grid-template-columns:1fr; } body[class*="page-"] .footer-inner { flex-direction:column; gap:20px; } }

/* Современный интерфейс УмныйДомПро */
:root { --sm-ink:#0e1b2b; --sm-muted:#65738a; --sm-blue:#2563eb; --sm-cyan:#06b6d4; --sm-line:#dfe7f1; --sm-bg:#f4f7fb; }
body[class*="page-"] { background:var(--sm-bg); color:var(--sm-ink); }
body[class*="page-"] .header { position:sticky; top:0; z-index:300; background:rgba(255,255,255,.87); border-bottom:1px solid rgba(14,27,43,.08); backdrop-filter:blur(18px); }
body[class*="page-"] .header.scrolled { box-shadow:0 10px 30px rgba(23,42,72,.1); }
body[class*="page-"] .header-inner { min-height:76px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
body[class*="page-"] .logo { display:inline-flex; align-items:center; gap:10px; color:var(--sm-ink); font-size:1.08rem; font-weight:800; letter-spacing:-.045em; text-decoration:none; }
body[class*="page-"] .logo-mark { display:grid; width:34px; height:34px; place-items:center; border-radius:11px; background:linear-gradient(135deg,var(--sm-blue),var(--sm-cyan)); box-shadow:0 8px 18px rgba(37,99,235,.25); color:#fff; font-size:1.45rem; line-height:1; }
body[class*="page-"] .logo-accent, body[class*="page-"] .footer-logo span { color:var(--sm-blue); }
body[class*="page-"] .nav { display:flex; align-items:center; gap:6px; }
body[class*="page-"] .nav a { padding:9px 12px; border-radius:9px; color:#46566e; font-size:.88rem; font-weight:650; text-decoration:none; transition:background .18s,color .18s,transform .18s; }
body[class*="page-"] .nav a:hover { background:#edf4ff; color:var(--sm-blue); }
body[class*="page-"] .nav .nav-cta { margin-left:5px; background:var(--sm-blue); box-shadow:0 8px 18px rgba(37,99,235,.2); color:#fff; }
body[class*="page-"] .nav .nav-cta:hover { background:#1d4ed8; color:#fff; transform:translateY(-1px); }
body.page-index .hero { position:relative; overflow:hidden; margin:32px 0 58px; padding:clamp(50px,8vw,96px); border-radius:28px; background:radial-gradient(circle at 88% 18%,rgba(125,211,252,.55),transparent 22%),radial-gradient(circle at 14% 88%,rgba(96,165,250,.32),transparent 32%),linear-gradient(125deg,#0c1b33 0%,#123d74 56%,#057a98 100%); box-shadow:0 26px 60px rgba(20,52,99,.22); color:#fff; }
body.page-index .hero::after { position:absolute; right:-70px; bottom:-100px; width:330px; height:330px; border:1px solid rgba(255,255,255,.2); border-radius:50%; box-shadow:0 0 0 42px rgba(255,255,255,.045),0 0 0 84px rgba(255,255,255,.03); content:""; }
body.page-index .hero h1 { position:relative; max-width:720px; margin:0 0 18px; color:#fff; font-size:clamp(2.45rem,6vw,5rem); line-height:1.02; letter-spacing:-.06em; }
body.page-index .hero p { position:relative; max-width:590px; margin:0; color:rgba(255,255,255,.78); font-size:clamp(1.05rem,2vw,1.23rem); line-height:1.65; }
body.page-index .section-title { margin-bottom:26px; color:var(--sm-ink); font-size:clamp(1.65rem,3vw,2.2rem); letter-spacing:-.04em; }
body.page-index .articles-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
body.page-index .article-card { display:flex; height:100%; flex-direction:column; overflow:hidden; border:1px solid var(--sm-line); border-radius:18px; background:#fff; box-shadow:0 9px 26px rgba(22,45,78,.06); color:inherit; text-decoration:none; transition:transform .2s,box-shadow .2s,border-color .2s; }
body.page-index .article-card:hover { border-color:rgba(37,99,235,.25); box-shadow:0 18px 38px rgba(22,45,78,.13); transform:translateY(-5px); }
body.page-index .article-card:first-child { grid-column:span 2; }
body.page-index .card-image { width:100%; height:auto; aspect-ratio:16/10; object-fit:cover; }
body.page-index .article-card:first-child .card-image { aspect-ratio:16/7; }
body.page-index .card-content { display:flex; flex:1; flex-direction:column; padding:20px; }
body.page-index .card-title { margin:0 0 10px; color:var(--sm-ink); font-size:1.1rem; line-height:1.3; letter-spacing:-.025em; }
body.page-index .article-card:first-child .card-title { font-size:clamp(1.35rem,2.5vw,1.8rem); }
body.page-index .card-excerpt { margin:0; color:var(--sm-muted); font-size:.9rem; line-height:1.55; }
body[class*="page-article-"] .article-layout { width:min(1120px,calc(100% - 48px)); margin:50px auto 76px; display:grid; grid-template-columns:minmax(0,760px) 270px; justify-content:space-between; gap:55px; }
body[class*="page-article-"] .article-content { min-width:0; color:#334155; font-size:1.06rem; line-height:1.8; }
body[class*="page-article-"] .article-title { margin:0 0 15px; color:var(--sm-ink); font-size:clamp(2.1rem,4.5vw,3.5rem); line-height:1.1; letter-spacing:-.052em; }
body[class*="page-article-"] .article-meta { margin-bottom:30px; color:var(--sm-muted); font-size:.9rem; }
body[class*="page-article-"] .article-text h2 { margin:2.1em 0 .7em; color:var(--sm-ink); font-size:clamp(1.5rem,2.8vw,2rem); line-height:1.2; letter-spacing:-.035em; }
body[class*="page-article-"] .article-text h3 { margin:1.7em 0 .6em; color:#1f3554; font-size:1.3rem; }
body[class*="page-article-"] .article-text p { margin:0 0 1.25em; }
body[class*="page-article-"] .article-text ul, body[class*="page-article-"] .article-text ol { display:grid; gap:.55em; margin:1.35em 0 1.6em; padding-left:1.35em; }
body[class*="page-article-"] .article-text li::marker { color:var(--sm-blue); }
body[class*="page-article-"] .article-text img, body[class*="page-article-"] .article-image { width:100%; max-width:100%; height:auto; margin:2em 0; border-radius:16px; box-shadow:0 16px 36px rgba(22,45,78,.12); }
body[class*="page-article-"] .tip, body[class*="page-article-"] .article-quote { margin:1.8em 0; padding:20px; border:1px solid #cfe0ff; border-left:4px solid var(--sm-blue); border-radius:12px; background:#f3f8ff; color:#27456e; }
body[class*="page-article-"] .sidebar { position:sticky; top:100px; }
body[class*="page-article-"] .sidebar-card, body[class*="page-article-"] .sidebar-widget { overflow:hidden; border:1px solid var(--sm-line); border-radius:16px; background:#fff; box-shadow:0 10px 25px rgba(22,45,78,.06); }
body[class*="page-article-"] .sidebar-card h3, body[class*="page-article-"] .sidebar-widget h3 { margin:0; padding:17px 19px; border-bottom:1px solid var(--sm-line); color:var(--sm-ink); font-size:1rem; }
body[class*="page-article-"] .sidebar-articles { display:grid; padding:8px 19px 14px; }
body[class*="page-article-"] .sidebar-articles a { padding:11px 0; border-bottom:1px solid #edf1f6; color:#40516a; font-size:.88rem; font-weight:650; line-height:1.4; text-decoration:none; }
body[class*="page-article-"] .sidebar-articles a:last-child { border-bottom:0; }
body[class*="page-article-"] .sidebar-articles a:hover { color:var(--sm-blue); }
body[class*="page-"] .footer { margin-top:72px; padding:52px max(24px,calc((100% - 1180px)/2)) 24px; background:#0d1b2c; color:#b9c6d8; }
body[class*="page-"] .footer-inner { max-width:1180px; margin:auto; display:flex; justify-content:space-between; gap:30px; }
body[class*="page-"] .footer-logo { display:inline-block; margin-bottom:11px; color:#fff; font-size:1.2rem; font-weight:800; text-decoration:none; }
body[class*="page-"] .footer p { max-width:400px; margin:0; }
body[class*="page-"] .footer-nav { display:flex; gap:20px; }
body[class*="page-"] .footer a { color:#c7d3e1; text-decoration:none; }
body[class*="page-"] .footer a:hover { color:#fff; }
body[class*="page-"] .copyright { max-width:1180px; margin:32px auto 0; padding-top:18px; border-top:1px solid rgba(255,255,255,.12); color:#8291a5; text-align:center; }
@media(max-width:900px){body.page-index .articles-grid{grid-template-columns:repeat(2,minmax(0,1fr));}body[class*="page-article-"] .article-layout{grid-template-columns:1fr;}body[class*="page-article-"] .sidebar{position:static;}}
@media(max-width:600px){body[class*="page-"] .container,body[class*="page-article-"] .article-layout{width:calc(100% - 32px);}body[class*="page-"] .header-inner{min-height:64px;}body[class*="page-"] .nav a:not(.nav-cta){display:none;}body[class*="page-"] .nav .nav-cta{margin-left:0;padding:8px 10px;font-size:.72rem;}body.page-index .hero{margin:16px 0 42px;padding:38px 25px;border-radius:20px;}body.page-index .hero h1{font-size:clamp(2.25rem,11vw,3.4rem);}body.page-index .articles-grid{grid-template-columns:1fr;}body.page-index .article-card:first-child{grid-column:auto;}body.page-index .article-card:first-child .card-image{aspect-ratio:16/10;}body[class*="page-"] .footer-inner{flex-direction:column;gap:18px;}}
