#latest_news {
	width: 22.2%;
	height: 5rem;
	background-image: url(../images/latest_news.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
}

#news_block {
	width: 56%;
	margin-top: 5rem;
	margin-left: 14%;
}

#news_list li {
    display: flex;
    flex-direction: row;
    align-items: center;
	margin-top: 2rem;
    list-style: none;
}
#news_list li img {
    width: 1.3rem;
    height: 0.75rem;
    margin-right: 2rem;
}
#news_list li#more_news {
	margin-top: 3.4rem;
}
#news_list li a {
    color: black;
  	font-size: 1.5rem;
  	font-weight: bold;
  	line-height: 1.06;
  	letter-spacing: 0.2rem;
  	text-decoration: none;
}

#speaker {
    position: absolute;
    top: 7rem;
    right: 0;
    width: 30%;
}

#speaker_pic {
	width: 100%;
}

/* Mobile Style */
@media only screen and (max-width: 768px) {

    #latest_news {
        width: 43vw;
        height: 7.51vw;
        background-image: url(../images/latest_news-m.svg);
    }

    #news_block {
        width: 90%;
        margin: 0 auto;
    }

    #news_list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10vw;
        margin-top: 13vw;
    }
    #news_list li:nth-child(odd) {
        justify-self: end;
    }

    #news_list li {
        position: relative;
        display: block;
        width: 29vw;
        height: 29vw;
        border: 1px solid #707070;
        border-radius: 0.8125rem;
        margin-top: 0;
    }
    #news_list li img {
        position: absolute;
        top: 30%;
        left: 5%;
        width: 1rem;
        height: 0.58rem;
        background-size: 1rem 0.58rem;
    }
    #news_list li#more_news {
        margin-top: 0;
    }
    #news_list li:not(#more_news) a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 40% 5% 5% 5%;
        box-sizing: border-box;
        font-size: 1rem;
    }
    #news_list li#more_news a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        margin-top: 0;
        font-size: 1rem;
    }

    #speaker {
        top: -3rem;
    }

}
@media only screen and (max-width: 500px) {

    #news_list {
        grid-template-columns: 1fr 1fr;
        grid-gap: 5.4vw;
    }
    #news_list li {
        width: 42.3vw;
        height: 42.3vw;
    }

}
