/* Markets section - Home page ----------------------- */
#markets .wp-block-image {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	border-radius: 24px;
	overflow: hidden;
}
#markets .wp-block-image figcaption {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: left;
	margin-bottom: 0;
	z-index: 110;
}
#markets .wp-block-image a {
	color: var(--wp--preset--color--theme-tertiary);
	font-style: normal;
	font-size: var(--wp--preset--font-size--large);
	font-weight: 700;
	text-decoration: none;
	display: block;
}
#markets .wp-block-image figcaption a {
    padding: 0 1rem 10px;
    width: 100%;
    height: 100%;
    padding-top: 100%;
}

/* arrow button */
#markets .wp-block-image:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 3px;
	right: 2px;
	width: 20px;
	height: 25px;
    padding: 20px 16px 10px 25px;
    border-radius: 100% 0 20px 0;
	background-color: var(--wp--preset--color--theme-primary);
	z-index: 99;
	cursor: pointer;
	transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}
#markets .wp-block-image:after {
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23ffffff'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
	color: #fff;
	display: block;
	position: absolute;
	bottom: 10px;
	right: 16px;
	width: 21px;
	z-index: 100;
	cursor: pointer;
}

#markets .wp-block-image:hover:before {
	transform: scale(24);
}
#markets .wp-block-image:hover figcaption a {
	color: #fff;
}
