/* Causes Section - Alternating Layout */
.cause-row {
    margin-bottom: 60px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cause-row:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.cause-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cause-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cause-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.cause-image-wrapper:hover .cause-image {
    transform: scale(1.03);
}

/* Dark Green Tag */
.cause-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1B5E20;  /* Dark green - matches your theme */
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.cause-content-wrapper {
    padding: 20px 0 20px 40px;
}

.cause-row.flex-row-reverse .cause-content-wrapper {
    padding: 20px 40px 20px 0;
}

.cause-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cause-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.cause-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

/* Dark Green Stats */
.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #2E7D32;  /* Dark green - matches your theme */
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

/* Dark Green Button Override (if needed) */
.cause-content-wrapper .btn--secondary {
    background: #1B5E20 !important;
    border-color: #1B5E20 !important;
}

.cause-content-wrapper .btn--secondary:hover {
    background: #2E7D32 !important;
    border-color: #2E7D32 !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cause-content-wrapper {
        padding: 30px 0 0 0 !important;
    }
    
    .cause-row.flex-row-reverse .cause-content-wrapper {
        padding: 30px 0 0 0 !important;
    }
    
    .cause-image {
        height: 280px;
    }
    
    .cause-title {
        font-size: 26px;
    }
    
    .cause-row {
        margin-bottom: 40px;
        padding: 20px 0;
    }
    
    .cause-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .cause-image {
        height: 220px;
    }
    
    .cause-title {
        font-size: 22px;
    }
    
    .cause-content-wrapper {
        padding: 20px 0 0 0 !important;
    }
    
    .cause-row.flex-row-reverse .cause-content-wrapper {
        padding: 20px 0 0 0 !important;
    }
    
    .cause-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .cause-tag {
        top: 15px;
        left: 15px;
        padding: 6px 16px;
        font-size: 12px;
    }
}

/* Animation for stats on scroll */
.cause-stats .stat-number {
    transition: all 0.3s ease;
}

.cause-row:hover .stat-number {
    transform: scale(1.05);
}