.news-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5rem;
}

.news-container .news-title {
    font-size: 3rem;
    color: #444444;
    margin: 5rem 0;
}

.news-container .news-title span:first-child {
    color: #31b4b2;
}

.news-container .news-list {
    display: flex;
    flex-direction: column;
}

.news-container .news-list .news-item {
    display: flex;
    margin: 2rem 0;
    width: 60vw;
}

.news-list .news-item dl {
    display: flex;
    width: 100%;
    height: 10rem;
}

.news-list .news-item dl dt {
    font-size: 1.6rem;
    font-weight: bold;
    width: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #31b4b2;
    text-align: center;
}

.news-list .news-item dl dt span:first-child {
    font-size: 2rem;
}

.news-list .news-item dl dt span {
    color: #ffffff;
}

.news-list .news-item dl dd {
    flex: 1;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
}

.news-list .news-item dl dd a {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    padding: 0 2rem;
}

.news-list .news-item dl dd a span:nth-child(1) {
    color: #444444;
    font-size: 2rem

}

.news-list .news-item dl dd a span:nth-child(2) {
    color: #8f8f8f;
    font-size: 1.6rem;

}

