.cla-tpl-dcl {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
}
.cla-tpl-dcl-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    padding: 16px;
    color: inherit;
    background: var(--bg-0);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
    align-items: start;
}
.cla-tpl-dcl-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -14px rgba(201, 100, 66, 0.22);
}
.cla-tpl-dcl-item:hover .dcl-title { color: var(--accent); }
.cla-tpl-dcl-item:hover .dcl-cover img { transform: scale(1.04); }

.cla-tpl-dcl-item .dcl-cover {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-1);
    border-radius: 4px;
}
.cla-tpl-dcl-item .dcl-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.cla-tpl-dcl-item .dcl-cover .placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-faint) 0%, var(--bg-1) 100%);
    color: var(--accent);
    font-family: var(--display);
    font-style: italic;
    font-size: 36px;
    opacity: 0.6;
}

.cla-tpl-dcl-item .dcl-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding: 4px 0;
    height: 100%;
}
.cla-tpl-dcl-item .dcl-title {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.3;
    color: var(--text-0);
    margin: 0;
    transition: color 0.22s;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cla-tpl-dcl-item .dcl-desc {
    font-family: var(--body);
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-2);
    margin: 0;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.cla-tpl-dcl-item .dcl-foot {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed var(--line);
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--text-3);
}
.cla-tpl-dcl-item .dcl-cat {
    padding: 2px 8px;
    background: var(--accent-faint);
    color: var(--accent);
    border-radius: 2px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 960px)  { .cla-tpl-dcl { grid-template-columns: 1fr; } }
@media (max-width: 560px)  {
    .cla-tpl-dcl-item { grid-template-columns: 140px 1fr; gap: 14px; padding: 12px; }
    .cla-tpl-dcl-item .dcl-title { font-size: 16px; }
    .cla-tpl-dcl-item .dcl-desc { -webkit-line-clamp: 2; }
}
