/* Climate Action 动态效果 */
.climate-action-animated {
    position: relative;
    overflow: hidden;
}

.climate-action-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(72, 187, 120, 0.2), rgba(34, 197, 94, 0.3), rgba(72, 187, 120, 0.2), transparent);
    animation: shimmer 4s infinite;
    z-index: 1;
}

.climate-action-animated .item-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.climate-action-animated .item-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.climate-action-animated .mbr-iconfont {
    transition: transform 0.3s ease, color 0.3s ease;
}

.climate-action-animated .item-wrapper:hover .mbr-iconfont {
    transform: scale(1.2) rotate(5deg);
    color: #6dd598;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}