/* @override 
	https://iglesis.websmart.cl/2026/wp-content/plugins/ws-fw-portfolio-gallery-v1-7-5/assets/css/gallery.css?* */
	
.ws-fw-portfolio {
	--ws-fw-gap: 24px;
	--ws-fw-radius: 0;
	--ws-fw-overlay: rgba(0, 0, 0, .58);
	--ws-fw-text: #fff;
	--ws-fw-muted: rgba(255, 255, 255, .86);
	--ws-fw-accent: #222;
}

.ws-fw-portfolio-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 0 0 28px;
}

.ws-fw-portfolio-filter button {
	appearance: none;
	border: 1px solid currentColor;
	background: transparent;
	border-radius: 999px;
	cursor: pointer;
	font: inherit;
	line-height: 1;
	padding: 10px 16px;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

.ws-fw-portfolio-filter button:hover,
.ws-fw-portfolio-filter button.is-active {
	background: var(--ws-fw-accent);
	border-color: var(--ws-fw-accent);
	color: #fff;
}

.ws-fw-portfolio-grid {
	display: grid;
	gap: var(--ws-fw-gap);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-fw-portfolio-cols-1 .ws-fw-portfolio-grid { grid-template-columns: 1fr; }
.ws-fw-portfolio-cols-2 .ws-fw-portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ws-fw-portfolio-cols-3 .ws-fw-portfolio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ws-fw-portfolio-cols-4 .ws-fw-portfolio-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ws-fw-portfolio-card {
	min-width: 0;
	opacity: 1;
	transform: scale(1);
	transform-origin: center center;
	will-change: opacity, transform, left, top, width, height;
}

.ws-fw-portfolio-card.is-hidden {
	display: none;
}

.ws-fw-portfolio-grid.is-ws-filter-measuring {
	visibility: hidden;
}

.ws-fw-portfolio-grid.is-ws-filter-animating {
	display: block;
	overflow: visible;
}

.ws-fw-portfolio-grid.is-ws-filter-animating .ws-fw-portfolio-card {
	box-sizing: border-box;
	transform-origin: center center;
}

.ws-fw-portfolio-grid.is-ws-filter-animating .ws-fw-portfolio-card.is-leaving {
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.ws-fw-portfolio-card {
		transition: none !important;
	}
}

.ws-fw-portfolio-link {
	color: inherit;
	display: block;
	text-decoration: none;
}

.ws-fw-portfolio-media {
	background: #f3f3f3;
	border-radius: var(--ws-fw-radius);
	overflow: hidden;
	position: relative;
}

.ws-fw-portfolio-landscape .ws-fw-portfolio-media { aspect-ratio: 16 / 10; }
.ws-fw-portfolio-square .ws-fw-portfolio-media { aspect-ratio: 1 / 1; }
.ws-fw-portfolio-portrait .ws-fw-portfolio-media { aspect-ratio: 3 / 4; }

.ws-fw-portfolio-img,
.ws-fw-portfolio-placeholder {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ws-fw-portfolio-placeholder {
	background: linear-gradient(135deg, #e9e9e9, #f8f8f8);
}

.ws-fw-portfolio-overlay {
	align-items: center;
	background: var(--ws-fw-overlay);
	color: var(--ws-fw-text);
	display: flex;
	flex-direction: column;
	inset: 0;
	justify-content: center;
	opacity: 0;
	padding: 24px;
	position: absolute;
	text-align: center;
	transition: opacity .25s ease;
}

.ws-fw-portfolio-link:hover .ws-fw-portfolio-overlay,
.ws-fw-portfolio-link:focus-visible .ws-fw-portfolio-overlay {
	opacity: 1;
}

.ws-fw-portfolio-title {
	color: inherit;
	font-size: clamp(18px, 2vw, 26px);
	line-height: 1.2;
	margin: 0;
}

.ws-fw-portfolio-excerpt {
	color: var(--ws-fw-muted);
	font-size: 15px;
	line-height: 1.45;
	margin-top: 10px;
	max-width: 34em;
}

.ws-fw-portfolio-excerpt p {
	margin: 0;
}

.ws-fw-portfolio-categories {
	font-size: 13px;
	margin-top: 10px;
	opacity: .72;
}

.ws-fw-portfolio-button {
	display: inline-block;
	margin-top: 12px;
	text-decoration: underline;
}

.ws-fw-portfolio-empty {
	margin: 0;
	text-align: center;
}

@media (max-width: 900px) {
	.ws-fw-portfolio-cols-3 .ws-fw-portfolio-grid,
	.ws-fw-portfolio-cols-4 .ws-fw-portfolio-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.ws-fw-portfolio-grid,
	.ws-fw-portfolio-cols-2 .ws-fw-portfolio-grid,
	.ws-fw-portfolio-cols-3 .ws-fw-portfolio-grid,
	.ws-fw-portfolio-cols-4 .ws-fw-portfolio-grid {
		grid-template-columns: 1fr;
	}

	.ws-fw-portfolio-overlay {
		opacity: 1;
	}
}

/* Single project image gallery */
.ws-fw-project-gallery {
	margin: 40px 0;
}

.ws-fw-project-gallery-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--ws-fw-gap, 24px);
}

.ws-fw-project-gallery-cols-1 .ws-fw-project-gallery-list { grid-template-columns: 1fr; }
.ws-fw-project-gallery-cols-2 .ws-fw-project-gallery-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ws-fw-project-gallery-cols-3 .ws-fw-project-gallery-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ws-fw-project-gallery-cols-4 .ws-fw-project-gallery-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ws-fw-project-gallery-item {
	margin: 0;
}

.ws-fw-project-gallery-link {
	position: relative;
	display: block;
	overflow: hidden;
	background: #f2f2f2;
	text-decoration: none;
}

.ws-fw-project-gallery-landscape .ws-fw-project-gallery-link { aspect-ratio: 16 / 9; }
.ws-fw-project-gallery-square .ws-fw-project-gallery-link { aspect-ratio: 1 / 1; }
.ws-fw-project-gallery-portrait .ws-fw-project-gallery-link { aspect-ratio: 3 / 4; }

.ws-fw-project-gallery-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.ws-fw-project-gallery-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	line-height: 1;
	color: #fff;
	background: rgba(0,0,0,0.35);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.ws-fw-project-gallery-link:hover .ws-fw-project-gallery-img,
.ws-fw-project-gallery-link:focus .ws-fw-project-gallery-img {
	transform: scale(1.04);
}

.ws-fw-project-gallery-link:hover .ws-fw-project-gallery-overlay,
.ws-fw-project-gallery-link:focus .ws-fw-project-gallery-overlay {
	opacity: 1;
}

@media (max-width: 900px) {
	.ws-fw-project-gallery-cols-3 .ws-fw-project-gallery-list,
	.ws-fw-project-gallery-cols-4 .ws-fw-project-gallery-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.ws-fw-project-gallery-list,
	.ws-fw-project-gallery-cols-2 .ws-fw-project-gallery-list,
	.ws-fw-project-gallery-cols-3 .ws-fw-project-gallery-list,
	.ws-fw-project-gallery-cols-4 .ws-fw-project-gallery-list {
		grid-template-columns: 1fr;
	}
}

/* Single project hero */
.ws-fw-project-hero {
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	display: flex;
	justify-content: center;
	margin: 0 0 40px;
	min-height: clamp(320px, 48vw, 560px);
	overflow: hidden;
	padding: 80px 24px;
	position: relative;
	text-align: center;
	width: 100%;
}

.ws-fw-project-hero-overlay {
	background: #000;
	inset: 0;
	mix-blend-mode: multiply;
	opacity: .5;
	position: absolute;
	z-index: 1;
}

.ws-fw-project-hero-inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 1100px;
	min-height: inherit;
	position: relative;
	width: 100%;
	z-index: 2;
}

.ws-fw-project-hero-epigrafe {
	color: #fff;
	font-size: clamp(7.2px, 1.2vw, 15.2px);
	font-weight: 600;
	letter-spacing: .08em;
	line-height: 1.3;
	margin: 0 0 .75em;
	text-align: center;
	text-transform: uppercase;
}

.ws-fw-project-hero-title {
	color: #fff;
	font-size: clamp(32px, 5.4vw, 72px);
	font-weight: 700;
	line-height: 1.08;
	margin: 0;
	text-align: center;
}

@media (max-width: 600px) {
	.ws-fw-project-hero {
		margin-bottom: 28px;
		min-height: 300px;
		padding: 64px 20px;
	}
}

/* Portfolio category hero */
.ws-fw-category-hero {
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	display: flex;
	justify-content: center;
	margin: 0 0 40px;
	min-height: 460px;
	overflow: hidden;
	padding: 80px 24px;
	position: relative;
	text-align: center;
	width: 100%;
}

.ws-fw-category-hero-overlay {
	inset: 0;
	mix-blend-mode: multiply;
	position: absolute;
	z-index: 1;
}

.ws-fw-category-hero-inner {
	max-width: 1100px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.ws-fw-category-hero-title {
	color: #fff;
	font-size: clamp(36px, 6vw, 76px);
	font-weight: 700;
	line-height: 1.08;
	margin: 0;
}

.ws-fw-category-hero-description {
	color: #fff;
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.45;
	margin: 18px auto 0;
	max-width: 760px;
}

.ws-fw-category-hero-left {
	text-align: left;
}

.ws-fw-category-hero-center {
	text-align: center;
}

.ws-fw-category-hero-right {
	text-align: right;
}

.ws-fw-category-hero-left .ws-fw-category-hero-description {
	margin-left: 0;
}

.ws-fw-category-hero-right .ws-fw-category-hero-description {
	margin-right: 0;
}

@media (max-width: 600px) {
	.ws-fw-category-hero {
		min-height: 320px;
		padding: 64px 20px;
	}
}

/* Project gallery lightbox */
html.ws-fw-lightbox-open,
html.ws-fw-lightbox-open body {
	overflow: hidden;
}

.ws-fw-lightbox {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity .24s ease;
	z-index: 999999;
}

.ws-fw-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

.ws-fw-lightbox-backdrop {
	background: rgba(0, 0, 0, .88);
	inset: 0;
	position: absolute;
}

.ws-fw-lightbox-stage {
	align-items: center;
	display: flex;
	justify-content: center;
	max-height: 100vh;
	max-width: 100vw;
	padding: 48px 72px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.ws-fw-lightbox-figure {
	margin: 0;
	max-height: calc(100vh - 96px);
	max-width: min(1180px, calc(100vw - 144px));
	position: relative;
	transform: scale(.98);
	transition: transform .24s ease;
}

.ws-fw-lightbox.is-open .ws-fw-lightbox-figure {
	transform: scale(1);
}

.ws-fw-lightbox-image {
	box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
	display: block;
	height: auto;
	max-height: calc(100vh - 132px);
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.ws-fw-lightbox-caption {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 14px;
	gap: 18px;
	justify-content: space-between;
	line-height: 1.4;
	margin-top: 14px;
	opacity: .82;
}

.ws-fw-lightbox-close,
.ws-fw-lightbox-nav {
	appearance: none;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	position: absolute;
	transition: background-color .2s ease, transform .2s ease;
	z-index: 3;
}

.ws-fw-lightbox-close:hover,
.ws-fw-lightbox-nav:hover,
.ws-fw-lightbox-close:focus-visible,
.ws-fw-lightbox-nav:focus-visible {
	background: rgba(255, 255, 255, .18);
	outline: none;
	transform: scale(1.04);
}

.ws-fw-lightbox-close {
	font-size: 36px;
	height: 48px;
	line-height: 42px;
	right: 22px;
	top: 22px;
	width: 48px;
}

.ws-fw-lightbox-nav {
	font-size: 52px;
	height: 64px;
	line-height: 52px;
	top: 50%;
	transform: translateY(-50%);
	width: 64px;
}

.ws-fw-lightbox-nav:hover,
.ws-fw-lightbox-nav:focus-visible {
	transform: translateY(-50%) scale(1.04);
}

.ws-fw-lightbox-prev { left: 24px; }
.ws-fw-lightbox-next { right: 24px; }

.ws-fw-lightbox.has-single-image .ws-fw-lightbox-nav {
	display: none;
}

.ws-fw-lightbox.is-loading .ws-fw-lightbox-image {
	opacity: .35;
}

@media (max-width: 700px) {
	.ws-fw-lightbox-stage {
		padding: 64px 18px 32px;
	}

	.ws-fw-lightbox-figure {
		max-height: calc(100vh - 96px);
		max-width: calc(100vw - 36px);
	}

	.ws-fw-lightbox-image {
		max-height: calc(100vh - 150px);
	}

	.ws-fw-lightbox-nav {
		bottom: 16px;
		font-size: 42px;
		height: 48px;
		top: auto;
		transform: none;
		width: 48px;
	}

	.ws-fw-lightbox-nav:hover,
	.ws-fw-lightbox-nav:focus-visible {
		transform: scale(1.04);
	}

	.ws-fw-lightbox-prev { left: calc(50% - 60px); }
	.ws-fw-lightbox-next { right: calc(50% - 60px); }
	.ws-fw-lightbox-close { right: 16px; top: 14px; }
}

/* Team gallery */
.ws-fw-team-gallery {
	--ws-fw-gap: 24px;
	--ws-fw-team-ratio: 3 / 4;
	--ws-fw-team-text: inherit;
	--ws-fw-team-muted: rgba(0, 0, 0, .68);
}

.ws-fw-team-grid {
	display: grid;
	gap: var(--ws-fw-gap);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-fw-team-cols-1 .ws-fw-team-grid { grid-template-columns: 1fr; }
.ws-fw-team-cols-2 .ws-fw-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ws-fw-team-cols-3 .ws-fw-team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ws-fw-team-cols-4 .ws-fw-team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ws-fw-team-cols-5 .ws-fw-team-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.ws-fw-team-cols-6 .ws-fw-team-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.ws-fw-team-card {
	min-width: 0;
	text-align: center;
}

.ws-fw-team-photo-link,
.ws-fw-team-photo {
	display: block;
}

.ws-fw-team-photo {
	aspect-ratio: var(--ws-fw-team-ratio);
	background: #f2f2f2;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.ws-fw-team-landscape .ws-fw-team-photo { --ws-fw-team-ratio: 4 / 3; }
.ws-fw-team-square .ws-fw-team-photo { --ws-fw-team-ratio: 1 / 1; }
.ws-fw-team-portrait .ws-fw-team-photo { --ws-fw-team-ratio: 3 / 4; }

.ws-fw-team-img,
.ws-fw-team-placeholder {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.ws-fw-team-placeholder {
	background: linear-gradient(135deg, #e9e9e9, #f8f8f8);
}

.ws-fw-team-content {
	padding-top: 18px;
}

.ws-fw-team-name {
	color: var(--ws-fw-team-text);
	font-size: clamp(18px, 1.65vw, 24px);
	line-height: 1.25;
	margin: 0;
}

.ws-fw-team-name a {
	color: inherit;
	text-decoration: none;
}

.ws-fw-team-name a:hover,
.ws-fw-team-name a:focus-visible {
	text-decoration: underline;
}

.ws-fw-team-position {
	color: var(--ws-fw-team-muted);
	font-size: 14px;
	line-height: 1.4;
	margin-top: 6px;
}

.ws-fw-team-excerpt {
	font-size: 15px;
	line-height: 1.5;
	margin-top: 12px;
}

.ws-fw-team-excerpt p {
	margin: 0;
}

.ws-fw-team-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	justify-content: center;
	margin-top: 12px;
}

.ws-fw-team-socials a {
	font-size: 13px;
	text-decoration: underline;
}

@media (max-width: 1100px) {
	.ws-fw-team-cols-5 .ws-fw-team-grid,
	.ws-fw-team-cols-6 .ws-fw-team-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.ws-fw-team-cols-3 .ws-fw-team-grid,
	.ws-fw-team-cols-4 .ws-fw-team-grid,
	.ws-fw-team-cols-5 .ws-fw-team-grid,
	.ws-fw-team-cols-6 .ws-fw-team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.ws-fw-team-grid,
	.ws-fw-team-cols-2 .ws-fw-team-grid,
	.ws-fw-team-cols-3 .ws-fw-team-grid,
	.ws-fw-team-cols-4 .ws-fw-team-grid,
	.ws-fw-team-cols-5 .ws-fw-team-grid,
	.ws-fw-team-cols-6 .ws-fw-team-grid {
		grid-template-columns: 1fr;
	}
}

/* Team gallery adjustments v1.7.1: robust grid + hover overlay */
.ws-fw-team-gallery {
	--ws-fw-gap: 24px;
	--ws-fw-team-ratio: 3 / 4;
	--ws-fw-team-overlay-bg: rgba(0, 0, 0, .58);
	--ws-fw-team-overlay-text: #fff;
	--ws-fw-team-overlay-muted: rgba(255, 255, 255, .9);
	clear: both;
	width: 100%;
}

.ws-fw-team-gallery .ws-fw-team-grid {
	display: grid !important;
	gap: var(--ws-fw-gap) !important;
	grid-auto-flow: row;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	width: 100%;
}

.ws-fw-team-gallery.ws-fw-team-cols-1 .ws-fw-team-grid { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.ws-fw-team-gallery.ws-fw-team-cols-2 .ws-fw-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.ws-fw-team-gallery.ws-fw-team-cols-3 .ws-fw-team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.ws-fw-team-gallery.ws-fw-team-cols-4 .ws-fw-team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.ws-fw-team-gallery.ws-fw-team-cols-5 .ws-fw-team-grid { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
.ws-fw-team-gallery.ws-fw-team-cols-6 .ws-fw-team-grid { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }

.ws-fw-team-gallery .ws-fw-team-grid > .ws-fw-team-card {
	box-sizing: border-box;
	clear: none !important;
	display: block !important;
	float: none !important;
	margin: 0 !important;
	max-width: none !important;
	min-width: 0;
	overflow: hidden;
	padding: 0 !important;
	position: relative;
	text-align: center;
	width: auto !important;
}

.ws-fw-team-gallery .ws-fw-team-photo-link,
.ws-fw-team-gallery .ws-fw-team-photo {
	display: block;
}

.ws-fw-team-gallery .ws-fw-team-photo {
	aspect-ratio: var(--ws-fw-team-ratio);
	background: #f2f2f2;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.ws-fw-team-gallery.ws-fw-team-landscape .ws-fw-team-photo { --ws-fw-team-ratio: 4 / 3; }
.ws-fw-team-gallery.ws-fw-team-square .ws-fw-team-photo { --ws-fw-team-ratio: 1 / 1; }
.ws-fw-team-gallery.ws-fw-team-portrait .ws-fw-team-photo { --ws-fw-team-ratio: 3 / 4; }

.ws-fw-team-gallery .ws-fw-team-img,
.ws-fw-team-gallery .ws-fw-team-placeholder {
	display: block;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
	transition: transform .35s ease;
	width: 100%;
}

.ws-fw-team-gallery .ws-fw-team-placeholder {
	background: linear-gradient(135deg, #e9e9e9, #f8f8f8);
}

.ws-fw-team-hover-overlay .ws-fw-team-content {
	align-items: center;
	background: var(--ws-fw-team-overlay-bg);
	box-sizing: border-box;
	color: var(--ws-fw-team-overlay-text);
	display: flex;
	flex-direction: column;
	height: 100%;
	inset: 0;
	justify-content: center;
	opacity: 0;
	padding: clamp(18px, 8%, 44px);
	position: absolute;
	transform: scale(.96);
	transition: opacity .32s ease, transform .32s ease;
	width: 100%;
	z-index: 2;
}

.ws-fw-team-hover-overlay .ws-fw-team-card:hover .ws-fw-team-content,
.ws-fw-team-hover-overlay .ws-fw-team-card:focus-within .ws-fw-team-content {
	opacity: 1;
	transform: scale(1);
}

.ws-fw-team-hover-overlay .ws-fw-team-card:hover .ws-fw-team-img,
.ws-fw-team-hover-overlay .ws-fw-team-card:focus-within .ws-fw-team-img {
	transform: scale(1.04);
}

.ws-fw-team-gallery .ws-fw-team-name {
	color: inherit;
	font-size: clamp(28px, 4.2vw, 56px);
	font-weight: 300;
	line-height: 1.05;
	margin: 0;
	max-width: 90%;
}

.ws-fw-team-gallery .ws-fw-team-name a {
	color: inherit;
	text-decoration: none;
}

.ws-fw-team-gallery .ws-fw-team-name a:hover,
.ws-fw-team-gallery .ws-fw-team-name a:focus-visible {
	text-decoration: none;
}

.ws-fw-team-gallery .ws-fw-team-position {
	color: var(--ws-fw-team-overlay-muted);
	font-size: clamp(16px, 1.9vw, 26px);
	font-weight: 300;
	line-height: 1.45;
	margin-top: 14px;
	max-width: 90%;
}

.ws-fw-team-gallery .ws-fw-team-excerpt {
	color: var(--ws-fw-team-overlay-muted);
	font-size: 15px;
	line-height: 1.5;
	margin-top: 14px;
	max-width: 90%;
}

.ws-fw-team-gallery .ws-fw-team-excerpt p { margin: 0; }

.ws-fw-team-gallery .ws-fw-team-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 14px;
	justify-content: center;
	margin-top: 22px;
}

.ws-fw-team-gallery .ws-fw-team-socials a {
	align-items: center;
	border: 2px solid currentColor;
	border-radius: 4px;
	box-sizing: border-box;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	height: 52px;
	justify-content: center;
	line-height: 1;
	min-width: 52px;
	padding: 0 12px;
	text-decoration: none;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}

.ws-fw-team-gallery .ws-fw-team-socials a:hover,
.ws-fw-team-gallery .ws-fw-team-socials a:focus-visible {
	background: #fff;
	color: #111;
	transform: translateY(-1px);
}

.ws-fw-team-static .ws-fw-team-content {
	padding-top: 18px;
	position: static;
}

.ws-fw-team-static .ws-fw-team-name {
	font-size: clamp(18px, 1.65vw, 24px);
	font-weight: inherit;
	line-height: 1.25;
	max-width: none;
}

.ws-fw-team-static .ws-fw-team-position,
.ws-fw-team-static .ws-fw-team-excerpt {
	color: rgba(0, 0, 0, .68);
	font-size: 14px;
	max-width: none;
}

.ws-fw-team-static .ws-fw-team-socials a {
	border: 0;
	color: inherit;
	display: inline;
	height: auto;
	min-width: 0;
	padding: 0;
	text-decoration: underline;
}

@media (max-width: 1100px) {
	.ws-fw-team-gallery.ws-fw-team-cols-5 .ws-fw-team-grid,
	.ws-fw-team-gallery.ws-fw-team-cols-6 .ws-fw-team-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 900px) {
	.ws-fw-team-gallery.ws-fw-team-cols-3 .ws-fw-team-grid,
	.ws-fw-team-gallery.ws-fw-team-cols-4 .ws-fw-team-grid,
	.ws-fw-team-gallery.ws-fw-team-cols-5 .ws-fw-team-grid,
	.ws-fw-team-gallery.ws-fw-team-cols-6 .ws-fw-team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.ws-fw-team-gallery .ws-fw-team-name { font-size: clamp(24px, 7vw, 44px); }
	.ws-fw-team-gallery .ws-fw-team-position { font-size: clamp(15px, 3.4vw, 22px); }
}

@media (max-width: 600px) {
	.ws-fw-team-gallery .ws-fw-team-grid,
	.ws-fw-team-gallery.ws-fw-team-cols-2 .ws-fw-team-grid,
	.ws-fw-team-gallery.ws-fw-team-cols-3 .ws-fw-team-grid,
	.ws-fw-team-gallery.ws-fw-team-cols-4 .ws-fw-team-grid,
	.ws-fw-team-gallery.ws-fw-team-cols-5 .ws-fw-team-grid,
	.ws-fw-team-gallery.ws-fw-team-cols-6 .ws-fw-team-grid {
		grid-template-columns: 1fr !important;
	}
}

.ws-fw-team-gallery .ws-fw-team-social-icon {
	font-size: 20px;
	line-height: 1;
}

.ws-fw-team-gallery .ws-fw-team-social-icon-img {
	display: block;
	height: auto;
	max-height: 24px;
	max-width: 24px;
	object-fit: contain;
	width: 20px;
}

.ws-fw-team-gallery .ws-fw-team-social-fallback {
	display: inline-block;
	line-height: 1;
	text-transform: lowercase;
}

.ws-fw-team-gallery .ws-fw-team-social-icon-svg,
.ws-fw-team-static .ws-fw-team-social-icon-svg {
	align-items: center;
	display: inline-flex;
	height: 1.35em;
	justify-content: center;
	line-height: 1;
	width: 1.35em;
}

.ws-fw-team-gallery .ws-fw-team-social-icon-svg svg,
.ws-fw-team-static .ws-fw-team-social-icon-svg svg {
	display: block;
	height: 1.35em;
	width: 1.35em;
}
