.neighbourhood-maincontent{
    width: 90%;
    margin: 1em auto auto auto;
    max-width: 78.125em;
}

.ribbon {
    display: inline-block;
    position: relative;
    background-color: #F9C74F; /* Yellow background */
    border-radius: 0.1875em 8px 8px 0px;
    padding: 0.625em 1.875em 0.625em 1.875em; /* Extra left padding for the fold effect */
    display: inline-flex;
    align-items: center;
    font-family: 'Arial', sans-serif;
    font-size: 1.125em;
    color: #000;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    top: 1.2em;
    left: -1.1875em;
}

.ribbon img {
    height: 1.5625em;
    width: 1.5625em;
    margin-right: 0.625em;
}

/* Folded corner effect on the left */
.ribbon::before {
    content: "";
    position: absolute;
    top: 2.9375em;
    left: 0;
    width: 0;
    height: 0;
    border-top: 20px solid #D9A440; /* Slightly darker shade for the fold */
    border-left: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.neighbourhood-two-column{
    display: flex;
    padding: 1.5em 2em 0em 2em;
}

.neighbourhood-two-column > * {
    flex: 1; /* Ensures equal width for all children */
    /* max-width: 50%; Optional: Prevents them from growing too wide */
    box-sizing: border-box; /* Ensures padding/borders are included in the width */
}

.neighbourhood_programs{
    width: fit-content;
}

.neighbourhood_programs p{
    margin: 0;
}

.neighbourhood_priority{
    width: fit-content;
}

.neighbourhood-priorities-badge{
    display: flex;
    flex-wrap: wrap;
    gap: .3em .5em;
}

.neighbourhood-priorities-badge .pointy-badge{
    margin-left: 0em;
}


.neighbourhood-maincontent .research-and-projects-content-goal{
    width: 100%;
    margin-bottom: 2em;
}

/* Media query for tablets */
@media (width <= 1000px) {

}

@media (width <= 600px) {
    .neighbourhood-two-column{
        flex-direction: column;
        padding: 0;
    }
}

/* Media query for mobile devices */
@media (width <=  480px) {
  
}