/* ============================================
   Styles pour le bandeau sous le menu
   ============================================ */

.healththeme-banner-container {
    padding: 10px 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.healththeme-banner-left {
    flex: 1;
    padding: 8px 20px;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    min-width: 200px;
}
.healththeme-banner-stretch {
    align-self: stretch;
    color: white;
    font-weight: 700;
}
.healththeme-banner-right {
    padding: 8px 38px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    align-content: center;
}
.healththeme-banner-button {
    color: white;
    font-size: 20px;
    font-family: "Metropolis";
    font-weight: 700;
    word-wrap: break-word;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: solid 2px white;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}
.healththeme-banner-button:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: scale(1.02);
    border: solid 2px white;
}
.healththeme-banner-heading {
    font-size: 24px;
    font-family: Metropolis;
    font-weight: 600;
    word-wrap: break-word;
}
.healththeme-banner-text-black {
    color: rgba(255, 255, 255, 0.7);
}
.healththeme-banner-theme {
    color: white;
    text-decoration: underline;
}
