@charset "UTF-8";
.theme-articles {
	margin-top: 50px;
}
.theme-articles .content-title {
	min-height: 50px;
	padding-left: 20px;
}
.theme-articles .grid {
	display: grid;
	gap: 36px;
	grid-template-columns: repeat(1, 1fr);
	padding: 0 10px;
}
.theme-article {
	display: block;
	text-decoration: none;
	font-weight: 300;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: normal;
	color: var(--grey600);
	text-align: left;
}
.theme-article .big {
	font-weight: 600;
	font-size: 16px;
	color: var(--blue);
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	margin: 0 0 8px 0;
	letter-spacing: -0.01em;
}

@media (pointer:fine) {
a.theme-article:hover .big {
	color: var(--hover);
}
}
.theme-article .text {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/*mobile end*/

/*tablet start*/

@media only screen and (min-width: 768px) {
.theme-articles {
	margin-top: 60px;
}
.theme-articles .content-title {
	min-height: 60px;
	padding-left: 40px;
}
.theme-articles .grid {
	gap: 40px 60px;
	grid-template-columns: repeat(2, 1fr);
	padding: 0 0 0 48px;
}
.theme-articles .grid .theme-article:nth-child(3) {
	display: none;
}
.theme-article {
	font-size: 15px;
}
.theme-article .big {
	font-size: 18px;
	line-height: 25px;
	margin-bottom: 17px;
}
}

/*tablet end*/

/*desktop start*/

@media only screen and (min-width: 1280px) {
.theme-articles {
	margin-top: 75px;
}
.theme-articles .content-title {
	margin-bottom: 60px;
}
.theme-articles .grid {
	grid-template-columns: repeat(3, 1fr);
	padding-left: 40px;
}
.theme-articles .grid .theme-article:nth-child(3) {
	display: block;
}
.theme-article {
	font-size: 14px;
	letter-spacing: 0.01em;
}
.theme-article .big {
	font-size: 15px;
	letter-spacing: 0.01em;
}
}

/*desktop end*/

/*desktop-big start*/

@media only screen and (min-width: 1680px) {
.theme-articles .grid {
	gap: 40px 140px;
}
}
