h1{
	padding: 0 0 50px;
	margin: 0;
}
#news{
	padding: 100px 0;
	background: var(--yellow-gray);
}
#news .news-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	grid-gap: 1.5rem;
}
#news .news-wrapper a p {
    margin: 0.5rem 0;
}

#news .news-wrapper a .title{
    /*margin-bottom: 1rem;*/
	/*font-weight: bold;*/
}
#news .img-wrap {
	width: 100%;
    height: 200px;
    overflow: hidden;
    margin-top: 30px;
}
#news img{
	width: 100%;
	height: 100%;
	margin-bottom: .5rem;
	object-fit: cover;
	transition: .3s;
}
#news img:hover{
	transform: scale(1.15);
}

#insta {
    padding: 100px 0;
}
#insta h2 {
    margin-top: 0;
    margin-bottom: 80px;
}
#insta>.container{
	display: grid;
	grid-template-areas: 'i1 i2 i2'
		'i1 i2 i2'
		'i3 i2 i2'
		'i3 i5 i6'
		'i4 i5 i6';
	grid-gap: 1rem;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-rows: 200px;
}
#insta img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#insta img:nth-child(1){
	grid-area: i1;
}
#insta img:nth-child(2){
	grid-area: i2;
}
#insta img:nth-child(3){
	grid-area: i3;
}
#insta img:nth-child(4){
	grid-area: i4;
}
#insta img:nth-child(5){
	grid-area: i5;
}
#insta img:nth-child(6){
	grid-area: i6;
}

#rect{
    display: none;
	height: 1rem;
	width: 100%;
	background: var(--yellow-gray);
}

footer {
    background: var(--yellow-gray);
}



@media (max-width: 600px) {
	#insta>.container{
		grid-template-columns: 100%;
		grid-template-areas: 'i1'
			'i2'
			'i3'
			'i4'
			'i5'
			'i6';
	}
}



@media (max-width: 480px) {
    #news {
        padding: 45px 0 50px;
    }
    
    h1 {
        padding: 0 0 10px;
    }
    
    #insta {
        padding: 45px 0 50px;
    }
    
    #insta h2 {
        margin-bottom: 40px;
    }
    
    #insta > .container {
        grid-auto-rows: 250px;
    }
}