/* Clearis Product Features */

.clerfeat-box {
    background: transparent;
    padding: 0;
    margin: 16px 0 22px;
    width: 100%;
    max-width: 100%;
}

.clerfeat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.clerfeat-slot {
    min-width: 0;
    text-align: center;
    padding: 8px 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.clerfeat-slot::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: calc(100% - 16px);
    background: #ebebeb;
}

.clerfeat-slot:last-child::after {
    display: none;
}

.clerfeat-slot-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5963A;
    margin-bottom: 7px;
    min-height: 26px;
}

.clerfeat-slot-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

/* Icono de consumo / etiqueta energética ligeramente más grande */
.clerfeat-slot--label .clerfeat-slot-icon svg {
    width: 32px;
    height: 32px;
}

.clerfeat-slot-label {
    color: #aaa;
    font-size: 11px;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.clerfeat-slot-value {
    color: #222;
    font-size: 15px;
    font-weight: 700;
    word-break: break-word;
    line-height: 1.25;
}

@media (max-width: 767px) {
    .clerfeat-box {
        margin: 14px 0 18px;
    }

    .clerfeat-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        row-gap: 10px;
    }

    .clerfeat-slot {
        padding: 6px 10px;
    }

    .clerfeat-slot-icon svg {
        width: 22px;
        height: 22px;
    }

    .clerfeat-slot--label .clerfeat-slot-icon svg {
        width: 28px;
        height: 28px;
    }

    .clerfeat-slot-label {
        font-size: 10px;
    }

    .clerfeat-slot-value {
        font-size: 14px;
    }
}

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