#newsletter_archive_page {
    height: calc(100vh - 350px - 45px);
    position: relative;
    overflow: hidden;
    margin-top: 35px;
    width: 100%;
}
#newsletter_archive_page .right_side {
    position: relative;
    height: 100%;
}
#newsletter_archive_page .article_content {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 35px;
    row-gap: 70px;
}
#newsletter_archive_page .scroll_more_notice {
    padding: 10px 10px 10px 10px;
    border-top: 10px solid #FFF;
    box-sizing: border-box;
    background: #f9f9f9;
    position: absolute;
    bottom: 0px;
    width: 100%;
}
.newsletter_archive_form {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.newsletter_archive_form #newsletter_archive_signup {
    max-width: 380px;
    text-align: left;
}
.newsletter_archive_form #newsletter_archive_signup p {
    margin-bottom: 15px;
}
.newsletter_archive_form #newsletter_archive_signup form#subForm {
    position: relative;
}
.newsletter_archive_form #newsletter_archive_signup form#subForm button {
    background: url(../img/icons/arrow_more_hover.svg), none;
    background-repeat: no-repeat;
    text-indent: -1000em;
    position: absolute;
    border: none;
    height: 14px;
    width: 24px;
    right: 20px;
    top: 20px;
}
#newsletter_archive_page .article_content .single_newsletter {
    text-align: left;
}
/* Hide scrollbar for Chrome, Safari and Opera */
#newsletter_archive_page .article_content::-webkit-scrollbar {
	display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
#newsletter_archive_page .article_content {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}
#newsletter_archive_page .article_content .single_newsletter img {
    width: 100%;
}

@media (max-width: 1220px) {
	#newsletter_archive_page .article_content {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 760px) {
	#newsletter_archive_page {
		height: 100%;
	}
	#newsletter_archive_page .scroll_more_notice {
		display: none;
	}
	#newsletter_archive_page .article_content {
		grid-template-columns: repeat(2, 1fr);
	}
	#newsletter_archive_page .article_content .single_newsletter img {
		width: 100%;
	}
	.newsletter_archive_form {
		display: block;
	}
	.newsletter_archive_form h1 {
		margin-bottom: 15px;
	}
}

@media (max-width: 575px) {
	#newsletter_archive_page .article_content {
		grid-template-columns: repeat(1, 1fr);
	}
}