main  img {
	
	max-width: 100%;
}


.article {
   
	display: grid;
    grid-template-columns: 270px auto;
    padding: 2rem 0;
    grid-gap: 40px;
}

.article-top{
	display: flex;
    justify-content: space-between;
    color: #818181;
    align-items: baseline;
    padding-bottom: 1rem ;
    border-bottom: 1px solid #eaeaea;
}
.article-top h2{
	font-size: 1.8rem;
    font-weight: lighter;
}


.article-descript{
	background: #f9f9f9;
	margin-top: 1rem ;

}
.article-descript div {
	padding: 2rem 2rem 0 2rem;
}

.article-descript h1{
	font-size: 24px;
	font-weight: bold;
	color: #000;
}
/* 
.article-descript a {
	background-color: var(--theme-color);
	color: #fff;
	padding: 0.5rem 0.2rem;
	font-size: 0.8rem;
}
     */

a[download]{
	display: block;
	margin-top: 1rem;
	text-decoration: underline;
	font-weight: bold;
}

/* .article-descript > a {
	text-decoration: underline;
} */

.article-aside div{
	padding: 3rem 1rem;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 1.5rem;
}

.article-aside nav {
	border-left: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
}

.article-aside img {
	width: 100%;
}



.article-aside a{

	display: flex;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid #eaeaea;
	color: #6f6f6f;

}

.article-aside a::after{
	content: "";
    background-image: url(/img/right.svg);
    width: 18px;
    background-position: 0 2px;
    background-repeat: no-repeat;
    height: 18px;
    background-size: contain;
}


.aside-active,
.article-aside a:hover {
	color: #fff !important;
	background-color: var(--theme-color) !important;
}


.aside-active::after,
.article-aside a:hover::after{

	background-image: url(/img/right2.svg) !important;
}


.article-descript{
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.article-descript  div p {
	font-size: 0.8rem;
    line-height: 1.5rem;
    color: #555;
    padding: 1rem 0;
}


.article-addon ,
.article-content{
	border-top: 1px solid #ededed;
}

.title-txt{

	font-size: 36px;
	font-weight: lighter;
}

.article-title,
.article-content,
.article-addon {
	padding: 1.5em 0;
}

.article-addon p {
    margin: 0.5rem 1rem;
    color: #333;
}
.article-addon a {
	text-decoration: underline;
}


@media screen and (max-width: 1000px){

	main {
		background-color: #fff;
	}
	main > img {

		height: 30vh;
	}
	.article  {
		display: block;
		padding: 0 8px;
		
	}

	.article .title h1 {
	    font-size: 25px;
	    padding-bottom: 10px;
	}

	.article .content {
		margin: 20px auto 0;
	}

	.article-aside { 
		display: none;
	}

	
	.article-descript{
		grid-template-columns: 1fr 2fr;
	}

	.article-descript h1{
		font-size: 1.2rem;
	}
}