.rst-main-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rst-feature-item {
    display: flex;
    flex: 1 1 150px;
    border-radius: var(--border-radius);
    flex-direction: column;
}

.rst-feature-label {
    font-size: 0.75rem;
    color: #999;
    background: black;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding: 5px;
}

.rst-feature-group {
    display: flex;
    min-height: 45px;
    background: rgba(0,0,0,.3);
    border: 2px solid black;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    gap: 10px;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- LOGICA DINAMICA --- */

/* CASO: UN SOLO VALOR (Horizontal) */
.rst-single .rst-value-content {
    flex-direction: row; /* Imagen y texto a la par */
    justify-content: center;
    gap: 15px;
    flex: 1;
    padding: 10px;
}

/* CASO: VARIOS VALORES (Vertical) */
.rst-multiple .rst-value-content {
    flex-direction: column; /* Imagen arriba, texto abajo */
    justify-content: center;
    flex: 1;
    padding: 10px 5px;
    text-align: center;
}

.rst-value-content {
    display: flex;
    align-items: center;
    transition: background 0.2s ease;
    justify-content: center;
    gap: 5px;
    flex: 1;
    padding: 5px 15px;
}

.rst-value-content:hover {
    background: rgba(255, 255, 255, 0.05); /* Un brillo sutil para fondo oscuro */
}

.rst-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rst-icon-img {
    width: 70px;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: center;
    padding: 5px 0;
}
.rst-value-content:hover .rst-icon-img {
    transform: scale(1.5) rotate(-5deg);
    filter: drop-shadow(2px 4px 10px black);
}

.rst-value-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

/* Ajuste Responsivo */
@media (max-width: 575px) {
    .rst-single .rst-value-content {
        gap: 8px;
    }
}