/* for main title */
.download-page .main-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.download-page .main-title h1{
    font-family: "Delivery Condensed";
    font-size: 46px;
    font-weight: 900;
    line-height: 28px;
    font-style: normal;
    text-align: left;
    color: #d40511;
    text-transform: uppercase !important;
    margin: 20px 0px;

}
.download-page .story-counts{
    font-family: "Delivery";
    color: #4B5055;
}

/* for filters */
.download-page .filter-area{
    display: flex;
    gap: 15px;

}
.download-page .filter-area .search-input-wrapper{
    max-width: 235px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #b5b5b5;
}
.download-page .filter-area .search-input-wrapper .search-input {
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 5px
}
.download-page .filter-area .search-input-wrapper .search-icon {
    width: 50px;
    text-align: center;
}
.download-page .filter-area .search-input-wrapper .search-icon svg{
    width: 12px;
}

/* for post listing */
.download-page .post{
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #f5f5f5;
    padding: 20px 0;
    align-items: center;
    text-decoration: none;
}
.download-page .post:last-of-type{
    border-bottom: 0px;
}
.download-page .post .img{
    /* width: 75px; */
    width: 150px;
    height: 180px;
    flex-shrink: 0;
}
.download-page .post .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.download-page .post .content{
    width: 100%;
}
.download-page .post .content .post-title{
    color: #212529;
    /* font-size: 16px; */
    font-size: 24px;
    font-family: 'Delivery Condensed';
    margin-bottom: 8px;
    font-weight: bold;
}
.download-page .post .content .post-description {
    /* font-size: 12px; */
    font-size: 18px;
    color: #4B5055;
}
.post-listing {
    margin-top: 20px;
}
@media screen and (max-width: 640px) {
    .download-page .main-title h1{
        font-size: 30px;
    }
    .download-page .filter-area .search-input-wrapper {
        width: 50%;
    }
    .download-page .filter-area .all-bookmarks-filter-dropdown{
        padding: 0;
    }
    .download-page .filter-area .all-bookmarks-filter-dropdown .dropdown-toggle {
        text-align: center;
    }

    .download-page .post {
        align-items: flex-start;
    }

    .download-page .post .img{
        width: 85px;
        height: 85px;

    }
    .download-page .post .content .post-title{
        font-size: 16px;
    }
    .download-page .post .content .post-description{
        font-size: 12px;
    }

    
}