.single-news-container {
display: flex;
flex-direction: column;
max-width: 1200px;
z-index: 2;
padding-bottom: 100px;
margin: auto;
} .single-news-item {
margin: 60px auto;
display: flex;
flex-direction: row-reverse;
width: min(75vw, 1200px);
height: auto;
justify-content: space-between;
align-items: center;
gap: 5%;
overflow: hidden;
}
.news-text {
display: flex;
flex-direction: column;
width: 50%;
gap: 10px;
}
.single-news-thumbnail {
width: 45%;
height: 250px; overflow: hidden;
position: relative;
}
.single-news-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
display: block; }
.single-news-title a {
color: rgba(20, 71, 56, 0.8);
}
.single-news-date {
color: rgba(20, 71, 56, 0.8);
} @media (max-width: 767px) {
.single-news-item {
flex-direction: column;
padding: 8vw 4vw;
width: 100%;
margin: auto;
}
.single-news-thumbnail {
width: 100%;
padding-bottom: 10px;
}
.news-text {
width: 100%;
}
}     .individual-news-item {
display: flex;
padding: 100px 40px;
margin: auto;
flex-direction: column;
max-width: 1200px;
overflow: hidden;
}
.individual-news-text {
display: flex;
flex-direction: column;
width: 100%;
gap: 10px;
}
.individual-news-date {
color: rgba(20, 71, 56, 0.8);
}
.individual-news-content p {
display: flex;
flex-direction: column;
padding: 5px 0px;
}