* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.tiles {
  margin-top: 2rem;
}
.tiles .tiles-news-wrapper {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.tiles .tiles-news-wrapper .tile {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.tiles .tiles-news-wrapper .tile:nth-child(even) {
  flex-direction: row-reverse;
}
.tiles .tiles-news-wrapper .tile__image, .tiles .tiles-news-wrapper .tile__content {
  width: 50%;
}
.tiles .tiles-news-wrapper .tile__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tiles .tiles-news-wrapper .tile__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.tiles .tiles-news-wrapper .tile__content {
  background-color: #f5f5f5;
  line-height: 1.25em;
  padding: 5%;
}
.tiles .tiles-news-wrapper .tile__content-infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.tiles .tiles-news-wrapper .tile__content-infos h3 {
  border: none;
  margin: 0;
  margin-bottom: 1em;
  padding: 0;
  font-weight: 400;
  font-size: 1em;
}
.tiles .tiles-news-wrapper .tile__content-infos p {
  font-size: 0.75em;
  line-height: 1.25em;
}
.tiles .tiles-news-wrapper .tile__content-infos button {
  margin-top: 1em;
  font-size: 0.75em;
}
.tiles .tiles-news-wrapper .tile__button {
  padding: 0.5rem 1.5rem;
  background-color: #3f4549;
  color: white;
  border: none;
  cursor: pointer;
  align-self: start;
  border-radius: 3px;
}
.tiles .tiles-news-wrapper .tile__button:hover {
  background-color: #fdc13d;
  color: black;
}

@media (max-width: 768px) {
  .tiles .tiles-news-wrapper {
    grid-template-columns: 1fr;
  }
  .tile {
    flex-direction: column;
  }
  .tile__image, .tile__content {
    width: 100%;
  }
  .tile__image {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 550px) {
  .tiles .tiles-news-wrapper {
    grid-template-columns: 1fr;
  }
  .tiles .tiles-news-wrapper .tile {
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #fdc13d;
  }
  .tiles .tiles-news-wrapper .tile__image, .tiles .tiles-news-wrapper .tile__content {
    width: 100%;
  }
  .tiles .tiles-news-wrapper .tile__content {
    padding: 5%;
  }
  .tiles .tiles-news-wrapper .tile__image {
    aspect-ratio: 4/2;
  }
}/*# sourceMappingURL=ng-tiles.css.map */