.block-structure {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 410/472;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 12px;
}
.block-structure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 50%;
  margin-inline: auto;
  margin-bottom: var(--size-10);
}
.block-structure .structure-content {
  background-color: var(--bc-color-blanc);
  padding: var(--size-24);
  border-radius: var(--border-radius-medium);
}
.block-structure .structure-content a {
  text-decoration: none;
  cursor: pointer;
  width: 90%;
  display: inline-block;
  position: relative;
}
.block-structure .structure-content a:hover {
  color: var(--bc-color-corail-500);
}
.block-structure .structure-content a::after {
  content: "";
  position: absolute;
  right: -24px;
  background-image: url("../../../assets/img/icons/external-link.svg");
  background-repeat: no-repeat;
  width: var(--size-24);
  height: var(--size-24);
}/*# sourceMappingURL=block-structure.css.map */