.cs-list-main {
    padding: 70px 0px;
}

.cs-cat-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: stretch;
}

.cs-cat-left {
    display: flex;
    gap: 20px;
    flex-direction: column;
    flex-grow: 1;
}

.cs-cat-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fold3-item-front .subtitle {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 6;
    transition: all .75s ease;
}

.fold3-item-front {
    position: absolute;
    overflow: hidden;
    z-index: 4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

a.fold3-item {
    position: relative;
    display: block;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
}

.fold3-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1.2 / 1;
    transition: all .75s ease;
    position: relative;
    object-fit: cover;
    object-position: bottom;
}

.cs-cat-left-bottom {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.fold3-item{
    
    min-height: 400px;
}

.fold3-item-back {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0;
    transition: all .75s ease;
    z-index: 4;
    flex: 100%;
    gap: 20px;
}

.fold3-item-background{
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fold3-item:hover .fold3-item-background::before {
    opacity: 0.5;
}


.fold3-item-background::before {
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: black;
    display: block;
    width: 100%;
    opacity: 0.15;
    z-index: 3;
    transition: all .5s ease;
}

.fold3-item-back * {
    color: white;
}

.fold3-item-content p:last-child {
    margin: 0;
}

a.fold3-item:hover .fold3-item-back {
    opacity: 1;
}

a.fold3-item:hover .fold3-item-front .subtitle {
    opacity: 0;
}

a.fold3-item:hover img {
    transform: scale(1.1);
}

.cs-cat-row:nth-child(2n) {
    flex-direction: row-reverse;
}

.cs-cat-left-bottom > div {
    flex-grow: 1;
    flex-basis: 0;
}

.fold3-item-content p:not(.subtitle) {
    font-size: 14px;
    line-height: 20px;
}

.cs-cat-right > div {
    flex-grow: 1;
    flex-basis: 0;
}

.cs-cat-left-top > a {
    min-height: 700px;
}

.fold3-item-back .readmore {
    flex: 0 0 160px;
}

.fold3-item .subtitle{
    font-size: 28px;
    line-height: 36px;
}

.cs-filter-inner {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
    justify-content: center;
}

.cs-filter-inner a {
    margin: 0;
    flex: 0 0 200px;
}

.cs-filter-inner a.active {
    background: white;
    color: var(--primary);
}