.section{
    width: 100%;
    display: flex;
    flex-direction: row;
}
.article-section{
    box-sizing: border-box;
    padding: 15px 25px;
    width: 100%;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.news-line{
	display: flex;
	flex-direction: row;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 302px;
    overflow: hidden;
    position: relative;
    justify-self: center;
    align-items: center;
    padding: 25px;
    border: 2.5px solid rgb(189, 253, 246);
    border-radius: 15px;
    box-sizing: border-box;
    backdrop-filter: blur(.5rem);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
	gap: 15px;
}
.news-line:hover{
	.icon{
	    border-width: 3.5px;
	    border-color: rgba(189, 253, 246, 1);
	}
	.article-text{
		text-decoration: underline;
	}
}
.icon{
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width:auto;
    max-height: 100%;
    display: inline-flex;
    aspect-ratio: 63/50;
    border: rgba(0, 0, 0, 0.25);
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    transition: 0.1s;
}
.icon img{
    height: 100%;
    transition: 0.5s;
    aspect-ratio: 63/50;
}
.article-text{
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.article-text h1{
    font-size: 32px;
    color: white;
	overflow: hidden;
	text-align: left;
}
.article-text h2{
    font-weight: bold;
    font-size: 24px;
    color: rgba(255, 255, 255, 1);
    opacity: 50%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
	text-align: left;
}
.article-text h3{
    font-weight: bold;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    opacity: 50%;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;  
	overflow: hidden;
	text-align: left;
}
.article-date{
    width: 75%;
    color: rgba(255,255,255,.5);
    position: absolute;
    top: 0;
    margin: 10px 10px 0 10px;
    font-size: 18px;
    transition: 0.25s;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.overlay{
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.75));
    position: absolute;
    height: 60%;
    width: 100%;
    bottom: 0px;
    transition: 0.25s;
}
.article-overlay{
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0));
    position: absolute;
    height: 40%;
    width: 100%;
    top: 0px;
    transition: 0.25s;
}


@media only screen and (max-width: 767px) {
	.icon{
	    width:100%;
	    height: auto;
	    aspect-ratio: 63 / 50;
	}
	.icon img{
	    width:100%;
	    height: auto;
	}
	.news-line{
		flex-direction: column;
		height: auto;
	}
	.article-text{
	    height: auto;
        width: 100%;
	    display: flex;
	    flex-direction: column;
	    gap: 15px;
	}
	.article-text h1{
	    font-size: 28px;
		overflow: hidden;
		text-align: center;
	}
	.article-text h2{
	    font-size: 18px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;  
		overflow: hidden;
		text-align: center;
	}
	.article-text h3{
	    font-size: 12px;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;  
		overflow: hidden;
		text-align: center;
	}
}

