.carousel {
    width: 100wh;
    max-width: 1920px;
    overflow: hidden;
    position: relative;
    background-color: #EBE5D7;
    padding: 100px;
  }

  .carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-item {
    min-width: calc(25% - 80px);
    /* Adjust for 100px margin, 5 items */
    box-sizing: border-box;
    margin-right: 100px;
    /* Add 100px spacing between items */
    color: #333333;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .carousel-item {
      min-width: 200px;
      margin-right: 20px;
    }
    .article-content.left {
      width: 90% !important;
      margin-left: 10% !important;
    }
    .article-content.right {
      width: 90% !important;
    }

  }

  .carousel-item:last-child {
    margin-right: 0;
    /* No margin for the last item */
  }

  .item-text {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
  }