/**
 * Social Media Feed Widget
 * Widget wyświetlający najnowsze posty z social media
 */

.social-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.social-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.social-post-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.social-post-content {
    padding: 1.5rem;
}

.social-post-date {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.social-post-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.social-post-link {
    color: var(--primary-color, #ff006e);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.social-post-link:hover,
.social-post-link:focus {
    gap: 1rem;
    outline: 2px solid var(--primary-color, #ff006e);
    outline-offset: 2px;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .social-feed {
        grid-template-columns: 1fr;
    }
}

