.collection {
	display: flex;
	flex: 1 1 auto;
	flex-flow: column nowrap;
	justify-content: flex-start;
	position: relative;
	width: auto;
	padding: 12px;
	overflow: visible;
	box-sizing: border-box;
}

.collection--regular {
	background: var(--o3-color-palette-claret-70);

	@include oGridRespondTo(M) {
		height: 100%;
	}
}

.collection--lite {
	background: var(--o3-color-palette-white-40);
	border: 1px solid var(--o3-color-palette-black-5);
	padding-top: 18px;
}

.collection__header {
	overflow: hidden;
	word-break: break-word;
}

.collection__header--regular {
	color: var(--o3-color-palette-white);
}

.collection__header--lite {
	color: var(--o3-color-palette-black);
}

.collection__title {

	font-weight: var(--o3-font-weight-semibold);
	line-height: var(--o3-font-lineheight-metric2-0);
	font-size: var(--o3-font-size-metric2-0);
	font-family: var(--o3-font-family-metric);
	margin: 0;
}

.collection__concepts {

	line-height: var(--o3-font-lineheight-metric2-0);
	font-size: var(--o3-font-size-metric2-0);
	font-family: var(--o3-font-family-metric);

	margin: 0;
	margin-left: -3px;
	padding: var(--o3-spacing-2xs) 0 0;

	flex-grow: 1;
	list-style: none;
}

.collection__concept {
	display: inline-block;
}

.collection__meta {
	padding-top: var(--o3-spacing-2xs);

	.n-myft-follow-button {
		margin: 0;
	}
}

.collection-follow-all__button {
	width: 100%;
	min-height: 28px;
	min-width: 60px;
	border-radius: var(--o3-border-radius-1);
	padding: 0 var(--o3-spacing-4xs);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	vertical-align: middle;
	font-family: var(--o3-font-family-metric);
	font-size: var(--o3-font-size-negative-2);
	line-height: var(--o3-font-lineheight-negative-2);
	font-weight: var(--o3-font-weight-semibold);
	border: 1px solid transparent;
	text-align: center;
	text-decoration: none;
	transition: 0.3s background-color, 0.15s color ease-out,
	0.15s border-color ease-out;
	appearance: none;
	background-color: #ffffff;
	color: var(--o3-color-palette-claret-70);
}

.collection-follow-all__button--regular[disabled] {
	pointer-events: none;
	opacity: 0.4;
	cursor: default;
}
.collection-follow-all__button--regular:hover {
	background-color: #cccccc;
	color: #aa1143;
	border-color: transparent;
	text-decoration: none;
}
.collection-follow-all__button--regular:focus {
	box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
	background-color: #cccccc;
	color: #aa1143;
	border-color: transparent;
	z-index: 1;
}