/* ==========================================================================
   Signocore Language Switcher - Frontend Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

.sml-switcher {
	position: relative;
	display: inline-block;
	font-size: inherit;
	line-height: 1.4;
}

.sml-switcher *,
.sml-switcher *::before,
.sml-switcher *::after {
	box-sizing: border-box;
}

.sml-switcher-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.15s ease;
}

.sml-switcher-link:hover,
.sml-switcher-link:focus-visible {
	opacity: 0.75;
}

.sml-switcher-link.sml-active {
	font-weight: 600;
	cursor: default;
}

.sml-switcher-link.sml-active:hover,
.sml-switcher-link.sml-active:focus-visible {
	opacity: 1;
}

/* --------------------------------------------------------------------------
   Flag images
   -------------------------------------------------------------------------- */

.sml-flag {
	display: inline-block;
	vertical-align: middle;
	border-radius: 2px;
	flex-shrink: 0;
	/* Flags are 3:2; never let a box of another shape stretch them. */
	object-fit: contain;
}

/* --------------------------------------------------------------------------
   Dropdown style
   -------------------------------------------------------------------------- */

.sml-switcher-dropdown {
	position: relative;
}

.sml-switcher-current {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border: 1px solid currentColor;
	border-radius: 4px;
	background: transparent;
	color: inherit;
	font: inherit;
	cursor: pointer;
	transition: border-color 0.15s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.sml-switcher-current:hover,
.sml-switcher-current:focus-visible {
	border-color: currentColor;
	opacity: 0.75;
}

.sml-arrow {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 4px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	transition: transform 0.2s ease;
}

.sml-switcher-current[aria-expanded="true"] .sml-arrow {
	transform: rotate(180deg);
}

.sml-switcher-dropdown .sml-switcher-list {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999;
	min-width: 100%;
	margin: 4px 0 0;
	padding: 4px 0;
	list-style: none;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sml-switcher-dropdown .sml-switcher-list[data-open="true"] {
	display: block;
}

.sml-switcher-dropdown .sml-switcher-list li {
	margin: 0;
	padding: 0;
}

.sml-switcher-dropdown .sml-switcher-list .sml-switcher-link {
	display: flex;
	width: 100%;
	padding: 6px 12px;
	white-space: nowrap;
	color: #333;
}

.sml-switcher-dropdown .sml-switcher-list .sml-switcher-link:hover,
.sml-switcher-dropdown .sml-switcher-list .sml-switcher-link:focus-visible {
	background: #f5f5f5;
	opacity: 1;
}

.sml-switcher-dropdown .sml-switcher-list .sml-switcher-link.sml-active {
	background: #f0f0f0;
}

/* --------------------------------------------------------------------------
   List style
   -------------------------------------------------------------------------- */

.sml-switcher-list .sml-switcher-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sml-switcher-list .sml-switcher-list li {
	margin: 0;
	padding: 0;
}

.sml-switcher-list .sml-switcher-list .sml-switcher-link {
	display: flex;
	padding: 4px 0;
}

/* --------------------------------------------------------------------------
   Flags style
   -------------------------------------------------------------------------- */

.sml-switcher-flags {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.sml-switcher-flags .sml-switcher-link {
	display: inline-flex;
	padding: 2px;
	border-radius: 2px;
}

.sml-switcher-flags .sml-switcher-link.sml-active {
	outline: 2px solid currentColor;
	outline-offset: 1px;
}

.sml-switcher-flags .sml-flag {
	width: 24px;
	height: 16px;
}

/* --------------------------------------------------------------------------
   Inline style
   -------------------------------------------------------------------------- */

.sml-switcher-inline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.sml-separator {
	color: inherit;
	opacity: 0.4;
	user-select: none;
}

/* --------------------------------------------------------------------------
   Language name
   -------------------------------------------------------------------------- */

.sml-lang-name {
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Menu integration
   -------------------------------------------------------------------------- */

.sml-menu-switcher-item a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.sml-menu-switcher-item .sml-flag {
	display: inline-block;
	vertical-align: middle;
	border-radius: 2px;
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
	.sml-switcher-dropdown .sml-switcher-list {
		min-width: 160px;
	}

	.sml-switcher-inline {
		gap: 6px;
	}

	.sml-switcher-flags {
		gap: 6px;
	}
}


/**
 * ThinkRank Breadcrumb Styles
 *
 * Frontend styles for breadcrumb navigation.
 * This file lives in static/ to survive webpack builds.
 *
 * @package ThinkRank
 * @since 1.0.0
 */

.thinkrank-breadcrumbs {
	padding: 0.75rem 0;
	font-size: 0.875rem;
	color: #666;
}

.thinkrank-breadcrumbs a {
	color: #2271b1;
	text-decoration: none;
}

.thinkrank-breadcrumbs a:hover {
	text-decoration: underline;
}

.thinkrank-breadcrumbs .breadcrumb-current {
	color: #1d2327;
	font-weight: 500;
}

.thinkrank-breadcrumbs .breadcrumb-separator {
	margin: 0 0.5rem;
	color: #999;
}

/**
 * ThinkRank Hero Section (Site Identity → Hero & Branding)
 *
 * Base styling for the [thinkrank_hero] shortcode / thinkrank_hero() output.
 * Themes may override any of these rules.
 */
.thinkrank-hero {
	position: relative;
	padding: 4rem 1.5rem;
	text-align: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.thinkrank-hero--has-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.thinkrank-hero__inner {
	position: relative;
	max-width: 48rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.thinkrank-hero__title {
	margin: 0;
	font-size: 2.25rem;
	line-height: 1.15;
}

.thinkrank-hero__subtitle {
	margin: 0;
	font-size: 1.125rem;
	opacity: 0.9;
}

.thinkrank-hero--has-image .thinkrank-hero__title,
.thinkrank-hero--has-image .thinkrank-hero__subtitle {
	color: #fff;
}

.thinkrank-hero__cta {
	display: inline-block;
	margin-top: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: #2563eb;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
}

.thinkrank-hero__cta:hover,
.thinkrank-hero__cta:focus {
	background: #1d4ed8;
}

:root{--greenshift-transition:cubic-bezier(0.165, 0.84, 0.44, 1)}*{box-sizing:border-box}table{border-collapse:collapse;width:100%}img{max-width:100%;height:auto}.is-style-greenshift-button,.wp-block-button__link,button,input:focus,input[type=button],input[type=submit],textarea:focus{transition:all .3s var(--greenshift-transition)}.wp-block-search__input,input,select,textarea{border:1px solid var(--wp--preset--color--lightborder);border-radius:0;width:100%;padding:9px 15px;transition:border-color .3s var(--greenshift-transition),background-color .3s var(--greenshift-transition);background-color:var(--wp--preset--color--inputbg);border-radius:0;color:var(--wp--preset--color--inputtext);font-size:var(--wp--preset--font-size--medium);font-weight:var(--wp--custom--font-weight--normal);line-height:var(--wp--custom--line-height--medium);font-family:var(--wp--preset--font-family--primary)}input,select{font-size:var(--wp--preset--font-size--small);line-height:var(--wp--custom--line-height--medium)}select{padding-right:25px;background-repeat:no-repeat,repeat;background-size:8px auto,100%;background-position:right 10px top 50%,0 0}textarea{padding:10px 20px}input[type=checkbox],input[type=radio]{width:16px;height:16px;flex-shrink:0;display:inline-block;margin:0;margin-right:8px;text-align:center;vertical-align:middle;cursor:pointer;border:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input:focus,textarea:focus{background-color:var(--wp--preset--color--lightbg)}input[type=button],input[type=email],input[type=search],input[type=submit],input[type=text],select,textarea{-webkit-appearance:none;appearance:none}::placeholder{color:var(--wp--preset--color--black);font-size:var(--wp--preset--font-size--small);opacity:.6}img.alignleft{margin-right:2em}img.alignright{margin-left:2em}.site-content{min-height:400px}footer.wp-block-template-part{margin-block-start: 0;}td,th{border:1px solid var(--wp--preset--color--lightborder);padding: 6px 12px;}.site-header{position: relative;z-index: 50;}
:where(html.wpc-bgl255) select{background-image:url("data:image/svg+xml,%3Csvg width='21' height='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.5.379L20.621 2.5 10.5 12.621.379 2.5 2.5.379l8 8z' fill='%234F5D6D' fill-rule='nonzero'/%3E%3C/svg%3E")}