/* 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;
    overflow: hidden;
}

.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;
}

.featured-title {
    background-color: #e94c7a;
    /* pink bar */
    color: #fff;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 3px 3px 0 0;
    margin-top: 20px;
    font-size: 16px;
}

.shop-overview {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
    font-size: 14px;
}

.shop-overview th,
.shop-overview td {
    border: 1px solid #ddd;
    padding: 8px 10px;
    vertical-align: top;
}

.shop-overview th {
    width: 160px;
    text-align: left;
    font-weight: bold;
    background-color: #f9f9f9;
}

.shop-overview a {
    color: #2ca5d7;
    text-decoration: none;
}

.shop-overview a:hover {
    text-decoration: underline;
}


.featured-title {
    display: flex;
    justify-content: space-between;
}

.featured-title a {
    display: flex;
    width: 18px;
}

.featured-title a svg {
    fill: #fff;
}

.operation-hour {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    line-height: 1.8;
}

.day-box {
    background-color: #9e9e9e;
    color: #fff;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
    display: inline-block;
    min-width: 38px;
    text-align: center;
}

.time-text {
    margin-right: 12px;
    color: #333;
    font-size: 14px;
}

.open-hours-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.open-hours-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.day-badge {
    background-color: #9e9e9e;
    color: #fff;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
    min-width: 36px;
    text-align: center;
}

.hours-text {
    color: #333;
    font-size: 14px;
}


/* Max screen 768 */
@media (max-width: 768px) {
    .meo-article-list {
        grid-template-columns: 1fr;
    }
}