.news-list {
    list-style: none;
}

.news-item:not(:last-child) {
    margin-bottom: 4rem;
}

.news-item h3 {
    font-weight: 700;
    font-size: 2.7rem;
    line-height: 119%;
    margin-bottom: 1.2rem;
}

.publications-list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
    gap: 1rem;
}

.publication-item {
    width: calc((100% - 1rem) / 2);
}

.publication-item a {
    position: relative;
    background-color: var(--dark-blue);
    color: var(--white) !important;
    border-radius: 3rem;
    padding: 3rem 7.4rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
    width: 100%;
}

.publication-item a svg {
    content: '';
    width: 3.5rem;
    height: 3.4rem;
    right: 3rem;
    top: 3rem;
    position: absolute;
    z-index: 2;
}

.publication-item a svg path {
    stroke: var(--white-alpha-50);
    transition: stroke 0.3s;
}

.publication-item a:hover svg path {
    stroke: var(--green);
}

.publication-item a::before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: var(--black-alpha-20);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.publication-item a:hover::before {
    opacity: 1;
}

.publication-item a h3 {
    font-size: 2.7rem;
    line-height: 119%;
    position: relative;
    z-index: 2;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.publication-item__excerpt {
    margin-top: auto;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .publications-list {
        flex-direction: column;
        gap: 0.4rem;
    }

    .publication-item {
        width: 100%;
    }

    .publication-item a {
        padding: 2rem;
        border-radius: 2.4rem;
    }

    .publication-item a svg {
        right: 2rem;
        top: 2rem;
    }

    .publication-item a h3 {
        padding-right: 5.6rem;
    }
}

@media (max-width: 768px) {
    .news-item h3 {
        font-weight: 700;
        font-size: 2.2rem;
        line-height: 109%;
        margin-bottom: 0.8rem;
    }

    .publication-item a h3 {
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 144%;
        margin-bottom: 1.6rem;
    }
}