/* Styles pour la vue blog améliorée */
.sponsors {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.sponsor {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    max-width: 250px;
}

    .sponsor:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        text-decoration: none;
        color: inherit;
    }

.sponsor-image {
    position: relative;
    overflow: hidden;
    height: 150px;
}

    .sponsor-image img {
        width: 100%;
        height: 100%;
        object-fit: scale-down;
        transition: transform 0.3s ease;
    }

.sponsor:hover .sponsor-image img {
    transform: scale(0.95);
}

.sponsor-content {
    padding: 1.5rem;
}

.sponsor-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sponsor-info {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
}

.sponsor-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-more {
    background: #e5e7eb;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.sponsor-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #1f2937;
}

.sponsor-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reading-time {
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sponsors {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}