:root {
  --kg--color--default: #000000;
  /* Couleur par dÃ©faut */
  --kg--color--white: #ffffff;
  /* Couleur dite "blanc" */
  --kg--color--dark: #001C79;
  /* Couleur sombre du thÃ¨me */
  --kg--color--light: #C29008;
  /* Couleur claire du thÃ¨me */
  --kg--color--text: #595959;
  /* Couleur du texte par dÃ©faut (faite pour Ãªtre lisible) */
  --kg--color--outline: #E8E8E8;
  /* Couleur de bordures */
}

@media (min-width: 960px) {
  .kg-main {
    padding-top: 104px !important;
  }
}

@media (min-width: 960px) {
  .kg-main:not(.homepage) {
    padding-top: 230px !important;
  }
}

.kg-article__content-contenu-header{
  margin-top: 40px;
}

.kg-breadcrumb{
  margin-block: 0 var(--kg--spacing--large) !important;
}

.kg-home-specialiste {
    padding-block: 4rem;
}

.kg-home-specialiste__main-title {
    margin-bottom: 2.5rem;
}

.kg-home-specialiste__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.kg-home-specialiste__image {
    flex: 1;
    max-width: 50%;
}

.kg-home-specialiste__image figure {
    margin: 0;
}

.kg-home-specialiste__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.kg-home-specialiste__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.kg-home-specialiste__text-block {
    padding-left: 1.5rem;
}

.kg-home-specialiste__text-block h3 {
    font-size: var(--kg--h3--font-size, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.kg-home-specialiste__text-block p {
    line-height: 1.7;
    color: var(--kg--color-text, #333);
    margin: 0;
}

/* Bouton outline */
.kg-button--outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--kg--color-primary, #c9a227);
    background: transparent;
    color: var(--kg--color-text, #333);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: fit-content;
}

.kg-button--outline:hover {
    background: var(--kg--color-primary, #c9a227);
    color: #fff;
}

.kg-button--outline .kg-button__txt {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 959px) {
    .kg-home-specialiste__wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .kg-home-specialiste__image,
    .kg-home-specialiste__content {
        max-width: 100%;
        width: 100%;
    }
}