@media screen and (min-width: 992px) {
  #case > .content {
    background-image: url('../../assets/images/bg-3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 80vh;
    display: flex;
    justify-content: space-between;
  }

  #case > .content > .item {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  #case > .content > .item:not(:last-child) {
    border-right: 1px solid #ffffff66;
  }

  #case > .content > .item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(12px);
  }

  #case > .content > .item::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('../../assets/images/bg-2.jpg');
    opacity: 0;
    transition: opacity 500ms 200ms;
  }

  #case > .content > .item:hover::after {
    opacity: 1;
  }

  #case > .content > .item > .name {
    line-height: 56px;
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: clamp(1.125rem, 0.595rem + 0.86vw, 1.75rem);
    font-weight: 900;
  }

  #case > .content > .item > .alias {
    line-height: 42px;
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: clamp(1rem, 0.47rem + 0.86vw, 1.625rem);
    font-weight: 700;
  }
}

@media screen and (max-width: 991.98px) {
  #case > .content {
    background-image: url('../../assets/images/bg-3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 4vmax 4vmin;
    display: grid;
    gap: 4vmax;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
  }

  #case > .content > .item {
    box-shadow: 0 0 6px 0 #ffffff88;
    border-radius: 8px;
    padding: 8vw 0;
  }

  #case > .content > .item > .name {
    line-height: 52px;
    color: #ffffff;
    font-size: clamp(1rem, 0.62rem + 1.62vw, 1.625rem);
    font-weight: 900;
    text-align: center;

  }

  #case > .content > .item > .alias {
    line-height: 42px;
    color: #ffffff;
    font-size: clamp(0.875rem, 0.495rem + 1.62vw, 1.5rem);
    font-weight: 700;
    text-align: center;
  }
}
