/* AAVIE custom overrides (loaded after assets/css/style.css) */

/* Slightly larger paragraph text for the "Une équipe jeune et dynamique" block */
.aavie-disc-lg {
  font-size: 1.0625rem; /* ~17px */
  line-height: 1.7;
}

/*
  Keep the title on a single line on desktop.
  On small screens we allow wrapping to avoid overflow.
*/
@media (min-width: 992px) {
  .aavie-title-nowrap {
    white-space: nowrap;
  }
}

/* Reduce the size of the span inside the h1 title */
.aavie-title-span {
  font-size: 0.79em; /* 75% of the parent h1 size */
}

/* Styled description text for the réassureurs section */
.aavie-reassureurs-desc {
  font-size: 25px; /* ~17px */
  line-height: 1.5;
  color: #666;
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto;
}

/* Reduced size and justified text for testimonial paragraph */
/* Using more specific selector to override style.css */
.testimonails-area-seven .right-content-area-main-wrapper p.disc.aavie-testimonial-text {
  font-size: 22px !important; /* Reduced from 30px */
  text-align: justify !important;
  max-width: 800px;
  line-height: 1.6 !important;
}

@media only screen and (max-width: 1199px) {
  .testimonails-area-seven .right-content-area-main-wrapper p.disc.aavie-testimonial-text {
    font-size: 14px !important; /* Reduced from 24px on mobile */
  }
}

/* Fix header styling issues on pages with .page body class */
body.page .header-one {
  position: relative;
  background: #fff;
}

body.page .header-one.sticky {
  position: fixed !important;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #fff;
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
}

body.page .header-one .header-main {
  background: #fff;
}

body.page .header-one .nav-area ul li.main-nav > a {
  color: #1C2539;
}

body.page .header-one .nav-area ul li.main-nav:hover > a,
body.page .header-one .nav-area ul li.main-nav.active > a {
  color: #0F6CB8;
}

/* Keep main menu on a single line for internal pages (desktop) */
@media (min-width: 1200px) {
  body.page .header-one .nav-area ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 35px;
  }

  body.page .header-one .nav-area ul li.main-nav > a {
    white-space: nowrap;
    font-size: 15px;
  }
}

/* Actualités cards - equal height and width */
/* ONLY apply to actualites-evenements page */
.rts-section-gap .blog-single-post-listing {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.rts-section-gap .blog-single-post-listing:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.rts-section-gap .blog-single-post-listing .thumbnail {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.rts-section-gap .blog-single-post-listing .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rts-section-gap .blog-single-post-listing:hover .thumbnail img {
  transform: scale(1.05);
}

.rts-section-gap .blog-single-post-listing .blog-listing-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  background: #fff;
}

.rts-section-gap .blog-single-post-listing .blog-listing-content .user-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.rts-section-gap .blog-single-post-listing .blog-listing-content .blog-title .title {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 15px;
  min-height: 56px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rts-section-gap .blog-single-post-listing .blog-listing-content .disc {
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .rts-section-gap .blog-single-post-listing .thumbnail {
    height: 200px;
  }
  
  .rts-section-gap .blog-single-post-listing .blog-listing-content {
    padding: 20px;
  }
}

/* Auditeurs Qualité Section Styles */
.auditeurs-section-reduced {
  padding-top: 0 !important;
  margin-top: -80px !important;
  padding-bottom: 80px;
}

.auditeurs-content {
  padding: 20px 0;
}

.auditeurs-content .disc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #5D666F;
}

.auditeurs-content .disc:first-child {
  font-weight: 600;
  font-size: 18px;
  color: #1C2539;
  margin-bottom: 25px;
}

/* Carousel Styles */
.auditeurs-image-carousel {
  text-align: center;
  position: relative;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-wrapper:hover {
  transform: scale(1.02);
}

.carousel-wrapper:hover .image-overlay {
  opacity: 1;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
}

.image-overlay i {
  font-size: 48px;
  color: #fff;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 5;
}

.carousel-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.carousel-indicators .indicator.active {
  background-color: #0b4df5;
  width: 30px;
  border-radius: 5px;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  color: #ddd;
}

.lightbox-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10000;
}

.lightbox-nav button {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.lightbox-nav button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: #fff;
}

@media only screen and (max-width: 991px) {
  .carousel-image {
    height: 300px;
  }

  .auditeurs-content .disc {
    font-size: 15px;
  }

  .lightbox-image {
    max-width: 95%;
    max-height: 85vh;
  }
}

/* ===== Journée Mondiale de l'Enseignant Section ===== */
.enseignant-text-content {
  padding: 0;
}

.enseignant-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #1C2539;
  margin-bottom: 20px;
  line-height: 1.4;
}

.enseignant-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0b4df5 0%, #0a58ca 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.enseignant-date i {
  font-size: 16px;
}

.enseignant-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #5D666F;
  margin-bottom: 20px;
  text-align: justify;
}

/* Slider avec navigation par flèches */
.enseignant-slider-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.enseignant-slider-container {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  cursor: pointer;
}

.enseignant-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.enseignant-slider-container:hover .enseignant-slider-img {
  transform: scale(1.08);
}

.enseignant-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enseignant-slider-container:hover .enseignant-overlay {
  opacity: 1;
}

.enseignant-overlay i {
  font-size: 60px;
  color: #fff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.enseignant-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #1C2539;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.enseignant-nav-btn:hover {
  background: #0b4df5;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.enseignant-nav-btn.prev-btn {
  left: 20px;
}

.enseignant-nav-btn.next-btn {
  right: 20px;
}

.enseignant-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}

@media only screen and (max-width: 991px) {
  .enseignant-subtitle {
    font-size: 20px;
  }

  .enseignant-paragraph {
    font-size: 15px;
  }

  .enseignant-slider-container {
    height: 350px;
  }

  .enseignant-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .enseignant-nav-btn.prev-btn {
    left: 10px;
  }

  .enseignant-nav-btn.next-btn {
    right: 10px;
  }
}

/* ===== Don de Sang Section ===== */
.don-sang-section-reduced {
  padding-top: 0 !important;
  margin-top: -80px !important;
  padding-bottom: 80px;
}

.don-sang-content {
  padding: 0;
}

.don-sang-title {
  font-size: 24px;
  font-weight: 700;
  color: #1C2539;
  margin-bottom: 20px;
  line-height: 1.4;
}

.don-sang-text {
  font-size: 16px;
  line-height: 1.8;
  color: #5D666F;
  margin-bottom: 20px;
  text-align: justify;
}

/* Info Cards */
.don-sang-info-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.don-sang-info-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(11, 77, 245, 0.08) 0%, rgba(10, 88, 202, 0.08) 100%);
  border-left: 4px solid #0b4df5;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.don-sang-info-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(11, 77, 245, 0.15) 0%, rgba(10, 88, 202, 0.15) 100%);
  box-shadow: 0 5px 15px rgba(11, 77, 245, 0.1);
}

.info-icon {
  font-size: 32px;
  color: #0b4df5;
  min-width: 50px;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 14px;
  font-weight: 700;
  color: #0b4df5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.info-text {
  font-size: 15px;
  color: #1C2539;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.5;
}

.info-subtext {
  font-size: 13px;
  color: #5D666F;
  line-height: 1.6;
  margin: 0;
}

/* Slider pour Don de Sang */
.don-sang-slider-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.don-sang-slider-container {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  cursor: pointer;
}

.don-sang-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.don-sang-slider-container:hover .don-sang-slider-img {
  transform: scale(1.08);
}

.don-sang-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.don-sang-slider-container:hover .don-sang-overlay {
  opacity: 1;
}

.don-sang-overlay i {
  font-size: 60px;
  color: #fff;
  animation: pulse 2s infinite;
}

.don-sang-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #1C2539;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.don-sang-nav-btn:hover {
  background: #0b4df5;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.don-sang-prev-btn {
  left: 20px;
}

.don-sang-next-btn {
  right: 20px;
}

@media only screen and (max-width: 991px) {
  .don-sang-title {
    font-size: 20px;
  }

  .don-sang-text {
    font-size: 15px;
  }

  .don-sang-info-container {
    grid-template-columns: 1fr;
  }

  .don-sang-slider-container {
    height: 350px;
  }

  .don-sang-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* ===== Médiathèque Celebration Gallery ===== */
  .celebration-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .celebration-layout .gallery-row {
    display: grid;
    gap: 20px;
  }

  .celebration-layout .gallery-row.first {
    grid-template-columns: 2fr 1fr;
  }

  .celebration-layout .gallery-row.second {
    grid-template-columns: repeat(3, 1fr);
  }

  .celebration-layout .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f4f6;
  }

  .celebration-layout .gallery-item--large,
  .celebration-layout .gallery-item--tall,
  .celebration-layout .gallery-row.first .gallery-item {
    height: 420px;
  }

  .celebration-layout .gallery-row.second .gallery-item {
    height: 260px;
  }

  .celebration-layout .gallery-item--large .portfolio-details-slider,
  .celebration-layout .gallery-item--large .swiper,
  .celebration-layout .gallery-item--large .swiper-wrapper,
  .celebration-layout .gallery-item--large .swiper-slide {
    height: 100%;
  }

  .celebration-layout .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .celebration-layout .gallery-item:hover img {
    transform: scale(1.05);
  }

  .celebration-layout .gallery-links {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .celebration-layout .gallery-item:hover .gallery-links {
    opacity: 1;
  }

  .celebration-layout .gallery-links .preview-link {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: #0b4df5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .celebration-layout .swiper-pagination {
    position: relative;
    margin-top: 12px;
  }

  @media only screen and (max-width: 991px) {
    .celebration-layout .gallery-row.first,
    .celebration-layout .gallery-row.second {
      grid-template-columns: 1fr;
    }

    .celebration-layout .gallery-row.first .gallery-item,
    .celebration-layout .gallery-row.second .gallery-item {
      height: 280px;
    }
  }

  .don-sang-prev-btn {
    left: 10px;
  }

  .don-sang-next-btn {
    right: 10px;
  }
}

/* Images différentes pour chaque produit */
section.main-wrapper-sticky .sticky-statement.produit-entreprise:hover {
  background-image: url(../images/appoinment/produit-entrep.webp);
}

section.main-wrapper-sticky .sticky-statement.produit-particulier:hover {
  background-image: url(../images/appoinment/produit-part.webp);
}

section.main-wrapper-sticky .sticky-statement.produit-iardt:hover {
  background-image: url(../images/appoinment/produit-iardt.jpg);
}

/* ===== Newsletter Notification Styles ===== */
.newsletter-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 400px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

.newsletter-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.newsletter-notification.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
}

.newsletter-notification.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
}

.newsletter-notification .notification-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.newsletter-notification .notification-content i {
  font-size: 24px;
}

.newsletter-notification .notification-content span {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .newsletter-notification {
    min-width: auto;
    max-width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    padding: 15px;
  }

  .newsletter-notification .notification-content span {
    font-size: 14px;
  }
}

/* Fixed sidebar for product details page */
@media only screen and (min-width: 1200px) {
  .product-sidebar {
    position: relative;
  }
  .product-sidebar-inner {
    width: 100%;
  }
}

/* Fixed sidebar for blog list page */
@media only screen and (min-width: 1200px) {
  .blog-sidebar {
    position: relative;
  }
  .blog-sidebar-inner {
    width: 100%;
  }
}

/* Fixed sidebar for blog details page */
@media only screen and (min-width: 1200px) {
  .blog-details-sidebar {
    position: relative;
  }
  .blog-details-sidebar-inner {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 40px);
  max-width: 960px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  border-radius: 14px;
  padding: 20px 22px;
}

.cookie-consent.is-hidden {
  display: none;
}

.cookie-consent__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-consent__text {
  margin: 0;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.5;
}

.cookie-consent__link {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-consent__link:hover {
  text-decoration: none;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .cookie-consent {
    left: 50%;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 16px;
  }

  .cookie-consent__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent__text {
    font-size: 14px;
  }

  .cookie-consent__actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-consent__actions .rts-btn {
    width: 100%;
  }
}

/* Équipe dirigeante page responsive styles */
.rts-equipe-dirigeante .equipe-dirigeante-image {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 15px;
}

.rts-equipe-dirigeante .equipe-dirigeante-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Desktop: add left margin for the two main leaders */
@media only screen and (min-width: 992px) {
  .rts-equipe-dirigeante .leader-row {
    margin-left: 100px;
  }
  
  .rts-equipe-dirigeante .leader-row .equipe-dirigeante-image img {
    max-width: 500px;
  }
  
  .rts-equipe-dirigeante .team-member-row .equipe-dirigeante-image img {
    max-width: 300px;
  }
}

/* Desktop: add left margin for team members */
@media only screen and (min-width: 992px) {
  .rts-equipe-dirigeante .team-member-row {
    margin-left: 200px;
  }
}

/* Mobile: remove all margins, center everything, smaller images */
@media only screen and (max-width: 991px) {
  .rts-equipe-dirigeante .leader-row,
  .rts-equipe-dirigeante .team-member-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .rts-equipe-dirigeante .equipe-dirigeante-image {
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 0;
  }

  .rts-equipe-dirigeante .equipe-dirigeante-image img {
    max-width: 280px !important;
    width: 100% !important;
  }

  .rts-equipe-dirigeante .equipe-dirigeante-content {
    text-align: left;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  /* Reduce font sizes on mobile */
  .rts-equipe-dirigeante .intro-text {
    font-size: 18px !important;
  }

  .rts-equipe-dirigeante .separator-text {
    font-size: 17px !important;
  }

  .rts-equipe-dirigeante .title {
    font-size: 22px !important;
  }

  .rts-equipe-dirigeante .name-text {
    font-size: 17px !important;
  }

  .rts-equipe-dirigeante .description-text {
    font-size: 15px !important;
  }

  .rts-equipe-dirigeante .final-caption {
    font-size: 18px !important;
  }
}

/* Very small mobile screens */
@media only screen and (max-width: 576px) {
  .rts-equipe-dirigeante .equipe-dirigeante-image img {
    max-width: 250px !important;
  }
  
  .rts-equipe-dirigeante .intro-text {
    font-size: 16px !important;
  }

  .rts-equipe-dirigeante .separator-text {
    font-size: 15px !important;
  }

  .rts-equipe-dirigeante .title {
    font-size: 20px !important;
  }

  .rts-equipe-dirigeante .name-text {
    font-size: 16px !important;
  }

  .rts-equipe-dirigeante .description-text {
    font-size: 14px !important;
  }
}

/* Organigramme page responsive */
@media only screen and (max-width: 767px) {
  .organigramme-intro-text {
    font-size: 18px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .organigramme-intro-text {
    font-size: 22px !important;
  }
}
  .rts-equipe-dirigeante .intro-text {
    font-size: 20px !important;
  }

  .rts-equipe-dirigeante .separator-text {
    font-size: 19px !important;
  }

  .rts-equipe-dirigeante .title {
    font-size: 24px !important;
  }

  .rts-equipe-dirigeante .name-text {
    font-size: 18px !important;
  }

  .rts-equipe-dirigeante .description-text {
    font-size: 16px !important;
  }

