﻿.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-title-and-search-filter {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: space-between;
    row-gap: 12px;
}

.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 Card*/

.page-list-card-link {
    text-decoration: none;
}


.page-list-card-text-area {
    padding: 20px 0;
}

.page-list-card-image {
    position: relative;
}

    .page-list-card-image::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(7.58deg, rgba(0, 0, 0, 0.9) 4.38%, rgba(0, 0, 0, 0) 45.73%);
    }

    .page-list-card-image, .page-list-card-image img {
        aspect-ratio: 1/1.1;
        object-fit: cover;
    }

        .page-list-card-image img {
            filter: grayscale(1);
        }

.page-list-card-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}








@media only screen and (max-width: 767px) {
    .page-title-and-search-filter {
        flex-direction: column;
        align-items: start;
    }

    .page-search-filter {
        width: 100%;
    }

        .page-search-filter input {
            width: 100%;
        }
}
