.anlamtv-featured-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

body.rtl .anlamtv-featured-lists {
    direction: rtl;
}

.anlamtv-featured-lists__col {
    background: #fff;
    border-radius: 6px;
    padding: 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.anlamtv-featured-lists__title {
    font-size: 15px;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #d32f2f;
}

.anlamtv-featured-lists__title a {
    color: #222;
    text-decoration: none;
}

.anlamtv-featured-lists__items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.anlamtv-featured-lists__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid #eee;
}

.anlamtv-featured-lists__item:first-child {
    border-top: none;
}

.anlamtv-featured-lists__thumb {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    border-radius: 4px;
    overflow: hidden;
    background: #eee;
    display: block;
}

.anlamtv-featured-lists__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.anlamtv-featured-lists__item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.anlamtv-featured-lists__item-title {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    line-height: 1.5;
}

.anlamtv-featured-lists__item-title:hover {
    color: #d32f2f;
}

.anlamtv-featured-lists__item-date {
    font-size: 11px;
    color: #999;
}

@media (max-width: 782px) {
    .anlamtv-featured-lists {
        grid-template-columns: 1fr;
    }
}
