body {
    background: linear-gradient(360deg, #D0944B 0%, #C3AB89 100%);

    .header *,
    .footer *,
    .mobile-footer * {
        color: var(--main-color) !important;
    }

    li.active {
        border-bottom: 1px solid var(--main-color) !important;
    }
}

main {
    min-height: 100vh;
    padding: 7rem 15px 70px;
    margin-bottom: 50px;
    padding-top: 7rem;

    @media (min-width: 1200px) {
        padding: 170px 25px 70px;
    }

    .filter {
        display: flex;
        justify-content: space-between;
        flex-direction: column-reverse;
        gap: 0.5rem;

        @media (min-width: 768px) {
            flex-direction: row;
        }

        select {
            padding: 7px 30px 7px 10px;
            background-color: transparent;
            border: 1px solid var(--main-color);
            font-size: 12px;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url('/assets/icons/arrowSelect.svg');
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 12px;
            outline: none;

            option {
                color: var(--white-color) !important;
                background-color: var(--main-color);
            }
        }

        .search {
            border: 1px solid var(--main-color);
            font-size: 12px;
            width: 100%;
            display: flex;

            @media (min-width: 768px) {
                width: 250px;
            }

            input {
                padding: 7px 12px;
                background-color: transparent;
                outline: none;
                border: none;
                font-size: 12px !important;
                flex-grow: 1;
            }

            button,
            a {
                padding: 7px 10px;
                background: transparent;
                border: none;
                cursor: pointer;
            }



        }
    }

    & .card-list {
        display: flex;
        flex-wrap: wrap;
        gap: 25px 10px;
        padding-top: 2rem;

        @media (min-width: 992px) {
            gap: 65px 10px;
        }

        & .card {
            display: flex;
            flex-direction: column;

            @media (min-width: 768px) {
                width: calc((100% - 20px) / 2);
            }

            @media (min-width: 992px) {
                width: calc((100% - 20px) / 3);
            }
            &.no-link {
                cursor: default;
                pointer-events: none !important;
            }

            img {
                width: 100%;
                object-fit: cover;
                aspect-ratio: 1/1;
            }

            .card-info {
                border-bottom: 1px solid var(--main-color);
                padding: 0.4rem 0;
                margin-bottom: 1rem;

                span {
                    font-size: 16px;
                    font-family: 'readex', serif;
                    font-weight: 300;
                    padding: 0.1rem 0;
                    flex-grow: 1;
                    text-align: center;
                }

                span:nth-child(1) {
                    border-right: 1px solid var(--main-color);
                }

                span:nth-child(3) {
                    border-left: 1px solid var(--main-color);
                }
            }

            h4 {
                text-align: center;

                @media (max-width: 768px) {
                    font-size: 40px;
                    line-height: 100%;
                }
            }

            .card-description {
                font-size: 14px;
                color: var(--main-color);
                text-align: center !important;
                margin-top: 0.5rem;
                line-height: 1.4;
                font-family: 'readex', serif;
                font-weight: 300;
                opacity: 0.9;
            }
        }
    }
}

.mobile-footer {
    border-top: 1px solid var(--main-color);
}