@charset "UTF-8";
/* CSS Document */

.blog-template {
	padding-top: 50px;
	grid-template-columns: 1fr auto;
	gap: 5%;
}

.blog-template .content {
	gap: 20px;
	padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
}

.blog-template h1.blog-kop {
	font-size: 26px;
	line-height: 36px;
	color: var(--text);
}

.blog-template h1 {
	font-size: 30px;
	color: var(--act-primary);
}

.blog-template h2 {
	font-size: 26px;
	color: var(--act-primary);
}

.blog-template h3 {
	font-size: 20px;
	color: var(--act-primary);
}

.blog-template h4 {
	font-size: 16px;
	color: var(--act-primary);
}

.blog-template h5 {
	font-size: 14px;
	color: var(--act-primary);
}

.blog-template h6 {
	font-size: 12px;
	color: var(--act-primary);
}

li::marker {
	color: var(--act-primary);
	font-weight: 600;
}

.blog-template .date {
	gap: 5px;
	align-items: center;
	font-size: 14px;
}

.blog-template .date svg {
	color: var(--act-primary);
	font-size: 18px;
}

.blog-template .top-image img {
	width: 100%;
	height: auto;
}

.blog-template .quote {
	border-top: 1px solid var(--shd-mid);
	margin-top: 50px;
	padding: 50px;
	font-size: 30px;
	line-height: 38px;
	font-weight: 700;
	text-align: center;
}

.blog-template .form-widget form {
	max-width: 260px;
}

.blog-template .form-widget {
	padding: 0 25px 25px 25px;
}

@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
   
}

@media screen and (max-width: 768px) {
	.blog-template {
		grid-template-columns: 1fr;
	}
	
	.blog-template .form-widget {
		display: none;
	}
	
	.blog-template h1.blog-kop {
		font-size: 20px;
		line-height: 26px;
	}
}