.rss-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.rss-carousel-wrapper {
    display: flex;
    gap: 35px; /* Space between items */
    transition: transform 0.5s ease;
}

/* Default for Desktop: Show 3 items */
.rss-item {
    flex: 0 0 calc((100% / 3) - (35px * 2 / 3)); /* 3 items per row, accounting for 2 gaps */
    box-sizing: border-box;
    padding: 25px;
    background-color: #F3F4EF;
	display: flex;
    flex-direction: column;
    align-items: center;
	height: fit-content;
}

.rss-item-title {
	text-align: center;	
}

.rss-item-date {
    font-style: italic;
    font-size: smaller;	
}

.rss-item-description {
	margin-top: 25px;
    margin-bottom: 28px;	
}

/* Tablet: Show 2 items */
@media (max-width: 1024px) {
    .rss-item {
        flex: 0 0 calc((100% / 2) - 35px); /* 2 items per row, accounting for one gap */
    }
}

/* Mobile: Show 1 item */
@media (max-width: 768px) {
    .rss-item {
        flex: 0 0 100%; /* 1 item per row on mobile */
    }
}

.rss-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	background-color: transparent;
    color: #fff;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 10;
}

.rss-carousel-arrow.left {
    left: -60px;
}

.rss-carousel-arrow.right {
    right: -60px;
}

.rss-svg {
	width: 24px;
	height: auto;
	fill: #306183;
}
