
.news-container {
    display: flex;
    align-items: flex-start;
    gap: 66.667px;
    align-self: stretch;
}

.news-article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 44.444px;
    flex: 1 0 0;
}

.news-body + h3 {
    font-size: var(--font-size-20);
}

.news-body ~ .contact-container {
   flex-direction: row!important;
   gap: 40px;
}

.news-body ~ .contact-container .contact + .contact {
  margin-top: 0px;
}

.news-image-container {
    position: relative;
}

.news-image-container img {
    max-width: 100%;
    height: auto;
}

.news-content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17.778px;
    align-self: stretch;
}
.news-categories {
    gap: 8px;
    position: absolute;
    bottom: 0%;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
}

.news-category {
    border-radius: 38.889px;
    background: rgba(0, 0, 0, 0.53);
    backdrop-filter: blur(1.9999998807907104px);
    display: flex;
    padding: 2px 8px;
    align-items: flex-start;
}

.news-category .badge {
    font-size: 14px;
}
.news-list-category-item .badge {
  --bs-badge-padding-x: 0.35em;
  opacity: 0.7;
}

.news-category .badge:focus {
    outline: 3px solid var(--Red);
    outline-offset: 2px;
}

.news-categories .news-category:nth-child(n+4) {
    display: none;
}

.categories-container .news-list-category-item {background-color: var(--Grey)!important; }
.categories-container .news-list-category-item .badge {font-size: var(--font-size-16);color: var(--Black)!important;}



