.fpp-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .fpp-card {
            display: flex;
            align-items: center;
            gap: 30px;
            margin: 0px !important;
        }

        .fpp-card.reverse {
            flex-direction: row-reverse;
        }

        .fpp-image img {
            width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }

        .fpp-info {
            flex: 1;
        }

        .fpp-title {
            margin: 0 0 10px;
            font-size: 22px;
            font-weight: 600;
        }

        .fpp-excerpt {
            margin-bottom: 15px;
            color: #555;
        }

        .fpp-btn {
            background: #a63c2d;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            transition: all .3s;
        }

        .fpp-btn:hover {
            background: #842e22;
        }

        /* Lightbox styles */
        .fpp-lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            animation: fadeIn .3s;
        }

        .fpp-lightbox-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: #333;
        }

        .fpp-popup-thumb img {
            width: 100%;
            height: auto;
            margin-bottom: 20px;
            border-radius: 8px;
        }

        @keyframes fadeIn {
            from {opacity: 0;} 
            to {opacity: 1;}
        }

        @keyframes slideUp {
            from {transform: translateY(20px); opacity: 0;}
            to {transform: translateY(0); opacity: 1;}
        }

        @media (max-width: 768px) {
            .fpp-card, .fpp-card.reverse {
                flex-direction: column;
            }
            .fpp-image img {
                width: 100%;
                height: auto;
            }
			
			.fpp-lightbox {
				max-width: 100% !important;
				width: 90%;
			}
        }
		@media  (min-width: 768px) and (max-width: 1024px){.fpp-lightbox {
				max-width: 100% !important;
				width: 90%;
			}}