.interest__container {
    position: relative;
}

.interest__container:after {
    background: #E31F26;
    content: "";
    display: block;
    height: 1px;
    margin: 40px auto 0 auto;
    width: 15px;
}

.interest {
    margin: 30px 0 25px 0;
}

.interest__container h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    margin: 0 auto 6px auto;
    max-width: 90%;
    text-align: center;
}

.interest__item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.10);
    height: 100%;
    overflow: hidden;
    padding: 18px 18px 18px 18px;
    position: relative;
}

.interest__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
    padding-bottom: 25px;
}

.interest__image {
    height: 200px;
    margin: 0 0 10px 0;
}

.interest__img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.interest__title{
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    margin: 13px 0 18px 0;
}

.interest__text {
    flex-grow: 1;
}

.interest__text p,
.interest__text ul li{
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.interest__text ul li{
    margin: 0 0 8px 0;
    padding: 0 0 0 20px;
    position: relative;
}

.interest__text ul li:before {
    content: "";
    background: #fff;
    border-radius: 50%;
    height: 5px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 5px;
}

.interest__link{
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
}

.interest__link:hover{
    color: #494949;
    text-decoration: none;
}

.interest__link:after{
    background: url('/Portals/0/skins/ccma/images/iconos/arrow-link.svg') no-repeat;
    background-size: 100%;
    content: "";
    height: 17px;
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    z-index: 0;
}

.interest__container .link {
    background: #E31F26;
    border-radius: 40px;
    color: #fff;
    display: table;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin: 0 auto;
    padding: 10px 30px 10px 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    width: auto;
}

.interest__container .link:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.interest.container .interest__button {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 14px 20px;
    z-index: 9;
}

.interest__button:hover {
    background: var(--red);
}

.interest__button:hover a {
    color: white;
}

.interest__button:hover a:after {
    filter: brightness(200%);
}

.article_pager {
    display: flex;
    justify-content: center;
    gap: 11px;
    text-align: center;
}

.article_pager a.page {
    background: #6e6e6e;
    color: white;
    padding: 5px 12px;
    width: fit-content;
    height: 35px;
    display: block;
    text-decoration: none;
    border-radius: 5px;
}

.article_pager a.active.page {
    background: black;
}

@media (min-width: 768px){
   .interest__image {
        height: 180px;
    }

    .interest__container h2 {
        margin: 0 0 6px 0;
        max-width: unset;
    }
}

@media (min-width: 992px){
    .interest__link:after{
        right: -35px;
    }
 }

 @media (min-width: 1200px){
    .interest__link:after{
        right: -50px;
    }
 }