/* Custom CSS for fixed aspect ratio */
    .fixed-aspect-ratio {
      position: relative;
      width: 100%;
      height: 0;
      padding-top: calc(75%); /* 4:3 Aspect Ratio (4 / 3 = 0.75 or 75%) */
      overflow: hidden;
    }
    .fixed-aspect-ratio img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

/* Optional styling for the title */
    .image-title {
      text-align: center;
      margin-top: 5px;
    }
