/* postagens styles */
#section-posts article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
#section-posts article img {
  width: 100%;
  max-width: 640px;
  max-height: 370px;
}
#section-posts article section h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--color-secondary);
}

@media screen and (min-width: 425px) {
  #section-posts article section {
    align-items: flex-start;
  }
}

@media screen and (min-width: 790px) {
  #section-posts {
    gap: 36px;
  }
  #section-posts article {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  #section-posts article img {
    width: 44.44vw;
  }
  #section-posts article:nth-child(odd) img {
    order: 2;
  }
}
