.list_p001 { font-size: var(--theme-font-size-body, 1rem); }
.list_p001-title {
    color: var(--p001-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;
}
.list_p001-decor {
    border: none;
    border-top: 4px solid var(--p001-decor-color, #0d6efd);
    width: 3rem;
    margin: 0 0 1em 0;
}
.list_p001-subtitle {
    color: var(--p001-subtitle-color, #6c757d);
    font-size: var(--theme-font-size-body, 0.95rem);
    margin: 0 0 1.25em 0;
    line-height: 1.6;
}
.list_p001-grid { display: grid; grid-template-columns: repeat(var(--p001-cols, 4), 1fr); gap: 1rem; }
.list_p001-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    background: #fff;
}
.list_p001-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); transform: translateY(-2px); }
.list_p001-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f9fa;
}
.list_p001-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}
.list_p001-card:hover .list_p001-img img { opacity: 0.88; }
.list_p001-name {
    padding: 0.75rem 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.4;
    text-align: center;
}