.cbc-carousel {
    width: 100%;
    overflow: hidden;
}

.cbc-slide {
    display: flex;
    justify-content: center;
}

.cbc-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(198px, 1fr));
  grid-auto-rows: auto;
  gap: 20px;
	max-width: 92%;
    margin: auto;
	padding-bottom: 10px;
}

.cbc-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.cbc-item {
    position: relative;
}

.cbc-item.big {
    flex: 0 0 60%;
}

.cbc-item.small {
    flex: 0 0 20%;
}

.cbc-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px !important;
}
.big.cbc-item img {
    margin-bottom: 10px !important;
}

.cbc-title {
    font-weight: 600;
    padding: 5px 0;
	line-height: 18px
}
.big .cbc-title {
    font-size: 24px;
    line-height: 1.1em;
	margin-bottom: 30px;
}
.small .cbc-title {
    font-size: 12px;
	line-height: 1.2em;
}
.cbc-item a.cbc-read-more, .cbc-item a.cbc-read-more:hover {
    color: #009aff !important;
    border: 1px solid #009aff !important;
    border-radius: 10px;
    padding: 3px 10px;
}

.big a.cbc-read-more, .big a.cbc-read-more:hover {
    font-size: 25px;
    padding: 10px 20px;
}

.cbc-item a, .cbc-item a:hover {
    color: #000074 !important;
}

.swiper-button-prev, .swiper-button-next {
    color: #000074 !important;
}

@media screen and (max-width: 768px) {
    .cbc-item.big {
        flex: 0 0 100%;
    }
    .cbc-item.small {
        flex: 0 0 48%;
    }
}
