/* ==========================================================================
   Infobox DCE
   ========================================================================== */
.infobox-popup {
  position: relative;
  background: #fff;
  padding: 0;
  width: auto;
  max-width: 931px;
  margin: 20px auto;
  color: #444;
}
.infobox-popup--header,
.infobox-popup--content {
  padding: 35px;
  color: inherit;
}
.infobox-popup--header {
  background-color: #ffda1f;
  display: flex;
  flex-direction: column;
}
.infobox-popup--title {
  font-size: 30px;
  line-height: 1;
  word-break: break-word;
  font-weight: bold;
  color: inherit;
}
.infobox-popup--img {
  margin-bottom: 1em;
  display: flex;
  align-self: flex-end;
}
.infobox-popup--button,
.infobox-popup--button:hover,
.infobox-popup--button:focus,
.infobox-popup--button:active {
  color: inherit;
  font-weight: bold;
}

@media print, screen and (min-width: 521px) {
  .infobox-popup--header,
  .infobox-popup--content {
    padding: 35px 70px;
  }
  .infobox-popup--header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .infobox-popup--img {
    order: 2;
    margin-bottom: 0;
    display: block;
    align-self: unset;
  }
  .infobox-popup--title {
    font-size: 40px;
    line-height: 1.5;
  }
}
@media print, screen and (min-width: 740px) {
  .infobox-popup--title {
    font-size: 63px;
    line-height: 103px;
  }
}
