        .case-details-wrap {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
            color: #222;
            /* width: 1440px; */
        }

        /* HERO */
        .case-hero {
            position: relative;
            height: 60vh;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .case-hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.55) contrast(1.02);
            transform: scale(1.02);
        }

        .case-hero-overlay {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.25),
                    rgba(0, 0, 0, 0.65)),
                url("../../assets/lfof/hero_img.png");

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .case-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1440px;
            width: 100%;
            margin: 0 auto 28px;
            padding: 0 20px;
            color: #fff;
        }

        .case-badges {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
            align-items: center;
        }

        .case-badge {
            background: rgba(255, 255, 255, 0.08);
            padding: 6px 10px;
            border-radius: 18px;
            font-size: 13px;
        }

        .case-category {
            font-size: 13px;
            color: #cfe3ff;
            padding: 6px 10px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.03);
        }

        /* TITLE & META */
        .case-title {
            margin: 6px 0 10px;
            font-size: 30px;
            line-height: 1.05;
            font-weight: 700;
            max-width: 900px;
        }

        .case-meta {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }

        /* MAIN GRID */
        .case-main {
            max-width: 1100px;
            margin: 0 auto 40px;
            padding: 0 20px;
        }

        /* ARTICLE */
        .case-article {
            background: white;
            padding: 26px;
            border-radius: 8px;
        }

        .case-article .lead {
            font-size: 16px;
            color: #2F4D41;
            margin-bottom: 18px;
        }

        .case-article h2 {
            margin-top: 18px;
            font-size: 20px;
            color: #2F4D41;
        }

        .case-article p,
        .case-article ul {
            color: #2F4D41;
            font-size: 15px;
            line-height: 1.7;
        }

        .case-article ul {
            padding-left: 20px;
        }

        /* GALLERY */
        .case-gallery {
            display: flex;
            gap: 12px;
            margin: 12px 0 18px;
        }

        .case-gallery img {
            width: 32%;
            height: 130px;
            object-fit: cover;
            border-radius: 6px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        }

        /* KEY TAKEAWAYS */
        .key-takeaways {
            background: #f6fbf8;
            border-left: 4px solid #2F4D41;
            padding: 12px 16px;
            margin-top: 12px;
            border-radius: 4px;
        }

        /* COMMENTS */
        .comments-wrap {
            margin-top: 24px;
        }

        .comments-wrap h3 {
            font-size: 18px;
            margin-bottom: 14px;
        }

        .comments-list {
            list-style: none;
            padding: 0;
            margin: 0 0 18px 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .comment {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            background: #fff;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
        }

        .comment-avatar {
            width: 44px;
            height: 44px;
            background: #2F4D41;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            border-radius: 8px;
        }

        .comment-body {
            flex: 1;
        }

        .comment-meta {
            font-size: 13px;
            color: #2F4D41;
            margin-bottom: 6px;
        }

        .comment-text {
            color: #2F4D41;
            font-size: 14px;
        }

        /* COMMENT FORM */
        .comment-form {
            background: #fff;
            padding: 14px;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
        }

        .comment-form label {
            display: block;
            font-size: 13px;
            color: #233240;
            margin-top: 10px;
            margin-bottom: 6px;
        }

        .comment-form input[type="text"],
        .comment-form input[type="email"],
        .comment-form textarea {
            width: 100%;
            padding: 10px 12px;
            border-radius: 6px;
            border: 1px solid #e3e8ee;
            font-size: 14px;
            box-sizing: border-box;
        }

        .comment-actions {
            display: flex;
            gap: 10px;
            margin-top: 12px;
            align-items: center;
        }

        .btn-primary {
            background: #2f7a56;
            color: #fff;
            padding: 10px 16px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
        }

        .btn-ghost {
            background: transparent;
            color: #2f7a56;
            padding: 9px 14px;
            border-radius: 6px;
            border: 1px solid #dbe8df;
            cursor: pointer;
        }

        /* SIDEBAR */
        .case-sidebar {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .sidebar-card {
            background: #fff;
            padding: 16px;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
        }

        .sidebar-card h4 {
            margin: 0 0 10px 0;
            font-size: 16px;
            color: #1a2b36;
        }

        .recent-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .recent-list li a {
            display: block;
            font-weight: 600;
            color: #16323a;
            text-decoration: none;
        }

        .recent-list li small {
            display: block;
            color: #6b7781;
            font-size: 12px;
            margin-top: 4px;
        }

        /* CTA mini */
        .cta-mini {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .sidebar-logo {
            width: 64px;
            height: 64px;
            object-fit: contain;
            border-radius: 6px;
            background: #fff;
            padding: 6px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        }

        .cta-mini .cta-text h4 {
            margin: 0 0 6px 0;
            font-size: 15px;
        }

        .cta-mini .cta-text p {
            margin: 0 0 8px 0;
            color: #556870;
            font-size: 13px;
        }

        /* SHARE LINKS */
        .share-links {
            display: flex;
            gap: 8px;
        }

        .share-links a {
            text-decoration: none;
            color: #2f7a56;
            font-weight: 600;
            font-size: 14px;
        }

        /* BRAND CTA STRIP */
        .brand-cta-strip {
            background: linear-gradient(90deg, #f3fff7, #eaf8ef);
            padding: 22px 0;
            border-top: 1px solid rgba(47, 122, 86, 0.06);
            margin-top: 30px;
        }

        .brand-cta-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .brand-logo {
            width: 72px;
            height: 72px;
            object-fit: contain;
            background: #fff;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        }

        .brand-cta-text h3 {
            margin: 0 0 4px 0;
            font-size: 20px;
            color: #16323a;
        }

        .brand-cta-text p {
            margin: 0;
            color: #4d6560;
            font-size: 14px;
        }

        .btn-cta {
            margin-left: auto;
            background: #1f6b4e;
            color: #fff;
            padding: 12px 18px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
        }

        /* RESPONSIVE */
        @media (max-width:1000px) {
            .case-main {
                grid-template-columns: 1fr 320px;
                gap: 20px;
            }
        }

        @media (max-width:800px) {
            .case-main {
                grid-template-columns: 1fr;
                padding: 0 14px;
            }

            .case-gallery img {
                width: 100%;
                height: 160px;
            }

            .brand-cta-inner {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }

            .btn-cta {
                margin-left: 0;
            }
        }