.artifema-dct-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.artifema-dct-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
}

.artifema-dct-image {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #f4f4f4;
}

.artifema-dct-image img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    transition: transform .25s ease;
}

.artifema-dct-card:hover .artifema-dct-image img {
    transform: scale(1.025);
}

.artifema-dct-image-placeholder {
    min-height: 220px;
}

.artifema-dct-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.artifema-dct-title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.artifema-dct-title,
.artifema-dct-title a {
    color: #111;
    text-decoration: none;
}

.artifema-dct-products {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.artifema-dct-products li {
    position: relative;
    margin: 0;
    padding: 0 0 0 15px;
    line-height: 1.35;
}

.artifema-dct-products li::before {
    content: "";
    position: absolute;
    top: .55em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff6600;
}

.artifema-dct-products a {
    color: #333;
    text-decoration: none;
}

.artifema-dct-products a:hover,
.artifema-dct-title a:hover {
    text-decoration: underline;
}

.artifema-dct-empty {
    margin: 0;
    opacity: .65;
}

.artifema-dct-editor-notice {
    padding: 18px;
    border: 1px dashed #c7c7c7;
    background: #fafafa;
    text-align: center;
}

@media (max-width: 1024px) {
    .artifema-dct-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .artifema-dct-grid {
        grid-template-columns: 1fr;
    }
}


/* Jerarquía interna: solo las hijas directas de la categoría abierta son tarjetas. */
.artifema-dct-children {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}

.artifema-dct-branch {
    min-width: 0;
    padding-top: 14px;
    border-top: 1px solid #ececec;
}

.artifema-dct-subtitle {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.artifema-dct-subtitle,
.artifema-dct-subtitle a {
    color: #222;
    text-decoration: none;
}

.artifema-dct-branch-children {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
    margin-left: 4px;
    padding-left: 14px;
    border-left: 2px solid #ececec;
}

.artifema-dct-branch-children .artifema-dct-branch {
    padding-top: 0;
    border-top: 0;
}

.artifema-dct-branch-children .artifema-dct-subtitle {
    font-size: 16px;
    margin-bottom: 8px;
}

.artifema-dct-subtitle a:hover {
    text-decoration: underline;
}
