.ton-ultimasNoticias {
    max-width: 1200px;
    margin: 32px auto 60px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.ton-ultimasNoticias>.ton-ultimasNoticias-left>h2 {
    font-family: nunitosans-extrabold;
    color: #00529E;
    font-size: 40px;
}

.ton-ultimasNoticias>.ton-ultimasNoticias-left {
    max-width: 690px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ton-ultimasNoticias>.ton-ultimasNoticias-left>button {
    font-family: nunitosans-black;
    font-size: 12px;
    max-width: 100%;
    text-align: center;
    padding: 12px 0px;
    border: 1px solid #00529E;
    background-color: transparent;
    border-radius: 20px;
    color: #00529E;
    margin-top: 8px;
    cursor: pointer;
}

.ton-ultimasNoticias>.ton-ultimasNoticias-left>a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.ton-ultimasNoticias>.ton-ultimasNoticias-left>a>img {
    border-radius: 15px;
    max-width: 225px;
    max-height: 172px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.ton-ultimasNoticias>.ton-ultimasNoticias-left>a>div>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}


.ton-ultimasNoticias>.ton-ultimasNoticias-left>a>div>div>h3 {
    font-family: nunitosans-bold;
    font-size: 12px;
    color: #00529E;
    text-transform: uppercase;
}

.ton-ultimasNoticias>.ton-ultimasNoticias-left>a>div>div>span {
    font-family: nunitosans-bold;
    font-size: 12px;
    color: #737377;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.ton-ultimasNoticias>.ton-ultimasNoticias-left>a>div>h2 {
    font-family: nunitosans-bold;
    font-size: 26px;
    line-height: 30px;
    color: #4A4A4A;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ton-ultimasNoticias>.ton-ultimasNoticias-left>a>div>p {
    font-family: nunitosans-regular;
    font-size: 18px;
    line-height: 22px;
    color: #757575;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ton-ultimasNoticias>.ton-ultimasNoticias-right {
    position: sticky;
    height: 100%;
    top: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ton-ultimasNoticias>.ton-ultimasNoticias-right>img {
    width: 300px;
    height: 250px;
}


@media screen and (max-width:1200px) {
    .ton-ultimasNoticias {
        padding: 0 20px;
    }
}

@media screen and (max-width:992px) {
    .ton-ultimasNoticias {
        flex-direction: column;
    }
    .ton-ultimasNoticias>.ton-ultimasNoticias-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width:768px) {
    .ton-ultimasNoticias>.ton-ultimasNoticias-left>a {
        flex-direction: column;
    }
    .ton-ultimasNoticias>.ton-ultimasNoticias-left>a>img {
        width: 100%;
        max-width: 100%;
        max-height: auto;
    }
}