  .carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin: 2rem 0;
    overflow: hidden;
    width: 100%;
  }

  .carousel-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #003a64;
    background: #003a64;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease;

    &:hover,
    &:focus {
      background: #ccd8df;
      color: #003a64;
    }
  }

  .carousel-container {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    scroll-behavior: smooth;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .carousel-card {
    flex: 0 0 calc(33% - 1rem);
    max-width: calc(33% - 1rem);
    min-width: 250px;
    min-height: 600px;
    scroll-snap-align: start;
    padding: 1rem;
    background: #ccd8df;
    border-radius: 5px 50px 5px 5px;
    text-align: left;
    box-sizing: border-box;

    img {
      width: 100%;
      height: auto;
      max-height: 300px;
      object-fit: cover;
      display: block;
      margin: 15px auto;
      border-radius: 5px 50px 10px 10px;
    }

    h3 {
      font-size: 2rem;
      margin: 0.5rem 0;
      color: #003a64;

      a:link,
      a:visited {
        color: #003a64;
        text-decoration: none;
        transition: color 0.2s;
      }

      a:hover,
      a:focus {
        color: #4698cb;
        text-decoration: none;
      }
    }
  }

  @media (max-width: 768px) {
    .carousel-wrapper {
      gap: 1rem;
      margin: 1rem 0;
      overflow: hidden;
      width: 100%;
    }

    .carousel-card {
      flex: 0 0 100%;
      max-width: 100%;
      min-height: auto;

      img {
        max-height: 200px;
      }
    }

    .carousel-arrow {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }
  }

  @media screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-card {
      flex: 0 0 calc(50% - 1rem);
      max-width: calc(50% - 1rem);
    }
  }

}