/**
 * Ficha Técnica (icon specs) — front styles
 * Z Digital · Creative Elements widget
 */

.zds {
    --zds-cols-d: 4;
    --zds-cols-t: 2;
    --zds-cols-m: 1;
    width: 100%;
}

.zds-title {
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.2;
}

.zds-grid {
    display: grid;
    grid-template-columns: repeat(var(--zds-cols-d), minmax(0, 1fr));
    gap: 16px;
}

.zds-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background-color: #f5f6f7;
    border-radius: 14px;
    box-sizing: border-box;
    min-width: 0;
}

.zds-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #22a45d;
    font-size: 30px;
    line-height: 1;
}

.zds-icon i {
    display: inline-block;
    line-height: 1;
}

.zds-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.zds-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.zds-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}

.zds-label {
    color: #8a8f98;
    font-size: 13px;
    line-height: 1.3;
}

.zds-value {
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
}

.zds-empty {
    padding: 16px;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    color: #64748b;
    font-size: 14px;
    text-align: center;
}

/* Tablet */
@media (max-width: 1024px) {
    .zds-grid {
        grid-template-columns: repeat(var(--zds-cols-t), minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 767px) {
    .zds-grid {
        grid-template-columns: repeat(var(--zds-cols-m), minmax(0, 1fr));
    }
}
