.johnsteel-conseils {
  margin-block: 5rem;
  .container {
    background: linear-gradient(
      333deg,
      hsl(344, 69%, 37.25%),
      hsl(341.8, 27.7%, 18%)
    );
    color: white;
    padding: 4rem;
    border-radius: 25px;
  }
  article {
    display: grid;
    grid-template-columns: 200px 1fr;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;

    .johnsteel-conseil-title {
      color: var(--primary-dark);
    }

    .johnsteel-conseil-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      aspect-ratio: 1;
      border: 2px solid var(--primary);
    }

    .johnsteel-conseil-job {
      text-align: center;
      line-height: 1.1;
      transform: rotate(-3deg);
    }
    .johnsteel-conseil-job.author {
      font-size: 1.5rem;
      margin-bottom: 5px;
      color: white;
      font-weight: 400;
    }

    .johnsteel-conseil-description {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.8;
    }
  }
}

@media (max-width: 768px) {
  .johnsteel-conseils .container {
    padding: 2rem;
  }

  .johnsteel-conseils article {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .johnsteel-conseils article .johnsteel-conseil-image {
    text-align: center;
  }

  .johnsteel-conseils article .johnsteel-conseil-image img {
    display: block;
    max-width: 200px;
    margin: 0 auto 20px;
  }

  .johnsteel-conseils article .johnsteel-conseil-job {
    transform: none;
  }
}
