        .cf-container {
            padding: 40px 15px;
            background: #fff;
            position: relative;
            margin-top: 20px;
        }

        .cf-container::before {
            content: '';
            width: 100%;
            height: 70%;
            position: absolute;
            top: 0;
            left: 0;
            background: var(--text-color);
            opacity: .05;
            border-radius: 20px;
        }

        .cf_description,
        .cf-card .card-title {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .cf_description {
            -webkit-line-clamp: 3;
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        #projectsContainer {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }

        .cf-card {
            background: #fff;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            min-width: 300px;
            width: 380px;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .cf-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(28, 111, 172, 0.15);
        }

        .cf-card .carousel-inner::before {
            content: '';
            height: 100%;
            width: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .cf-card .carousel-inner {
            top: 0;
        }

        .cf-card .carousel-inner img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }

        .cf-card .card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .cf-card .card-title {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 12px;
            min-height: 48px;
        }

        .cf-card .badge {
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 20px;
            background: var(--text-color);
            color: #fff;
        }

        .cf-card .progress {
            height: 8px;
            border-radius: 10px;
            background: #e9ecef;
            overflow: hidden;
        }

        .cf-card .progress-bar {
            border-radius: 10px;
            background: var(--background-color);
            transition: width 0.6s ease;
        }

        .cf-card .btn {
            border-radius: 8px;
            font-weight: 600;
            padding: 10px 20px;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .cf-card .btn-success {
            background: var(--background-color);
            border: none;
        }

        .cf-card .btn-success:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }

        .cf-card .text-primary {
            color: var(--text-color) !important;
        }

        .amount-display {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .amount-raised {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-color);
        }

        .amount-goal {
            font-size: 14px;
            color: #999;
        }

        .date-info {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #999;
            margin-bottom: 15px;
        }

        .date-info i {
            color: var(--text-color);
            margin-right: 4px;
        }

        .loading-spinner {
            text-align: center;
            margin: 30px 0;
            display: none;
        }

        #loadMoreBtn {
            display: block;
            margin: 0 auto;
            padding: 10px 30px;
        }

        .ra-post-footer {
            padding: 12px 20px;
            border-top: 1px solid #f0f0f0;
            font-size: 13px;
            color: #888;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fafafa;
        }

        .ra-share-buttons {
            display: flex;
            gap: 8px;
        }

        .ra-post-date {
            font-size: 12px;
            color: #999;
        }

        .ra-post-date i {
            color: var(--text-color);
            margin-right: 4px;
        }

        .ra-share-btn {
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            font-size: 16px;
            outline: none;
            transition: all 0.3s;
            padding: 5px;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ra-share-btn:focus {
            outline: none;
        }

        .ra-share-btn i:focus {
            outline: none;
        }

        .ra-share-btn:hover {
            background: #f0f0f0;
        }

        .ra-share-btn.facebook:hover {
            color: #3b5998;
            background: rgba(59, 89, 152, 0.1);
        }

        .ra-share-btn.twitter:hover {
            color: #1da1f2;
            background: rgba(29, 161, 242, 0.1);
        }

        .ra-share-btn.linkedin:hover {
            color: #0077b5;
            background: rgba(0, 119, 181, 0.1);
        }

        .ra-share-btn.whatsapp:hover {
            color: #25d366;
            background: rgba(37, 211, 102, 0.1);
        }

        @media (max-width: 768px) {
            #projectsContainer {
                flex-direction: column;
                align-items: center;
            }

            .cf-card {
                width: 100%;
                max-width: 400px;
            }
        }