::marker, summary{
	cursor: pointer;
}

footer#footer{
	text-align: center;
	margin-bottom: 30px;
}

.article-list article{
	border: 1px solid var(--color-text);
	border-radius: 15px;
	padding: 15px;
    transition-property: transform, background-color, border;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
    color: var(--color-text);
    margin: 0 0 1.5rem;
    box-shadow: 0px 10px 13px -7px #000000;
    background-color: #FFF;
    max-width: 100%;
    box-sizing: border-box;
}

.article-list article:hover{
	transform: scale(1.03);
	background-color: #004;
	color: #FFF;
}

.article-list article p{
	padding: 0px;
	margin: 0px;
}	

#scroll-to-top{
	position: fixed;
	bottom: 30px;
	right: 10px;
	background-color: #CCC;
	background-image: url("/images/up.svg");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
	text-indent: -999px;
	overflow: hidden;
	opacity: 70%;
	border-radius: 50%;
	z-index: 1000;
}

#break-point{
	/*display: none;*/
	position: fixed;
	top: 0px;
	right: 50%;
	z-index: 1000;
}

#break-point::before{
	content: "Mobile";
	background-color: #0F0;
	font-weight: 700;
	padding: 3px;
	border-radius: 3px;
	font-size: 10px;
}

.info-block{
	display: grid;
	grid-template-columns: repeat(1, 1fr); /* Example grid layout */
	column-gap: 30px;
	padding: 0px 0px 40px;
}

.info-block a:hover{
	font-weight: 400;
	transform: scale(1.1);
}
.info-block a{
	font-weight: 200;
    transition-property: transform, font-weight;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
}

.info-block h2,
.info-block h3{
	font-weight: inherit;
	transform: inherit;
}

/*	Desktop	*/
@media (width >= 480px) {
	#break-point::before{
		content: "480px";
	}
}
@media (width >= 768px) {
	#break-point::before{
		content: "768px";
	}

	.info-block{
		grid-template-columns: repeat(2, 1fr); /* Example grid layout */
	}
}

@media (width >= 1024px) {
	#break-point::before{
		content: "1024px";
	}
	.info-block:not(.two){
		grid-template-columns: repeat(3, 1fr); /* Example grid layout */
	}
}

@media (width >= 1280px) {
	#break-point::before{
		content: "1280px";
	}
	.info-block:not(.three, .two){
		grid-template-columns: repeat(4, 1fr); /* Example grid layout */
	}
}