.post_query_section {
    & .section_inner {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3rem;
        margin-bottom: 5rem;

        @media (max-width: 991px) {
            flex-direction: column;
        }

        & .post_block {
            position: relative;
            border-radius: 4rem;
            overflow: hidden;
			
			@media (min-width: 992px) {
				width: calc(33.33% - 2rem);
				height: 50rem;
			}
			
			@media (max-width: 991px) {
				width: 100%;
				height: 45rem;
			}
            
            & .post_overlay {
                position: absolute;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                top: 0;
                left: 0;
                margin: 0;
                padding: 5rem;

                & h3, & p {
                    width: 100%;
                    text-align: center;
                    color: var(--white);
                }
                
                & h3 {
                    font-size: 2rem;
                    font-weight: 700;
                    margin: 0 0 2rem;
                }

                & p {
                    font-size: 1.6rem !important;
                    font-weight: 300 !important;
                    margin: 0 0 3rem;
					
					& span {
						font-size: 1.6rem !important;
						font-weight: 300 !important;
						color: inherit;
					}
                }
            }

            & img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }
    }

    .call_to_action_buttons {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}