#insights a {
    color: inherit;
    text-decoration: none;
}

.insight_principal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    border-radius: 15px;
    padding: 45px;
}  

.insight_principal_content {
    max-width: 55%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--cor-white);
}

.insight_principal_content button {
    background: transparent;
    color: var(--cor-white);
    padding: 10px 20px;
    border: var(--cor-white) 1px solid;
    cursor: pointer;
    transition: .4s;
}

.insight_principal_content button p {
    color: var(--cor-white);
}

.insight_principal_content button:hover {
    background: rgba(12, 35, 60, 0.7);
}


@media screen and (max-width: 640px) {

    .insight_principal {
        height: auto;
        background-position: left;
    }


    .insight_principal_content {
        min-width: 100%;
    }

} 

.latest-news {
    padding: 20px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
} 

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-item {
    background-color: #f5f6fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: slide-up 0.5s forwards;
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.image-container {
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center; 
    aspect-ratio: 10/7;
    object-fit: cover;
}

.news-item img {
    width: 100%;
    height: auto; 
}

.news-item h2 {
    font-size: var(--font-size-h4);
    margin: 12px 0;
    color: var(--cor-darkblue);
}

.news-item p {
    font-size: var(--font-size-p);
    color: #333333;
}

.news-item.hidden {
    display: none;
} 

.news-item:hover {
    transform: translateY(-5px);
    background-color: #eaf9fe; 
}

.news-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 1200px) {
    .news-text {
        height: auto;
    }
}

@media screen and (max-width: 640px) { 


    .image-container {  
        aspect-ratio: 10/5; 
    } 

    .news-item h2 {
        font-size: var(--font-size-h3);
    }

    .news-item p {
        font-size: var(--font-size-p);
    }


    .news-text {
        height: auto;
    }

}

.news-text button {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.cta_suites a {
    color: var(--cor-cobalt);
    text-decoration: none;
}

.cta_suites p {
    color: var(--cor-cobalt);
}


.read-more {
    font-size: var(--font-size-p);
    color: var(--cor-cobalt);
    background-color: transparent;
    border: none;
    margin-top: 15px;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.read-more p,
.read-more span {
    color: var(--cor-cobalt);
    text-decoration: none;
}

.read-more p:hover {
    text-decoration: underline;
}

.cta_suites a:hover {
    color: var(--cor-cobalt);
    text-decoration: underline;
}

.cta_suites a:after {
    color: var(--cor-cobalt);
}

.load-more {
    margin-top: 20px;
    text-align: center;
}

.load-more button {
    padding: 10px 20px;
    font-size: var(--font-size-p);
    background-color: var(--cor-cobalt);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 45px;
    transition: background-color 0.3s ease;
}

.load-more button:hover {
    background-color: var(--cor-kpmgblue);
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}