/**/
.hidden {
	display: none !important;
}

.visible-sm {
	display: block;
}

.visible-md {
	display: none;
}

@media (min-width: 640px) {
	.visible-md {
		display: none;
	}

	.visible-sm {
		display: none;
	}
}

@media (min-width: 960px) {
	.visible-md {
		display: block;
	}
}

/**/

.pull-left {
	float: left !important;
}

.pull-right {
	float: right !important;
}

/* Utilities Clases */
.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}

.clearfix:after {
	clear: both;
}

/* Image and Thumbnails */
.thumbnail {
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0.4rem;
	float: none;
	background: none;
	overflow: hidden;
	font-size: 0rem;
	line-height: 0.1rem;
	text-align: center;
}

.thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/**/
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

.medium.cli-plugin-button,
.medium.cli-plugin-button:visited {
	margin: 16px 0 0 0;
	padding: 16px 32px;
	font-size: 18px;
	border-radius: 6px;
}

/**/

.fill-container {
	display: flex;
	gap: 0.8rem;
}
.fill-container > * {
	flex: 1 1 0;
}
.fill-container.is--vertical-layout {
	flex-direction: column;
}
.fill-container.is--horizontal-layout {
	flex-direction: row;
}

