.fgeba-pdf-facade {
  position: relative;
  display: block;
  width: 100%;
  height: min(78vh, 980px);
  min-height: 700px;
  overflow: hidden;
  background: #e5ebef;
  border: 1px solid #aebfca;
}

.fgeba-pdf-facade__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.fgeba-pdf-facade__launch {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  background: #e5ebef;
  border: 0;
  color: #123653;
  cursor: pointer;
  text-align: center;
}

.fgeba-pdf-facade__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  background: #123653;
  border-radius: 50%;
  color: #fff;
}

.fgeba-pdf-facade__icon::before {
  width: 22px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 2px;
  content: "";
}

.fgeba-pdf-facade__text strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
}

.fgeba-pdf-facade__text span {
  display: block;
  margin-top: 6px;
  color: #4c6477;
  font-size: 15px;
}

.fgeba-pdf-facade__launch:hover {
  background: #dbe4ea;
}

.fgeba-pdf-facade__launch:hover .fgeba-pdf-facade__icon {
  background: #1c6ca6;
}

.fgeba-pdf-facade__launch:focus-visible {
  outline: 3px solid #73b6e3;
  outline-offset: -5px;
}

.fgeba-pdf-facade--active .fgeba-pdf-facade__launch {
  display: none;
}

@media (max-width: 760px) {
  .fgeba-pdf-facade {
    height: 72vh;
    min-height: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fgeba-pdf-facade__launch {
    transition: none;
  }
}
