.list_l003 { font-size: var(--theme-font-size-body, 1rem); }
.list_l003-title {
    color: var(--list_l003-title-color, #212529);
    font-size: var(--theme-font-size-h3, 1.5rem);
    font-weight: 700;
    line-height: 2;
    margin-top: 2rem;
    margin-bottom: 0.3em;
    text-align: var(--list_l003-title-align, left);
}
.list_l003-decor {
    border: none;
    border-top: 4px solid var(--list_l003-decor-color, #0d6efd);
    width: 3rem;
    margin: 0 0 1em 0;
}
.list_l003-list { display: flex; flex-direction: column; gap: 1.25rem; }
.list_l003-item {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s, transform 0.2s;
}
.list_l003-item:hover { opacity: 0.85; transform: translateY(-2px); }
.list_l003-item-title {
    color: var(--list_l003-item-title-color, #212529);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.4;
}
.list_l003-item-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.list_l003-img {
    flex: var(--list_l003-img-flex, 1);
    min-width: 0;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    background: #eee;
}
.list_l003-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.list_l003-body {
    flex: var(--list_l003-body-flex, 2);
    min-width: 0;
}
.list_l003-brief {
    color: var(--list_l003-brief-color, #6c757d);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}