/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */

.lieux-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lieux-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.lieux-carousel .lieu-card {
    min-width: 30%;
    scroll-snap-align: start;
}

/*.lieu-card {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
}
*/
.lieu-img img {
    width: 100%;
    height: 190px;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}
.lieu-content h3 {
    font-weight: 600;
    font-size: 1.2em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 10px 0 0 !important;
    color: #ffff;
}

.lieu-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lieu-filter {
    margin-bottom: 20px;
}

.lieu-filter button {
    margin-right: 10px;
    cursor: pointer;
}


.lieu-desc p {
    margin: 0 !important;
}

.lieu-desc {
   font-size: .85em;
    color: #9B9AA2;
}
p.lieu-capacite {
        margin: 0 !important;
    color: #ffff;
    font-size: 1em;
    font-weight: 300;
}
p.lieu-capacite span {
    font-weight: 600;
}
.lieu-content {
    padding: 15px;
}
.flex-content-lieu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 15px;
}
.lieu-more {
    display: inline-block;
    margin-top: 10px;
    background: #fff;
    font-size: .9em;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all .5s;
    color: #171616;
    display: inline-block;
}
.lieu-card {
    background: #171616;
    border-radius: 8px;
    position: relative;
  transition: background 0.3s;

}



/*.lieu-card {
  position: relative;
  padding: 2rem;
  border-radius: 16px;
  background-color: #171616;
  transition: background 0.2s ease;
}*/

.lieu-card:hover {
  background:
    radial-gradient(
      600px circle at var(--x, 50%) var(--y, 50%),
      rgba(255, 255, 255, 0.22),
      transparent 45%
    ),
    #171616;
}
.swiper-button-next, .swiper-button-prev {
    width: 32px !important;
    height: 32px !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
    color: #fff;
    background: pink;
    border-radius: 100px;
    width: 32px !important;
    font-size: 15px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*tablette */
@media (max-width: 991.98px) {  

.lieux-grid {
    grid-template-columns: repeat(2, 1fr);

}


}


/*Mobile */
@media (max-width: 575.98px) {  

.lieux-grid {
    grid-template-columns: repeat(1, 1fr);

}


}




































