/* Modern Blog for Hello Elementor - Styles */
.mbe-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

.mbe-blog-grid {
    display: grid;
    grid-gap: 20px;
    flex: 3;
}

.mbe-blog-grid.mbe-grid-1 { grid-template-columns: 1fr; }
.mbe-blog-grid.mbe-grid-2 { grid-template-columns: repeat(2, 1fr); }
.mbe-blog-grid.mbe-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mbe-blog-grid.mbe-grid-4 { grid-template-columns: repeat(4, 1fr); }

.mbe-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mbe-post:hover {
    transform: translateY(-5px);
}

.mbe-post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mbe-post-content {
    padding: 20px;
}

.mbe-post-title {
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.2;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.mbe-post-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.mbe-post-excerpt {
    color: #4a4a4a;
    font-size: 1em;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

.mbe-post-content p {
    color: #4a4a4a;
    font-size: 1em;
    line-height: 1.6;
    margin: 0 0 15px;
    font-family: 'Roboto', sans-serif;
}

.mbe-sidebar {
    flex: 1;
    padding: 0 20px;
    min-width: 250px;
}

.mbe-widget {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mbe-widget-title {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 15px;
    color: #1a1a1a;
}

.mbe-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mbe-widget ul li {
    margin-bottom: 10px;
}

.mbe-widget ul li a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95em;
}

.mbe-widget ul li a:hover {
    color: #007bff;
}

.mbe-share-buttons {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}

.mbe-share-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.mbe-share-button.whatsapp {
    background-color: #25D366;
}

.mbe-share-button.facebook {
    background-color: #3b5998;
}

.mbe-share-button.instagram {
    background-color: #E1306C;
}

.mbe-share-button:hover {
    opacity: 0.9;
}

.mbe-share-button svg {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .mbe-blog-container {
        flex-direction: column;
    }

    .mbe-blog-grid {
        grid-template-columns: 1fr !important;
    }

    .mbe-sidebar {
        padding: 0;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Roboto&display=swap');