.left-image, .right-image {
    min-height: 300px;
}
.left-caption-right-image .right-image {
    object-position: unset;
}
.eal-pagination{
    padding: 20px 0;
    border-top: 1px solid #90949c;
    border-bottom: 1px solid #90949c;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.eal-pagination__page{
    display: flex;
    align-items: center;
}
.eal-pagination__page{
    gap: 10px;
}
.eal-pagination__arrow button{
    background-color: #f2f6f6;
    aspect-ratio: 1;
    width: 28px;
    padding: 0;
    border: 1px solid #e5e7eb;
}
button:disabled{
    opacity: .5;
}
.eal-pagination__arrow img{
    width: 8px;
}
.eal-pagination__showing{
    margin-bottom: 0;
    border-right: 1px solid #e5e7eb;
    padding-right: 20px;
    margin-right: 20px;
}

.news-content{
    display: grid;
}
.news-content--left{
    order: 2;
}
.news-content--right{
    display: none;
}
.news-content--right.collapsed {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.news-content--right.expanded {
    max-height: fit-content;
    overflow: visible;
    transition: max-height 0.5s ease;
    margin-bottom: 50px;
  }
.filter-toggle {
    display: block;
    background-color: #10218b;
    color: white;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 1rem;
  }


.news-content .form-check:not(:last-child){
    margin-bottom: 20px;
}
.news-content .form-check{
    background-color: #f1f3f5;
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-content .form-check:hover,
.news-content .form-check > *:hover{
    cursor: pointer;
}
.news-content .form-check-input{
    border: 1px solid #646464;
    float: unset;
    margin: unset;
}
.news-content .form-check-input:focus{
    box-shadow: unset;
}
.news-content .form-check-label{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    flex-grow: 1;
    padding-block: 10px;
}
.press-pagination:last-of-type{
    padding-bottom: 50px;
}
.no-result{
    padding-bottom: 25px;
}

@media screen and (min-width: 768px) {
    .eal-pagination{
        flex-direction: row;
    }
}

@media screen and (min-width: 1024px) {
    
    .press-pagination:last-of-type{
        padding-bottom: 0;
    }
    #intro h2{
        margin-top: 50px;
    }
}
@media screen and (max-width: 1199px) {
    .news-content--right{
        padding-inline: 20px;
    }    
}
@media screen and (max-width: 1023px) {
    #intro h2, .pad-inline {
        padding-inline: 20px;
    }  
    .eal-pagination__page{
        width: 45%;
        justify-content: space-between;
    }
    .eal-pagination__arrow button {
        width: 40px;
    }
    .eal-pagination__arrow img {
        width: 14px;
    }
    .press-pagination{
        padding-inline: 20px;
    } 
}

@media screen and (min-width: 1200px) {
    .eal-pagination > *{
        width: 250px;
    }
    .news-content{
        column-gap: 20px;
        grid-template-columns: 3fr 1fr;
        /* gap: 20px; */
    }
    .news-content--right{
        display: block;
        border: 1px solid #90949c;
        padding: 20px;
        height: fit-content;
    }
    .filter-toggle, .pad-inline{
        display: none;
    }
    .news-content--left{
        order: unset;
    }
}

@media screen and (min-width: 1280px) {
    
}

input[type="radio"]{
    border-radius: 50%!important;
}

@media screen and (min-width: 1200px) {
    .card-block__title{
        font-size: 18px;
        line-height: 1.4;
    }
}