/* home.css - Home/dashboard page styles */

/* Responsive dashboard layout for social feed integration */
@media (min-width: 1024px) {
    .dashboard-container {
        grid-template-columns: 2fr 1fr !important;
    }

    .social-feed-sidebar {
        display: block !important;
        min-height: 400px;
    }
}

@media (max-width: 1023px) {
    .dashboard-container {
        grid-template-columns: 1fr !important;
    }

    .social-feed-sidebar {
        display: block !important;
        order: 2;
    }

    .dashboard-main {
        order: 1;
    }
}

.social-feed-sidebar {
    background-color: var(--surface-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--soft-gray);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.social-feed-event {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--soft-gray);
}

.social-feed-event:last-child {
    border-bottom: none;
}

.social-feed-event img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
}

.social-feed-event-content {
    flex: 1;
    min-width: 0;
}

.social-feed-event-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 4px;
}

.social-feed-event-time {
    font-size: 0.8rem;
    color: var(--text-medium);
}

.social-feed-placeholder {
    text-align: center;
    color: var(--text-medium);
    font-style: italic;
    padding: 32px 16px;
}

.clickable-event {
    transition: background-color 0.2s ease;
}

.clickable-event:hover {
    background-color: rgba(143, 166, 142, 0.05);
    border-radius: var(--radius-md);
}
