/* VX Social — Feed Styles */

.vx-social-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.vx-social-platform-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.vx-social-platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.vx-social-icon-twitter   { background: #000; }
.vx-social-icon-bluesky   { background: #0085ff; }
.vx-social-icon-linkedin  { background: #0077B5; }
.vx-social-icon-threads   { background: #000; }
.vx-social-icon-tiktok    { background: #010101; }
.vx-social-icon-facebook  { background: #1877F2; }

.vx-social-platform-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 15px;
}

.vx-social-post-card {
    display: block;
    padding: 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.vx-social-post-card:hover {
    border-color: #d4af37;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.vx-social-post-content {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 8px;
    color: #333;
}

.vx-social-post-media img {
    width: 100%;
    border-radius: 8px;
    margin: 8px 0;
}

.vx-social-post-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #999;
}

/* Wall */
.vx-social-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    padding: 20px 0;
}

.vx-social-wall-item {
    display: block;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.vx-social-wall-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.vx-social-wall-twitter   { background: linear-gradient(135deg, #15202b, #1a1a2e); }
.vx-social-wall-bluesky   { background: linear-gradient(135deg, #0066cc, #0085ff); }
.vx-social-wall-linkedin  { background: linear-gradient(135deg, #004182, #0077B5); }
.vx-social-wall-threads   { background: linear-gradient(135deg, #1a1a1a, #333); }
.vx-social-wall-tiktok    { background: linear-gradient(135deg, #010101, #25F4EE); }
.vx-social-wall-facebook  { background: linear-gradient(135deg, #0d47a1, #1877F2); }

.vx-social-wall-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.vx-social-wall-item p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 8px;
    opacity: 0.9;
}

.vx-social-wall-date {
    font-size: 11px;
    opacity: 0.6;
}

.vx-social-empty {
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
}

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