.post_card {
    display: flex;
    margin: 10px 0;
    padding: 10px;
    box-shadow: 0 0 3px 0px #0000002d;
    border-radius: 10px;
    cursor: pointer;
}

.post_card:hover {
    box-shadow: 0 0 8px 0px #0000002d;
}

.search_bar {
    top: 0;
    position: sticky;
    margin: 15px 0;
}

.text_section {
    margin: 0 15px;
    max-height: 145px;
    overflow: auto;
    padding: 0 5px;

}

.image_section img {
    position: relative !important;
    max-width: 200px;
    height: auto !important;
    width: auto !important;
}

.title {
    font-size: 18px;
    font-weight: 400;
}

.date {
    font-size: 13px;
    color: grey;
    font-weight: 400;
}

.subtitle {
    margin-top: 8px;
    width: 100%;

}

.customSearch input {
    height: 45px;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    width: 100%;
}

.loader svg circle {
    fill: var(--teritary-text);
}

.btnSection {
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

@media(max-width: 768px) {
    .post_card {
        display: flex;
        flex-direction: column;
    }

    .image_section img {
        max-width: 100%;
        height: auto !important;
        width: auto !important;
        border-radius: 10px;
    }

    .text_section {
        margin: 10px 0;
        max-height: 205px;
    }
}