/**
 * CMS content list styles – plain <ul><li> from the editor get consistent styling
 * without needing classes in the CMS.
 */

/* Unstyled lists in WYSIWYG content (no bullets, no indent) */
.c-wysiwyg ul,
.c-card-icon ul,
.c-professionals ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1rem;
}

.c-wysiwyg ul li,
.c-card-icon ul li,
.c-professionals ul li {
  margin-bottom: 0.5rem;
}

/* Heart icon before each list item in WYSIWYG (CMS can't add the icon) */
/*.c-wysiwyg ul li::before {*/
/*  display: inline-block;*/
/*  font-family: "Font Awesome 6 Pro";*/
/*  font-weight: 900;*/
/*  content: "\f004";*/
/*  color: var(--bs-primary-300, #baa3ad);*/
/*  margin-right: 1rem;*/
/*}*/

/* Professionals section: no hearts, bold labels in secondary color */
.c-professionals .c-wysiwyg ul{
    margin-top: 1rem;
}
.c-professionals .c-wysiwyg ul li{
    padding-left: 2rem;
    position: relative;
}
.c-professionals .c-wysiwyg ul li::before{
    color: rgb(165, 168, 151);
    margin-right: 0px;
    position: absolute;
    left: 0px;
    top: 2px;
}

.c-professionals .c-wysiwyg ul li strong {
  color: var(--bs-secondary, #485452);
}

.c-professionals .c-wysiwyg ul li {
  margin-bottom: 0.75rem;
}

.c-professionals .c-wysiwyg ul li:last-child {
  margin-bottom: 0;
}

.c-wysiwyg ul li:last-child,
.c-card-icon ul li:last-child,
.c-professionals ul li:last-child {
  margin-bottom: 0;
}

/* Nested lists: keep unstyled, add slight indent for hierarchy */
.c-wysiwyg ul ul,
.c-card-icon ul ul,
.c-professionals ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.c-wysiwyg ul ul li,
.c-card-icon ul ul li,
.c-professionals ul ul li {
  margin-bottom: 0.25rem;
}

/* Make quote pattern softer without fading content */
.l-section--pattern {
  position: relative;
}

.l-section--pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  pointer-events: none;
  z-index: 1;
}

.l-section--pattern .container {
  position: relative;
  z-index: 2;
}

/* Footer partner logos */
.c-footer-logos {
  text-align: center;
}

.c-footer-logos .c-footer-logo {
  min-width: 0;
}

.c-footer-logos .c-footer-logo__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.c-footer-logos .c-footer-logo--wide .c-footer-logo__img {
  max-height: 60px;
}

.c-footer-logos .c-footer-logo--compact .c-footer-logo__img {
  min-width: 96px;
  min-height: 32px;
  max-height: 48px;
}

.c-footer-logos .c-footer-logo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

/*
 * pagina-met-foto: theme uses absolute + height:100% + cover on .l-section__professionals-image (lg+).
 * Override only here: aspect-ratio 744×480, contain, height auto so the image stays in the left band
 * without breaking the section overlay (no extra wrapper).
 */
.c-pagina-met-foto.l-section--professionals .l-section__professionals-image {
  aspect-ratio: 744 / 480;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 991.98px) {
  .c-pagina-met-foto.l-section--professionals .l-section__professionals-image {
    width: 100%;
    max-width: 744px;
    height: auto;
    margin-inline: auto;
  }
}

@media (min-width: 992px) {
  .c-pagina-met-foto.l-section--professionals::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    max-width: 744px;
    height: 100%;
    background-color: #f2eae3;
    z-index: 0;
    pointer-events: none;
  }

  .c-pagina-met-foto.l-section--professionals .l-section__professionals-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    max-width: 744px;
    height: auto;
    max-height: 100%;
    z-index: 1;
  }
}