 .hero-card {
            background-color: #ffffff;
            border-radius: 24px;
            border: 1px solid #E2E8F0;
            padding: 32px;
            margin-bottom: 32px;
            position: relative;
            overflow: hidden;
        }

        .hero-deco {
            position: absolute;
            top: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            background-color: #FFF7ED;
            border-radius: 50%;
        }

        .hero-inner {
            display: flex;
            gap: 32px;
            align-items: flex-start;
            position: relative;
            z-index: 1;
        }

        .hero-logo {
            width: 160px;
            height: 160px;
            background-color: #ffffff;
            border-radius: 16px;
            border: 1px solid #F1F5F9;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
            padding: 12px;
        }

        .hero-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .hero-info {
            flex: 1;
        }

        .hero-name {
            font-size: 26px;
            font-weight: 900;
            color: #0F172A;
            margin-bottom: 4px;
        }

        .hero-badge {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: #F97316;
	    display: -webkit-box;
	     -webkit-line-clamp: 6;
	    -webkit-box-orient: vertical;
            overflow: hidden;
            text-transform: uppercase;
            margin-bottom: 24px;
        }
	.hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .hero-field {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .hero-field-icon {
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .hero-field-label {
            font-size: 13px;
            font-weight: 700;
            color: #94A3B8;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 3px;
        }

        .hero-field-name {
            font-size: 13px;
            font-weight: 600;
	    display: -webkit-box;
	    -webkit-line-clamp: 6;
	    -webkit-box-orient: vertical;
            overflow: hidden;
            color: #0F172A;
        }

        .hero-field-link {
            font-size: 13px;
            color: #2563EB;
            text-decoration: none;
        }

        .hero-field-link:hover {
            text-decoration: underline;
        }

        .hero-field-muted {
            font-size: 13px;
            color: #64748B;
        }
.grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .card {
            background-color: #ffffff;
            border-radius: 16px;
            border: 1px solid #E2E8F0;
            overflow: hidden;
            transition: box-shadow 0.2s;
        }

        .card:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .card-hot {
            border-left: 4px solid #F97316;
        }

        .card-img {
            aspect-ratio: 4 / 3;
            background-color: #F8FAFC;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .card-img img {
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.2s;
        }

        .card:hover .card-img img {
            transform: scale(1.08);
        }

        .tag {
            position: absolute;
            top: 8px;
            left: 8px;
            border-radius: 4px;
            padding: 2px 7px;
            font-size: 9px;
            font-weight: 700;
            background-color: rgba(255, 255, 255, 0.92);
        }

        .tag-news {
            color: #F97316;
            border: 1px solid #FED7AA;
        }

        .card-body {
            padding: 16px;
        }

        .card-title {
            font-size: 13px;
            font-weight: 700;
	    display: -webkit-box;
             -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            color: #0F172A;
            margin-bottom: 6px;
            transition: color 0.2s;
        }

        .card:hover .card-title {
            color: #F97316;
        }

        .card-desc {
            font-size: 13px;
            color: #64748B;
            line-height: 1.6;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .btn {
            width: 100%;
            padding: 9px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.2s, color 0.2s;
            text-align: center;
            border: 1px solid #E2E8F0;
            background-color: #f9ece2;
            color: #0F172A;
            font-family: 'Inter', sans-serif;
        }

        .btn:hover {
            background-color: #0F172A;
            color: #ffffff;
        }

        .btn-primary {
            background-color: #F97316;
            color: #ffffff;
            border-color: #F97316;
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
        }

        .btn-primary:hover {
            background-color: #EA580C;
            border-color: #EA580C;
        }

        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .hero-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .hero-logo {
                width: 130px;
                height: 130px;
            }

            .hero-name {
                font-size: 20px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-field {
                justify-content: center;
            }

            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .hero-card {
                padding: 20px;
            }
        }
