.right-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    border-left: 1px solid var(--color-border);
    padding: 20px;
    background-color: var(--color-dark);
}

.main-content {
    margin-left: 200px;
    margin-right: 250px;
    padding: 40px 60px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.feed-container {
    width: 100%;
    max-width: 500px;
}

.post {
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    margin-bottom: 20px;
    overflow: hidden;
}

.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.username {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-primary);
}

.separator {
    margin: 0 4px;
    color: var(--color-text-muted);
}

.timestamp {
    font-weight: 400;
    font-size: 13px;
    color: var(--color-text-muted);
}

.location {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.post-options {
    padding: 4px;
    border-radius: 50%;
    transition: background 0.2s;
}

.post-options:hover {
    background: rgba(0, 0, 0, 0.05);
}

.post-options img {
    width: 20px;
    height: 20px;
    display: block;
}

.post-image {
    width: 100%;
    background: var(--color-bg);
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-footer {
    padding: 12px 16px;
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 8px;
    color: var(--color-text-muted);
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.action-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-primary);
}

.action-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn .icon svg {
    width: 20px;
    height: 20px;
}

.action-btn.save {
    margin-left: auto;
}

.action-btn .count {
    font-size: 13px;
    font-weight: 500;
}

.suggestions-section {
    margin-top: 20px;
}

.suggestions-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-faint);
    margin-bottom: 16px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    transition: background 0.2s;
    cursor: pointer;
}

.suggestion-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.suggestion-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    flex-shrink: 0;
}

.suggestion-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-faint);
}

@media (max-width: 768px) {
    .main-content {
        margin-right: 0;
    }
    .right-sidebar {
        display: none;
    }
}

.suivi {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}

.suivi:hover {
    background-color: var(--color-primary-dark);
}