section.press {
    margin: 1rem auto;
    max-width: 800px;
}

article {
    border-bottom: 1px solid #ccc;
    padding: 1rem;
    max-width: 100%;

    h2 {
        color: var(--text-color);
        margin-bottom: 1.5em;
    }

    img {
        max-width: 100%;
    }

    p, span {
        font-size: 1rem !important;
        font-family: 'Outfit', sans-serif !important;
        background: transparent !important;
    }

    p {
        margin-bottom: 1.5em;
        text-indent: 0 !important;

        a {
            color: var(--blue) !important;
        }
    }
}

.press-releases {
    width: 800px;
    margin: 1rem auto;

    li {
        display: flex;
        margin-bottom: 1rem;

        time {
            width: 7rem;
            display: flex;
        }


        a {
            display: flex;
            color: var(--text-color)
        }
    }
}

    .press-releases article {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
    }

    .press-releases h3 {
        flex: 2 1 0;
        margin: 0;
    }

    .press-releases time {
        flex: 0 0 7rem;
        white-space: nowrap;
        color: #666;
    }

    .press-releases p {
        flex: 3 1 0;
        margin: 0;
    }

@media (max-width: 768px) {
    .press-releases article {
        flex-direction: column;
    }

    .press-releases time {
        flex-basis: auto;
    }
}

.pager {
    text-align: center;
}

.pagination {
    display: flex;
    padding: 0;
    list-style: none;
    border-radius: .4rem;
    justify-content: center;
    margin: 1rem;

    li.active {
        a {
            background-color: #f0f0f0;
        }
    }

    a {
        position: relative;
        display: block;
        padding: .5rem .75rem;
        margin-left: -1px;
        line-height: 1.25;
        background-color: #fff;
        border: 1px solid #dee2e6;
        text-decoration: none;
        color: #333;
    }
}
