        .detail-page{
            padding:32px 0 48px;
        }

        .detail-topbar{
            display:flex;
            justify-content:space-between;
            align-items:center;
            gap:12px;
            margin-bottom:18px;
            flex-wrap:wrap;
        }

        .detail-hero{
            position:relative;
            overflow:hidden;
            border-radius:24px;
            padding:34px 28px;
            background:
                linear-gradient(135deg, rgba(0,32,96,.95), rgba(0,58,155,.88)),
                url('/content/themes/default/images/placeholder.jpg') center/cover no-repeat;
            color:#fff;
            box-shadow:0 18px 45px rgba(0,32,96,.18);
            margin-bottom:24px;
        }

        .detail-hero::after{
            content:'';
            position:absolute;
            inset:0;
            background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
            pointer-events:none;
        }

        .detail-hero__inner{
            position:relative;
            z-index:2;
            max-width:850px;
        }

        .detail-badge{
            display:inline-flex;
            align-items:center;
            gap:8px;
            padding:8px 14px;
            border-radius:999px;
            background:rgba(255,255,255,.14);
            border:1px solid rgba(255,255,255,.18);
            font-size:13px;
            font-weight:700;
            margin-bottom:14px;
            backdrop-filter:blur(6px);
            -webkit-backdrop-filter:blur(6px);
        }

        .detail-title{
            font-size:38px;
            line-height:1.15;
            margin:0 0 12px;
            color:#fff;
        }

        .detail-subtitle{
            font-size:15px;
            line-height:1.8;
            color:rgba(255,255,255,.92);
            max-width:760px;
            margin:0;
        }

        .detail-layout{
            display:grid;
            grid-template-columns:minmax(0, 1fr) 300px;
            gap:24px;
            align-items:start;
        }

        .detail-main-card,
        .detail-side-card{
            background:rgba(255,255,255,.92);
            border:1px solid rgba(0,32,96,.08);
            border-radius:22px;
            box-shadow:0 12px 34px rgba(0,0,0,.07);
            backdrop-filter:blur(8px);
            -webkit-backdrop-filter:blur(8px);
        }

        .detail-main-card{
            padding:26px;
        }

        .detail-side-card{
            padding:20px;
            position:sticky;
            top:110px;
        }

        .detail-card-title{
            font-size:20px;
            color:var(--karnak-blue, #002060);
            margin:0 0 16px;
            font-weight:700;
        }

        .detail-meta-list{
            display:flex;
            flex-direction:column;
            gap:12px;
        }

        .detail-meta-item{
            display:flex;
            gap:12px;
            align-items:flex-start;
            padding:12px 0;
            border-bottom:1px solid rgba(0,32,96,.08);
        }

        .detail-meta-item:last-child{
            border-bottom:none;
            padding-bottom:0;
        }

        .detail-meta-item i{
            width:18px;
            margin-top:3px;
            color:var(--karnak-blue, #002060);
        }

        .detail-meta-item strong{
            display:block;
            font-size:14px;
            color:#1f2937;
            margin-bottom:3px;
        }

        .detail-meta-item span{
            font-size:14px;
            color:#6b7280;
            line-height:1.6;
        }

        .detail-actions{
            display:flex;
            flex-direction:column;
            gap:10px;
            margin-top:18px;
        }

        .detail-btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:8px;
            text-decoration:none;
            border:none;
            cursor:pointer;
            padding:12px 16px;
            border-radius:14px;
            font-weight:700;
            font-size:14px;
            transition:.25s ease;
        }

        .detail-btn--primary{
            color:#fff;
            background:linear-gradient(135deg, #002060, #003a9b);
            box-shadow:0 10px 24px rgba(0,32,96,.18);
        }

        .detail-btn--primary:hover{
            transform:translateY(-2px);
            box-shadow:0 16px 30px rgba(0,32,96,.24);
        }

        .detail-btn--light{
            color:#002060;
            background:#f4f7fc;
            border:1px solid rgba(0,32,96,.08);
        }

        .detail-btn--light:hover{
            background:#eaf0fb;
        }

        .detail-content{
            color:#374151;
            line-height:1.8;
            font-size:15px;
        }

        .detail-content h2,
        .detail-content h3,
        .detail-content h4{
            color:#002060;
            margin:28px 0 12px;
            line-height:1.3;
        }

        .detail-content h2{
            font-size:28px;
            border-bottom:1px solid rgba(0,32,96,.08);
            padding-bottom:10px;
        }

        .detail-content h3{
            font-size:22px;
        }

        .detail-content h4{
            font-size:18px;
        }

        .detail-content p{
            margin:0 0 16px;
        }

        .detail-content ul,
        .detail-content ol{
            padding-left:20px;
            margin:0 0 18px;
        }

        .detail-content li{
            margin-bottom:8px;
        }

        .detail-content table{
            width:100%;
            border-collapse:collapse;
            margin:18px 0;
            overflow:hidden;
            border-radius:14px;
            background:#fff;
            box-shadow:0 8px 24px rgba(0,0,0,.05);
            display:block;
            overflow-x:auto;
        }

        .detail-content table th,
        .detail-content table td{
            border:1px solid rgba(0,32,96,.08);
            padding:12px 14px;
            text-align:left;
            font-size:14px;
        }

        .detail-content table th{
            background:#f4f7fc;
            color:#002060;
        }

        .detail-content a{
            color:#003a9b;
            text-decoration:none;
            font-weight:600;
        }

        .detail-content a:hover{
            text-decoration:underline;
        }

        .detail-content .thumb{
            float:none !important;
            margin:18px 0 !important;
            width:100% !important;
        }

        .detail-content .thumbinner{
            width:100% !important;
            max-width:100% !important;
            border:none !important;
            background:transparent !important;
            padding:0 !important;
        }

        .detail-content .thumbcaption{
            color:#6b7280;
            font-size:13px;
            line-height:1.6;
            margin-top:8px;
            text-align:center;
        }

        .detail-loading{
            padding:70px 20px;
        }

        .detail-summary-box{
            display:flex;
            align-items:flex-start;
            gap:12px;
            background:#f8fbff;
            border:1px solid rgba(0,32,96,.08);
            border-radius:16px;
            padding:16px;
            margin-bottom:20px;
        }

        .detail-summary-box i{
            color:#002060;
            margin-top:3px;
        }

        .detail-summary-box p{
            margin:0;
            font-size:14px;
            color:#4b5563;
            line-height:1.7;
        }

        @media (max-width: 991px){
            .detail-layout{
                grid-template-columns:1fr;
            }

            .detail-side-card{
                position:static;
                top:auto;
            }

            .detail-title{
                font-size:30px;
            }
        }

        @media (max-width: 768px){
            .detail-page{
                padding:20px 0 34px;
            }

            .detail-hero{
                padding:24px 18px;
                border-radius:18px;
            }

            .detail-title{
                font-size:26px;
            }

            .detail-main-card{
                padding:18px;
            }
        }