/* ==============================
   Multiplatforms AI Publisher - Frontend UI
============================== */

/* Feed container */
.mp-feed {
    max-width: 700px;
    margin: 30px auto;
    padding: 0 15px;
}

/* Each post card */
.mp-feed-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 25px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mp-feed-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Title */
.mp-feed-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Content */
.mp-feed-content {
    font-size: 14px;
    line-height: 1.6;
}

/* Meta (date, etc.) */
.mp-feed-meta {
    margin-top: 10px;
    font-size: 12px;
    color: #777;
}

/* Facebook embed wrapper */
.mp-fb-embed {
    max-width: 600px;
    margin: 15px auto;
}

/* iframe styling */
.mp-fb-embed iframe {
    width: 100%;
    border-radius: 10px;
    border: none;
}

/* Mobile optimization */
@media (max-width: 600px) {
    .mp-feed {
        padding: 0 10px;
    }

    .mp-feed-item {
        padding: 15px;
    }

    .mp-feed-title {
        font-size: 16px;
    }
}