/* Wrapper */
.meo-article-wrapper {
    margin: 30px 0;
    font-family: inherit;
}

/* Section Heading */
.meo-article-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    background: #f5f5f5;
    padding: 12px 15px;
    border-radius: 6px;
    color: #333;
}

/* Grid Layout */
.meo-article-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px;
}

/* Card Item */
.meo-article-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    transition: box-shadow 0.3s ease;
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; */
    /* overflow: hidden; */
}

.meo-article-thumb {
	width: 30%;
	display: flex;
	align-items: center;
	background: #f6f6f6;
	margin: 15px;
	border-radius: 12px;
	max-height: 110px;
	margin-right: 0;
}

.meo-article-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Thumbnail */
.meo-article-thumb img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: contain;
}

/* Content */
.meo-article-body {
    padding: 12px 15px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

/* Title */
.meo-article-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.meo-article-title:hover {
    color: #0073aa;
}

/* Date */
.meo-article-date {
    font-size: 13px;
    color: #777;
}

img.meo-article-placeholder {
    padding: 38px;
    filter: grayscale(1);
    opacity: .2;
}

/* Max screen 768 */
@media (max-width: 768px) {
    .meo-article-list {
        grid-template-columns: 1fr;
    }
}