.concept-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 6px solid #f58220;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.concept-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px; /* optional: inner rounding */
  }

  ul.no-bullets {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
  }

  html.is-animating .transition-fade {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
  }
  
  html.is-leaving .transition-fade {
    opacity: 0;
    transform: translateY(-50px);
  }
