body {
  padding-top: 4.5rem;
}

ul:last-child ,
ol:last-child ,
p:last-child {
	margin-bottom: 0;
}

a.unstyled {
	color: inherit;
	text-decoration: none;
}
a.unstyled:hover {
	border-bottom: 1px solid;
}

.border-right {
	border-right: 1px solid #eee;
}

section.row {
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #ddd;
}
section.row:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

ol.summary > li.row {
	background: #fff;
	margin: 0 auto 2rem auto;
	padding: 1rem 2rem;
	box-shadow: 0px 3px 10px rgb(0 0 0 / 10%);
	border: 1px solid rgba(0,0,0,0.3);
}
@media screen and (min-width: 768px){
	ol.summary > li.row {
		width: 90%;
		transition: all 200ms ease-in;
	}
	ol.summary > li.row:hover {
		transform: scale(1.05);
		box-shadow: 10px 15px 10px rgb(0 0 0 / 80%);
		border-color: rgba(0,0,0,0.8);
	}
}
ol.summary > li.row.current {
	box-shadow: 0px 3px 10px rgb(0 0 0 / 50%);
}
ol.summary > li.row:last-child {
	margin-bottom: 0;
}