/* ── Country Leadership Section block ───────────────────────────────────── */
.olixir-country-leadership-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background-color: #0c0b0a;
  background-image: var(--desktop-bg, none);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}


.olixir-country-leadership-section__inner {
  position: relative;
  z-index: 1;
  min-height: 90vh;

  display: flex;
  align-items: flex-start;
  padding: 0;
  
  h2 {
    margin: 0;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    width: 50%;
    position: relative;

    &::before, &::after {
      position: absolute;
      left: 0;
      content: '';
      display: block;
      width: 100%;
      height: calc(50% - 28px);
    }
    &::before {
      background: url('../img/bg-title-x-top.png') no-repeat center bottom;
      background-size: contain;
      top: 0;
    }
    &::after {
      background: url('../img/bg-title-x-bottom.png') no-repeat center top;
      background-size: contain;
      bottom: 0;
    }
    /*
    font-size: 1px;
    color: rgba(255, 255, 255, 0);
    background: url('../img/title-leadership.png') no-repeat center center;
    background-size: contain;
    height: 100%;
    */
  }
}

.olixir-country-leadership-section__people {
  width: 80%;
  height: 100%;
  min-height: 80vh;
  display: flex;
}

.olixir-country-leadership-section__person {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
}

.olixir-country-leadership-section__person-name, 
.olixir-country-leadership-section__person-title {
    text-align: center; 
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.olixir-country-leadership-section__person-name {
  font-size: 1rem;
}

.olixir-country-leadership-section__person-title {
    font-size: 0.9rem;
    font-weight: 200;
}

@media (max-width: 768px) {
  .olixir-country-leadership-section {
    background-image: var(--mobile-bg, var(--desktop-bg, none));
  }
}

/* ── Editor preview ─────────────────────────────────────────────────────── */

.editor-styles-wrapper .olixir-country-leadership-section.is-editor-preview {
  width: min(100%, 920px);
  margin-inline: auto;
  min-height: 60vh;
  background-color: #1a1713;

  .olixir-country-leadership-section__person .components-text-control__input {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
  }
}

.editor-styles-wrapper .olixir-country-leadership-section__add-row {
  margin-top: 1.5rem;
}


@media (max-width: 768px) {
  .olixir-country-leadership-section {
    min-height: 100vh;
    align-items: flex-start;
  }


  .olixir-country-leadership-section__inner {
    position: relative;
    min-height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    
    h2 {
      width: 65%;
      margin: 13vh auto 0 auto;
      min-height: 30vh;
    }
  }

  .olixir-country-leadership-section__people {
    min-height: auto;
    width: 100%;
  }

  .olixir-country-leadership-section__person {
    margin-bottom: 3rem;
  }

}
