.articles-page-centerer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.articles-grid {
    width: 70vw;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    
    margin-bottom: 70px;
}

@media only screen and (max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

.articles-grid-header {
    font-size: calc(18px + 1.1vw);
    font-family: "Caslon";
    font-weight: lighter;
    margin-top: -20px;
}

.articles-card {
    /*max-width: 400px;*/
    height: 60px;
    background-color: white;
    border-radius: 5px;
    border: 1px solid rgb(204, 204, 204);
    position: relative;
    overflow: hidden;
    transition: 250ms ease;
    padding: 0 10px 0 20px;
    font-family: "Ave";
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.articles-card:hover {
    transform: scale(1.01);
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.17); 
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.17);
}

.articles-title-container {
    width: calc(100% - 30px);
    height: 60px;
    border-top: 1px solid rgb(204, 204, 204);
    position: absolute;
    bottom: 0;
    font-family: "Ave";
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px 0 20px;
}

.articles-title-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    color: #b34898;
}

.subtitle {
    font-size: 0.7em;
    color: gray;
    margin-top: 7px;
}









