.fr-kanban {
  display: flex;
  position: relative;
  height: 580px;
  justify-content: center;
  align-items: center;
}

.fr-kanban__background {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 96/29;
  z-index: -1;
}

.fr-kanban__content {
  position: absolute;
  display: flex;
  width: 700px;
  justify-content: center;
  align-items: center;
  bottom: 56px;

  color: #462b00;

  text-align: center;
  font-kerning: none;
  font-feature-settings: 'liga' off;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

.fr-section {
  padding: 16px 32px;
}

.fr-title {
  color: var(--Gray-900-NormalTxt, #333);
  text-align: center;
  position: relative;
  /* text-4xl */
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  padding: 0 0 18px 0;
  margin: 32px 0;

  &:after {
    content: '';
    bottom: 0px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: #333;
    z-index: 1;
  }
}

.fr-inventory {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.fr-inventory__title {
  flex: 0 0 100%;
  color: var(--Gray-900-NormalTxt, #333);
  text-align: center;
  font-kerning: none;
  font-feature-settings: 'liga' off;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 0 0 24px 0;
}

.fr-inventory__image {
  height: 444px;
  flex: 0 0 444px;
  aspect-ratio: 1 / 1;
  margin-right: 24px;
  border-radius: 8px;
}

.fr-inventory__button {
  position: relative;
  display: flex;
  background: #bf0000;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
}

.fr-inventory__button--disabled {
  pointer-events: none;
  cursor: pointer;
}

.fr-inventory__button:hover {
  text-decoration: none;
}

.fr-inventory__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.fr-inventory__service {
  background: #fff;
  display: flex;
  padding: 6px 8px 4px 8px;
  border-radius: 5px;
  align-items: center;
}

.fr-inventory__shipping {
  color: var(--Crimson, #bf0000);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.fr-inventory__text {
  color: var(--White, #fff);
  font-kerning: none;
  font-feature-settings: 'liga' off;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin-top: 8px;
}

.fr-inventory__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  margin-left: 8px;
  flex: 0 0 18px;
}

.fr-inventory__area {
  display: flex;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: inset 0px 0px 0px 1px #fff;
  color: var(--White, #fff);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-top: 8px;
}
.fr-inventory__areatitle {
  flex: 0 0 auto;
}
.fr-inventory__areadesc {
  flex: 0 1 auto;
  margin: 0;
}

.fr-inventory__sold {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--black-70, rgba(0, 0, 0, 0.7));

  color: var(--White, #fff);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;

  z-index: 1;
}

.fr-inventory__button--disabled .fr-inventory__sold {
  display: flex;
}
