/**
 * LVH Custom Frontend Styles
 */

.lvh-custom-block {
    margin: 1em 0;
}

.lvh-custom-block *,
.lvh-custom-block *::before,
.lvh-custom-block *::after {
    box-sizing: border-box;
}

/* Utility classes */
.lvh-custom-hidden {
    display: none !important;
}

.lvh-custom-text-center {
    text-align: center;
}

.lvh-custom-text-left {
    text-align: left;
}

.lvh-custom-text-right {
    text-align: right;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .lvh-custom-hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .lvh-custom-hide-desktop {
        display: none !important;
    }
}