.initiatives_post {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

/* Initiatives styling */
.initiatives_post_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  
}

/* Styling for the left and right containers in each row */
.initiatives_post_container_l,
.initiatives_post_container_r,
.initiatives_post_container_l_1 {
 
    flex: 1;
}

.initiatives_post_container_r_image {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
		align-self:center;
    max-width: 200px;
}

/* First row layout on larger screens */
.initiatives_post_container_l_1 {
    flex: 2; /* Take a larger portion of the row */
}

.initiatives_post_container_r_image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}

/* Button styling */
.initiatives_button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #215f24;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.initiatives_button:hover {
    background-color: #ae7b26;
}

/* Responsive styling */
@media (max-width: 1024px) {
    /* Tablet view */
    .initiatives_post_container {
        flex-direction: column;
    }

    .initiatives_post_container_r_image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Mobile view */
    .initiatives_post_container {
        flex-direction: column;
    }

    .initiatives_post_container_l,
    .initiatives_post_container_r,
    .initiatives_post_container_l_1,
    .initiatives_post_container_r_image {
        max-width: 100%;
    }

    .initiatives_button {
        padding: 8px 16px;
        font-size: 12px;
    }
}
.initiative_search_result{
	padding: 15px;
}

.initiative_search_results .initiative_search_result:nth-child(odd) {
   background: #e5e5e5;
}