﻿.page-title {
    font-family: Inter;
    font-weight: 600;
    font-size: 32px;
    line-height: 42px;
    color: #000000;
}

.page-content-area {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    margin-bottom: 32px;
}

.page-filters-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 12px;
    flex-wrap: wrap;
    row-gap: 32px;
}

.page-tab-filter {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    width: max-content;
    max-width: 100%;
}

    .page-tab-filter::-webkit-scrollbar {
        display: none;
    }

    .page-tab-filter ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style: none;
        column-gap: 28px;
    }

        .page-tab-filter ul li a {
            font-family: Inter;
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #344054;
            text-decoration: none;
        }

            .page-tab-filter ul li a.active {
                font-weight: 700;
            }

.page-search-filter {
    position: relative;
}

.input-search-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    left: 14px;
}

.page-search-filter input {
    padding: 10px 14px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
    border: 1px solid #D0D5DD;
    border-radius: 0;
    padding-left: 40px;
    outline: none;
    box-shadow: none;
}

.page-list-and-filters-area {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}


/*Page List Card*/

.page-list-card {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    box-shadow: 0px 6.15px 4.92px 0px #00000007;
}

.page-list-card-text {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.page-list-card-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 16.65px;
    line-height: 27.75px;
    color: #000000;
    text-align: start;
    padding: 0 20px;
}

.page-list-card-info-and-buttons {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: space-between;
    padding: 12px 20px;
    padding-left: 20px;
    padding-top: 0;
    flex-wrap: wrap;
    row-gap: 12px;
}

.page-list-card-buttons a {
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    background: #c0c0c0;
    transition: .4s;
}

    .page-list-card-buttons a:hover {
        transition: .4s;
        background: #5e5d5d;
    }

.page-list-card-buttons {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.page-list-card-info {
    font-family: Inter;
    font-weight: 600;
    font-size: 14.8px;
    line-height: 100%;
    color: #828282;
}

.page-list-card-image {
    padding: 22px 11px;
    padding-bottom: 0;
}

    .page-list-card-image, .page-list-card-image img {
        aspect-ratio: 2/1.5;
        object-fit: contain;
    }

    @media only screen and (max-width: 767px)
    {
        .page-list-card-info-and-buttons
        {
            padding-left: 24px;
        }

        .page-filters-area {
            flex-direction: column;
            align-items: start;
        }

        .page-search-filter {
            width: 100%;
        }

            .page-search-filter input {
               width:100%;
            }
    }