.rollover-container {
    @media screen and (max-width: 749px) {
        padding: 0 20px;
    }

    .rollover-wrapper {
        display: flex;
        justify-content: center;

        .rollover-items {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            width: 100%;

            @media screen and (max-width: 749px) {
                flex-direction: column;
                align-items: center;
            }

            .rollover-item {
                position: relative;
                flex: 1;
                overflow: hidden;
                text-decoration: none;
                cursor: pointer;

                &:hover {
                    .rollover-content {
                        transform: translateY(-50%);
                    }
                }

                .rollover-image {
                    width: 100%;
          background: #000;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;

          picture, img {
                            width: 100%;
                            height: 100%;
                        }

          img {
            display: block;
            object-fit: contain;
            object-position: center;
            max-width: 100%;
            max-height: 100%;
                    }
                }

                .rollover-content {
                    position: absolute;
                    top: 50%;
                    left: 0;
                    right: 0;
                    margin: 0 auto;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 15px;
                    justify-content: center;
                    height: 100%;
                    transition: all 0.3s ease-in-out;
                    padding: 0 45px;

                    @media screen and (max-width: 749px) {
                        padding: 0 20px;
                    }

                    .rollover-subheading {
            color: #fff;
                        text-align: center;
                        font-size: 14px;
                        letter-spacing: 1px;
                        text-transform: uppercase;
                    }

                    .rollover-heading {
            color: #fff;
                        text-align: center;
                        font-size: 24px;
                        font-weight: 700;
                        letter-spacing: 1px;
                        text-transform: uppercase;
                        margin-bottom: 25px;
                    }

                    .rollover-description {
            color: #fff;
                        text-align: center;
                        font-size: 14px;
                        line-height: 150%;
                        min-height: 90px;
                    }
                }
            }
        }
    }
}
