.our-blog-container {
    margin-top: 5em;
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
}
.our-blog-text {
    font-size: 48px;
    font-weight: 700;
    color: #F0E3CA;
}
.all-blog-container {
    margin-top: 2em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1em;

}

.our-blog-img-description-container {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    gap: 0.8em;
  
}   

.our-blog-img-container {
    position: relative;
    display: flex;
}
.our-blog-img-container img {
    max-width: 100%;
    object-fit: contain;
}

.topic-date {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1em;
    font-size: 16px;
    font-weight: 700;
}
.description-text {
    font-size: 20px;
    text-align: center;
}

.topic-text{
    position: relative;
}
.topic-text::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 25px;
    background-color: #F0E3CA;
    right: -10px;
}