/* Guide Section */
.guide {
  background: #ecf2d4;
  padding: 4rem 0;
  position: relative;
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  height: fit-content;
}
.guide-img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  height: 30vw;
}
.guide-text {
  width: fit-content;
  height: fit-content;
}
.guide-text h2 {
  font-size: 2rem;
  text-transform: uppercase;
}

@media (max-width: 780px) { /* Tablette */
  .guide-grid {
    display: flex;
    flex-flow: column wrap;
    width: 100%;
    height: 100%;
    padding: 2em;
  }

  .guide-img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    height: auto;
  }
}