.po-featured-list-widget {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 20px;
    margin-bottom: 30px;
}
.po-featured-item { position: relative; }

.po-featured-item:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 1px;
    height: 100%;
    background: #e5e5e5;
}

.po-featured-thumb-wrap {
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}

/* FIXED IMAGE TARGET */
.po-featured-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.po-featured-item:hover img {
    transform: scale(1.03);
}

.po-cat-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #e60000;
    color: #fff!important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    text-decoration: none;
    line-height: 1;
    z-index: 2;
}
.po-cat-badge:hover {
    background: #cc0000;
    color: #fff!important;
}

.po-featured-title {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 5px 0;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.po-featured-title a {
    color: #111;
    text-decoration: none;
}
.po-featured-title a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.po-date { font-size: 13px; color: #888; }

.po-list-wrap { display: flex; flex-direction: column; gap: 15px; }
.po-list-item {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.po-list-item:last-child { border-bottom: 0; padding-bottom: 0; }

.po-list-content { position: relative; }

.po-list-title {
    font-size: 16px;
    line-height: 1.35;
    margin: 0 0 5px 0;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.po-list-title a {
    color: #111;
    text-decoration: none;
}
.po-list-title a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

/* FIXED LIST IMAGE */
.po-list-thumb img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
 .po-featured-list-widget { grid-template-columns: 1fr; }
 .po-featured-item:nth-child(1)::after { display: none; }
 .po-featured-thumb img { height: 200px; }
 .po-list-item { grid-template-columns: 1fr 80px; }
 .po-list-thumb img { width: 80px; height: 60px; }
}
