﻿
.lifeStyle-section-mobile {
    padding: 0 50px;
    background: linear-gradient(to bottom,rgb(0, 0, 0) 0%, rgba(var(--primary-bg-rgb), 1) 100%, var(--primary-bg) 100%);
    color: #ffffff;
    text-align: center;
}

.section-title-mobile {
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 16pt;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.lifeCard {
    max-width: 360px;
    margin: 15px auto 0;
    padding-top: 30px;
    position: relative;
}

/* IMAGE */
.image-wrap {
    position: relative;
}

.overlay-image-mobile {
    width: calc(100% + 20px);
    height: 146px;
    object-fit: cover;
    display: block;
    margin-left: -10px;
    margin-right: -10px;
    position: relative;
    z-index: 1;
}

/* CADRE AU-DESSUS DE TOUT */
.lifeCard::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #ffffff;
    pointer-events: none;
    z-index: 2;
}

/* CONTENT */
.content-card-inner {
    padding: 30px 10px;
}

.lifeStyle-title-mobile {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16pt;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.section-title-line-lifestyle {
    
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    
}

    .section-title-line-lifestyle::before,
    .section-title-line-lifestyle::after {
        content: "";
        display: inline-block;
        width: 10px;
        height: 2px;
        background: #fff;
        margin: 0 16px;
    }


.description-mobile {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13pt;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
}


/* READ MORE */
.read-more-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 13pt;
    cursor: pointer;
}

/*  /* POPUP overlay */
.popup-overlay-mobile {
    display: none;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: #495057;
}

.popup-inner {
    width: 92%;
    max-width: 640px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    color: #495057;
    padding: 20px;
    border-radius: 6px;
    position: relative;
}

.close-btn {
    position: absolute;
    right: 8px;
    top: 6px;
    border: none;
    background: none;
    color: #495057;
    font-size: 26px;
    cursor: pointer;
}


