.tm-social-impact-wrapper {
    max-width: 80rem;
    margin: 0 auto;
}

.tm-impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tm-section-badge {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem !important;
}

.tm-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 !important;
}

.tm-impact-grid {
    display: grid;
    gap: 1.5rem;
}

.tm-impact-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tm-impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    transition: background 0.3s ease;
    z-index: 1;
}

.tm-impact-card:hover::before {
    background: rgba(0,0,0,0.3);
}

.tm-impact-card:hover {
    transform: translateY(-5px);
}

.tm-impact-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tm-impact-card:hover img {
    transform: scale(1.1);
}

.tm-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.tm-card-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tm-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
}

.tm-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.tm-card-badge {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tm-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .tm-social-impact-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .tm-section-title {
        font-size: 2rem;
    }
    
    .tm-impact-card {
        height: 300px !important;
    }
    
    .tm-card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tm-social-impact-wrapper {
        padding: 2rem 1rem;
    }
    
    .tm-section-badge {
        font-size: 0.75rem;
    }
    
    .tm-section-title {
        font-size: 1.75rem;
    }
    
    .tm-impact-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .tm-impact-card {
        height: 280px !important;
    }
    
    .tm-card-content {
        padding: 1.25rem;
    }
    
    .tm-card-badge {
        font-size: 0.7rem;
    }
    
    .tm-card-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tm-social-impact-wrapper {
        padding: 1.5rem 0.75rem;
    }
    
    .tm-section-title {
        font-size: 1.5rem;
    }
    
    .tm-impact-card {
        height: 250px !important;
    }
    
    .tm-card-content {
        padding: 1rem;
    }
    
    .tm-card-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .tm-card-icon svg {
        width: 1rem;
        height: 1rem;
    }
    
    .tm-card-badge {
        font-size: 0.65rem;
    }
    
    .tm-card-title {
        font-size: 0.9rem;
    }
}
