.projects__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.projects__card img {
    max-height: 350px;
    border-radius: 10px;
}

.projects__text-text {
    font-size: 16px;
}


.projects {
    .projects__title {
        .projects-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 32px;
        }
    }

    .projects__list {
        .projects-container {
            display: flex;
            gap: 30px;

            @media (max-width: 1023px) {
                flex-direction: column;
            }
        }
    }

    .projects__item {
        .projects--default {
            min-width: 50%;
            width: 50%;

            >img,
            >video {
                border-radius: 10px;
                margin-bottom: 20px;

                @media (max-width: 1023px) {
                    object-fit: cover;
                    width: 100%;
                    max-height: 485px;
                    aspect-ratio: 388/485;
                    border-radius: 10px;
                }
            }

            @media (max-width: 1023px) {
                min-width: 100%;
                width: 100%;
            }
        }

        .projects--mini {
            max-width: 418px;

            @media (max-width: 1023px) {
                border-radius: 10px;
                max-width: calc(50% - 15px);
            }

            // width: 40%;
            >img,
            >video {
                margin-bottom: 20px;
                border-radius: 5px;
                object-fit: cover;

                @media (max-width: 1023px) {
                    margin-bottom: 10px;
                    aspect-ratio: 334/229;
                }
            }
        }

        .projects-more {
            display: flex;

            // gap: 30px;
            .projects__wrapper {
                width: 100%;
                // max-width: calc(50% - 15px);
            }
        }

        .projects__wrapper {
            @media (max-width: 1023px) {
                flex-direction: column;
            }
        }

        .projects-info {
            display: flex;
            flex-direction: column;
        }
    }

    .projects__date {
        color: gray;
    }

    .projects__link {
        width: fit-content;
        display: flex;
        gap: 10px;
        align-items: center;
        margin-top: 20px;

        .projects--border {
            border-bottom: 1px solid orange;
        }
    }
}

.projects__swiper {
    width: 100%;
    max-width: 38vw;
    height: auto;

    @media (max-width: 1023px) {
        max-width: 100%;
    }

    .projects-swiper {
        max-width: 860px;
    }

    .projects-navigation {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 114px;
        height: 30px;
        margin-left: auto;
        margin-top: 30px;
        // margin-right: 114px;
    }

    .projects-button-next,
    .projects-button-prev {
        .projects::after {
            font-size: 30px !important;
            color: $orange !important;
        }
    }
}

.tag-reverse {
    background-color: #F8B324 !important;
    color: #191A1C;
}

.projects__tags {
    display: flex;
    flex-direction: column;
}

.btn {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.2;
}

@media only screen and (max-width : 576px) {
    .projects__card img {
        max-height: 250px;
    }
}