/* Featured Image Meta Display - Styles */

.fim-meta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 15px;
}

/* Social Media Buttons - Left Side */
.fim-social-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.fim-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.fim-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.fim-facebook {
    background: #1877f2;
}

.fim-facebook:hover {
    background: #145dbf;
}

.fim-twitter {
    background: #1da1f2;
}

.fim-twitter:hover {
    background: #0d8bd9;
}

.fim-linkedin {
    background: #0077b5;
}

.fim-linkedin:hover {
    background: #005885;
}

.fim-whatsapp {
    background: #25d366;
}

.fim-whatsapp:hover {
    background: #1da851;
}

.fim-pinterest {
    background: #e60023;
}

.fim-pinterest:hover {
    background: #bd001c;
}

/* Author Info - Right Side */
.fim-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fim-author-avatar {
    flex-shrink: 0;
}

.fim-author-avatar img {
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fim-author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fim-author-name {
    font-weight: 600;
    font-size: 16px;
    color: #212529;
    line-height: 1.2;
}

.fim-post-date {
    font-size: 14px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fim-post-date i {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fim-meta-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    
    .fim-social-buttons {
        width: 100%;
        justify-content: center;
        order: 2;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #dee2e6;
    }
    
    .fim-author-info {
        order: 1;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .fim-social-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .fim-author-name {
        font-size: 15px;
    }
    
    .fim-post-date {
        font-size: 13px;
    }
}
