/* Styles for Social Feed Builder front-end components */

.sfb-feed {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sfb-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.sfb-card-media img {
    width: 100%;
    height: auto;
    display: block;
}

.sfb-card-content {
    padding: 1rem;
}

.sfb-card-text {
    margin: 0 0 0.5rem;
    font-size: 14px;
    line-height: 1.4;
}

.sfb-card-date {
    margin: 0 0 0.5rem;
    font-size: 12px;
    color: #666;
}

.sfb-card-link a {
    text-decoration: none;
    color: #0073aa;
    font-weight: 600;
}

.sfb-card-link a:hover {
    text-decoration: underline;
}