.artikel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .artikel-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background: white;
            transition: all 0.3s ease;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .artikel-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        .artikel-card-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            background: #f0f0f0;
        }
        .artikel-card-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .artikel-card-title {
            margin: 0 0 0.75rem 0;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--dark-color);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .artikel-card-date {
            color: #999;
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .artikel-card-date::before {
            content: "📅";
        }
        .artikel-card-excerpt {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .artikel-card-button {
            display: inline-block;
            padding: 0.7rem 1.5rem;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            text-align: center;
            transition: all 0.3s;
            align-self: flex-start;
        }
        .artikel-card-button:hover {
            background: #1e7e34;
            transform: translateX(5px);
        }

        .artikel-no-image {
            width: 100%;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-size: 4rem;
        }

        @media (max-width: 768px) {
            .artikel-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 1rem;
            }

            .artikel-card-image,
            .artikel-no-image {
                height: 180px;
            }

            .artikel-card-body {
                padding: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .artikel-grid {
                grid-template-columns: 1fr;
            }
        }
        .gallery-grid-home {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .gallery-card-home {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background: white;
            transition: all 0.3s ease;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .gallery-card-home:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .gallery-card-home-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            background: #f0f0f0;
        }

        .gallery-card-home-body {
            padding: 1.25rem;
            flex: 1;
        }

        .gallery-card-home-title {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark-color);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @media (max-width: 768px) {
            .gallery-grid-home {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 1rem;
            }

            .gallery-card-home-image {
                height: 180px;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid-home {
                grid-template-columns: 1fr 1fr;
            }
        }