@charset "utf-8";

.consadoleRecruitment {
	text-align: center;
	padding: 15px;
	font-size: 1.8em;
	font-weight: bold;
	margin: auto;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fbb03b;
}

@media screen and (max-width: 600px) {
	.consadoleRecruitment {
		font-size: 1.2em;
	}
}

.consadoleRecruitment::before,
.consadoleRecruitment::after {
	content: '';
	width: 4px;
	height: 30px;
	background-color: #d70c18;
}

.consadoleRecruitment::before {
	margin-right: 10px;
	transform: rotate(-35deg)
}

.consadoleRecruitment::after {
	margin-left: 10px;
	transform: rotate(35deg)
}

.consadoleList {
	margin-bottom: 20px;
}

.consadoleList li {
	padding: 5px;
	margin-bottom: 5px;
	border-bottom: #fbb03b dotted 2px;
}

.consadoleLink a {
	background-color: var(--base-yellow);
	width: 50%;
	display: block;
	align-items: center;
	position: relative;
	padding: 16px 48px 16px 24px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
	color: var(--base-red) !important;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	margin: 0px auto var(--margin--l) auto;
}

.consadoleLink a:hover {
	background-color: #fbb03b;
}

.consadoleLink a::after {
	position: absolute;
	right: 10px;
	font-family: "Material Symbols Outlined";
	content: 'open_in_new';
	font-size: 1.2rem;
	font-weight: normal;
	padding-right: 0.5rem;
	vertical-align: middle;
}

.consadoleLinkEnd {
	color: #d70c18;
	text-align: center;
	font-weight: 600;
	font-size: var(--title-font-size-l);
	margin: var(--margin--m);
}