/* ===== TOC Box ===== */
.toplist-toc-box {
    background: #f7f9fc;
    border: 1px solid #e6ecf5;
    border-radius: 12px;
    padding: 16px 18px;
    margin: 24px 0 36px;
}

.toplist-toc-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

/* HARD OVERRIDE: kill theme grids/flex */
.toplist-toc-box .toplist-toc-grid {
    display: block !important;        /* no grid/flex */
}

.toplist-toc-box .toplist-toc-item {
    display: flex !important;         /* each item in single row */
    width: 100% !important;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    border-radius: 6px;
    text-decoration: none;
    color: #1f2937;
    transition: background .15s ease;
}

.toplist-toc-item:hover {
    background: #eef2ff;
}

.toplist-toc-num {
    min-width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #2563eb;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.toplist-toc-text {
    font-size: .95rem;
    line-height: 1.4;
}

/* ===== Listing ===== */
.toplist-row {
    margin: 36px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.toplist-row h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.35;
}

.toplist-row img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 12px 0 12px;
}

.toplist-row p {
    margin: 0 0 8px;
    line-height: 1.7;
    color: #374151;
}

/* Read More */
.toplist-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
}

.toplist-readmore:hover {
    opacity: .9;
}

/* Mobile */
@media (max-width: 768px) {
    .toplist-row h3 { font-size: 1.15rem; }
}