.article {
	.hypo-download-archive {		
		.hypo-download-archive-list {
			margin: 0;
			padding: 0;
			display: flex;
			flex-direction: row;
			justify-content: center;
			align-items: center;
			list-style-type: none;
			flex-wrap: wrap;
			
			li {
				padding-bottom: .5rem;
				box-sizing: border-box;
				width: auto;
				
				:last-child {
					padding-bottom: 0;
				}
			}
		}
		
		.hypo-download-archive-list-item--label {
			margin-top: .15rem;
			display: flex;
			flex-direction: row;
			justify-content: center;
			align-items: center;
		}
	}
	
}


@media screen and (min-width: 30.01em) {
	.article {
		.hypo-download-archive {	
			margin-left: -.25rem;
			margin-right: -.25rem;
			
			.hypo-download-archive-list {
				justify-content: space-between;
				
				li {
					padding: .5rem;
					width: 50%;
				}
			}
		}
	}
}


@media screen and (min-width: 40.01em) {
	.article {
		.hypo-download-archive {		
			.hypo-download-archive-list {
				
				li {
					width: 33.3333%;
				}
			}
		}
	}
}