.krs-related-wrap {
    margin:0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.krs-related-row {
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
    gap: 0;
}

.krs-related-item{
     flex: 0 0 auto;
    margin: 0;
    vertical-align: top;
    white-space: normal;
    opacity: 1;
    box-sizing: border-box!important;
    padding: .2em;
}

.krs-related-item-inner{
    overflow: hidden;    
    border: 1px solid #d7eef4;    
    border-radius: 5px;
}

.krs-thumb{
    aspect-ratio: 30 / 25;
    overflow: hidden;
    position: relative;
}

.krs-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.krs-title{
    display: block;
	font-weight: 400;
    font-size: 1rem;
    line-height: 1.1em;
    padding: 0 .2em;
	height: 2.3em;
	overflow: hidden;
    color: #1A5462;
}

/* Responsive widths */
@media (min-width: 1100px) {
    .krs-related-item { 
        width: 20%!important;
        margin:0;
    }
}
@media (min-width: 800px) and (max-width: 1099px) {
    .krs-related-item  { 
        width: 25%;
        margin:0;
    }
}
@media (min-width: 600px) and (max-width: 799px) {
    .krs-related-item  { 
        width: 33.33%;
        margin:0;
    }
}
@media (min-width: 500px) and (max-width: 599px) {
    .krs-related-item  { 
        width:50%;
        margin:0 ;
    }
}
@media (max-width: 499px) {
    .krs-related-item { 
        width: 100%;
        margin:0;        
    }
}

.krs-slider-controls {
    margin-top: 3px;
    text-align: center;
}

.krs-prev {    
        background-color: #2E4447;
    color: #fff;
    border: none;
    padding: 0 3rem;
    margin: 0 1px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5em;
    border-radius: 5px 0 0 5px;
    transition: 1s;
}

.krs-prev:hover{
    cursor: pointer;
    background-color: #5491A1;   
}


.krs-next {
    background-color: #2E4447;
    color: #fff;
    border: none;
    padding: 0 3rem;
    margin: 0 1px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5em;
    border-radius: 0 5px 5px 0;
    transition: 1s;    
}

.krs-next:hover{
    cursor: pointer;
    background-color: #5491A1;    
}

