/**
 * Actualite - block home
 */

.paragraph--type--block:has(.block-actualite-teaser) {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 3rem;
}

.block-actualite-teaser .view-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.block-actualite-teaser .view-content > div {
  display: flex;
  flex: 1;
}

.block-actualite-teaser .view-content > div > article {
  width: 100%;
}


/**
 * Actualite - see all button
 */

.actualite__see-all {
  background-color: var(--primary);
  max-width: 345px;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1;
  transition: filter 0.3s ease;
}

.actualite__see-all::before {
  content: '';
  background: center / contain no-repeat url('../../images/actualite-teaser/icon-actu.svg');
  width: 95px;
  height: 85px;
  margin-bottom: 1rem;
  display: block;
}

.actualite__see-all:hover {
  filter: brightness(0.85);
}

@media screen and (min-width: 600px) {
  .actualite__see-all {
    margin: 0 auto;
  }
}

@media screen and (min-width: 700px) {
  .block-actualite-teaser .view-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1100px) {
  .block-actualite-teaser .view-content {
    display: flex;
    flex-direction: row;
  }

  .paragraph--type--block:has(.block-actualite-teaser) {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 1500px) {
  .paragraph--type--block:has(.block-actualite-teaser) {
    flex-direction: row;
  }

  .actualite__see-all {
    margin: unset;
  }
}
