/* css/label-style.css */
.label-ertesito-container {
    max-width: 100%;
    overflow: hidden;
}

.label-ertesito-inner {
    display: flex;
    align-items: center;
}

.label-ertesito-icon {
    margin-right: 8px;
    flex-shrink: 0;
}

.label-ertesito-content {
    display: flex;
    flex-direction: column;
}

/* Felirat alapértelmezett stílusai */
.label-ertesito-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
}

/* Alapértelmezett: mobil szöveg rejtve */
.label-ertesito-text.mobile-text {
    display: none;
}

/* Reszponzív szabály: 500px alatt a desktop szöveg rejtett, a mobil szöveg látható */
@media screen and (max-width: 500px) {
    .label-ertesito-text.desktop-text {
        display: none;
    }
    .label-ertesito-text.mobile-text {
        display: block;
    }
}
