/* Grid container */
.in-the-news-grid {
    display: flex;
    flex-wrap: wrap;
}

/* Each press release item */
.in-the-news-item {
    display: flex;
    width: 100%;
    margin-bottom: 49px;
}

/* Right column - Details */
.newsItem-details {
    width: 100%;
}

/* Title */
.newsItem-details h5 a {
    margin-bottom: 4px;
    color: #3CAFE4;
    text-decoration: none;
    font-size: 24px;
}

/* Excerpt */
.newsItem-details p {
    margin-bottom: 10px;
}

/* Read More Button */
.newsItem-details a.button {
    background-color: #32373c;
    color: white;
    font-family: futura-pt-bold, Futura, "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 2px;
    padding: calc(0.667em + 2px) calc(1.333em + 2px);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    margin-top: 10px;
}