/* Container */
.mff-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Carte */
.mff-card {
    background: #fff;
    border: 1px solid #dddfe2;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
.mff-header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.mff-avatar-placeholder {
    width: 40px;
    height: 40px;
    background-color: #1877f2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}

.mff-meta { display: flex; flex-direction: column; }
.mff-author { font-weight: 600; color: #050505; font-size: 15px; }
.mff-date { color: #65676b; font-size: 13px; }

/* Body */
.mff-body { padding-bottom: 10px; }
.mff-text { padding: 4px 16px 16px; color: #050505; font-size: 15px; line-height: 1.4; }
.mff-media img { width: 100%; height: auto; display: block; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }

/* Footer Interactions */
.mff-footer {
    background: #fcfcfc;
    padding: 10px 16px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button-fb-view {
    text-decoration: none;
    color: #65676b;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    background: #f0f2f5;
}
.button-fb-view:hover { background-color: #e4e6eb; color: #050505; }
