/* Styles partagés pour les titres avec badge Michelin */

.title-with-michelin-wrapper {
    display: inline;
    position: relative;
    margin: 0;
    line-height: 1.2;
}

.title-with-michelin-text {
    display: inline;
}

.title-with-michelin-last-word-wrapper {
    display: inline-block;
    position: relative;
}

.title-with-michelin-badge {
    position: absolute;
    top: 0;
    right: var(--badge-right, 28px);
    width: 50px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    transform: translate(100%, 0);
    padding-left: 12px;
}

.title-with-michelin-badge:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .title-with-michelin-badge {
        width: 40px;
        right: var(--badge-right-mobile, 18px);
    }
}
