/**
 *  En un clic wrapper - Paragraph
 */

 .en-un-clic__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 9;
  padding: 2rem;
  margin: -24px auto 0 auto;
  width: fit-content;
}

.en-un-clic__wrapper-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.en-un-clic__wrapper-items a {
  color: var(--neutral);
  text-decoration: none;
}

.en-un-clic__wrapper-items a:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
}

@media (min-width: 500px) {
  .en-un-clic__wrapper-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .en-un-clic__wrapper-items a:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: auto;
  }
}

@media (min-width: 1100px) {
  .en-un-clic__wrapper {
    flex-direction: row;
    margin: -4rem auto 0;
    padding: inherit;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }

  .en-un-clic__wrapper-items {
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    padding: 2rem 2.5rem;
  }
}

@media (min-width: 1400px) {
  .en-un-clic__wrapper {
    margin: -8rem auto 0;
  }
}

