/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.corporation-assets {
  position: relative;
  padding: 0 0 100px;
}
.corporation-assets::after {
  z-index: -2;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 200px;
  background-color: #212121;
}
.corporation-assets__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  margin: auto;
}
.corporation-assets__asset-banner {
  flex-grow: 1;
  flex-shrink: 0;
  position: relative;
  width: 100%;
}
.corporation-assets__asset-banner::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/assets/image/book-shadow.png");
  background-size: contain;
  transform: scale(1.2);
  transform-origin: left top;
  user-select: none;
  pointer-events: none;
}
.corporation-assets__asset-banner-title {
  position: absolute;
  top: 20px;
  left: 40px;
  color: hsl(0, 0%, 100%);
  width: 100px;
  font-weight: 300;
}

.corporation-asset {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  padding: 2em;
  width: 100%;
  min-height: 250px;
  color: hsl(0, 0%, 0%);
  background-color: hsl(0, 0%, 100%);
}
.corporation-asset svg {
  fill: currentColor;
}
.corporation-asset.-orange {
  color: hsl(0, 0%, 100%);
  background-color: #f58220;
}
.corporation-asset__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 32px;
  line-height: 2rem;
  font-weight: 600;
}
.corporation-asset__date {
  margin-top: auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 360px) {
  .corporation-assets__wrapper {
    padding: 0 3em;
  }
}
@media screen and (min-width: 862px) {
  .corporation-assets__wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin: unset;
    width: 100%;
    padding: 0 3em;
  }
  .corporation-assets__asset-banner {
    max-width: 350px;
  }
}
@media screen and (min-width: 1400px) {
  .corporation-assets__asset-banner {
    max-width: 400px;
  }
}