.indaweb-blog-grid {
	color: #fff;
	width: 100%;
}

.indaweb-blog-grid__controls {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.indaweb-blog-grid__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 100%;
}

.indaweb-blog-grid__filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 8px 16px;
	border: 0;
	border-radius: 4px;
	background: #414140;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	transition: background-color 0.2s ease, opacity 0.2s ease;
	white-space: nowrap;
}

.indaweb-blog-grid__filter:hover {
	opacity: 0.92;
}

.indaweb-blog-grid__filter.is-active {
	background: #E4002B;
}

.indaweb-blog-grid__search {
	position: relative;
	width: min(100%, 320px);
	margin-left: auto;
}

.indaweb-blog-grid__search-icon {
	position: absolute;
	left: 0;
	top: 2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	pointer-events: none;
}

.indaweb-blog-grid__search-icon img {
	display: block;
	width: 24px;
	height: 24px;
}

.indaweb-blog-grid__search-input {
	width: 100%;
	padding: 0 0 12px 40px;
	border: 0;
	border-bottom: 1px solid #fff;
	background: transparent;
	color: #fff;
	font-size: 16px;
	line-height: 1.2;
	outline: none;
	appearance: none;
}

.indaweb-blog-grid__search-input::placeholder {
	color: #D3D4D6;
	opacity: 1;
}

.indaweb-blog-grid__search-input:focus {
	border-bottom-color: #E4002B;
}

.indaweb-blog-grid__search-results {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 10px;
	max-height: 240px;
	overflow: auto;
}

.indaweb-blog-grid__search-result {
	display: block;
	padding: 0;
	border-radius: 4px;
	color: #fff;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	background: transparent;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.indaweb-blog-grid__search-result:hover {
	color: #E4002B;
}

.indaweb-blog-grid__search-result-title {
	display: block;
	font-weight: 500;
}

.indaweb-blog-grid__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 25px;
}

.indaweb-blog-grid__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 30px;
	border-radius: 4px;
	background: #2B2A29;
}

.indaweb-blog-grid__card-categories {
	margin-bottom: 18px;
	color: #A6AAAD;
	font-size: 14px;
	line-height: 1.4;
	word-break: break-word;
}

.indaweb-blog-grid__card-title {
	margin: 0 0 18px;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.15;
	word-break: break-word;
}

.indaweb-blog-grid__card-date {
	margin-bottom: 20px;
	color: #D3D4D6;
	font-size: 16px;
	line-height: 1.4;
}

.indaweb-blog-grid__card-image {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 3;
	margin-bottom: 24px;
	border-radius: 4px;
	background: #3a3938;
}

.indaweb-blog-grid__card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.indaweb-blog-grid__card-link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	align-self: flex-start;
	padding: 13px 20px;
	border: 1px solid #fff;
	border-radius: 4px;
	background: transparent;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.indaweb-blog-grid__card-link::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: var(--indaweb-blog-grid-arrow-icon, url("/wp-content/uploads/2026/05/arrow-down-right-white.svg"));
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: transform 0.2s ease;
	flex: 0 0 18px;
}

.indaweb-blog-grid__card-link:hover {
	border-color: #E4002B;
	background: #E4002B;
	color: #fff;
}

.indaweb-blog-grid__card-link:hover::after {
	transform: translate(1px, -1px);
}

.indaweb-blog-grid__empty {
	padding: 30px;
	border-radius: 4px;
	background: #2B2A29;
	color: #fff;
	font-size: 16px;
	margin-top: 25px;
}

.indaweb-related-posts {
	margin-top: 40px;
}

.indaweb-related-posts__heading {
	margin: 0 0 24px;
	color: #fff;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.1;
	text-align: center;
	width: 100%;
}

.indaweb-latest-posts-carousel {
	overflow: hidden;
	width: 100%;
	color: #fff;
}

.indaweb-latest-posts-carousel__track {
	display: flex;
	gap: 25px;
	overflow-x: auto;
	padding-bottom: 18px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}

.indaweb-latest-posts-carousel__track::-webkit-scrollbar {
	display: none;
}

.indaweb-latest-posts-carousel__track.is-dragging {
	cursor: grabbing;
}

.indaweb-latest-posts-carousel__slide {
	flex: 0 0 calc((100% - 75px) / 3.5);
	min-width: 0;
	scroll-snap-align: start;
}

.indaweb-latest-posts-carousel__slide .indaweb-blog-grid__card {
	height: 100%;
}

.indaweb-latest-posts-carousel__dots {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	margin-top: 22px;
}

.indaweb-latest-posts-carousel__dots .indaweb-settore-products__dot {
	background: rgba(65, 65, 64, 0.5);
}

.indaweb-latest-posts-carousel__dots .indaweb-settore-products__dot.is-active {
	background: #131211;
}

.indaweb-article-content {
	color: #fff;
}

.indaweb-article-content__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: 100px;
	align-items: start;
}

.indaweb-article-content__row + .indaweb-article-content__row {
	margin-top: 120px;
}

.indaweb-article-content__title {
	color: #fff;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.1;
	word-break: break-word;
}

.indaweb-article-content__description {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	min-width: 0;
}

.indaweb-article-content__description > :first-child {
	margin-top: 0;
}

.indaweb-article-content__description > :last-child {
	margin-bottom: 0;
}

.indaweb-settore-products {
	overflow: hidden;
	background: #D0CAC2;
	color: #000;
	padding: 96px 0 110px;
}

.indaweb-settore-products__section + .indaweb-settore-products__section {
	margin-top: 120px;
}

.indaweb-settore-products__header {
	width: 85%;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.indaweb-settore-products__title {
	flex: 1 1 auto;
	color: #000;
	font-size: 45px;
	font-weight: 300;
	line-height: 1.08;
	max-width: 60%;
	word-break: break-word;
}

.indaweb-settore-products__button {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 13px 20px;
	border: 1px solid #000;
	border-radius: 4px;
	background: transparent;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.indaweb-settore-products__button::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background: url("/wp-content/uploads/2026/05/arrow-down-right.svg") center / contain no-repeat;
	transition: filter 0.2s ease, transform 0.2s ease;
	flex: 0 0 18px;
}

.indaweb-settore-products__button:hover {
	background: #000;
	color: #fff;
}

.indaweb-settore-products__button:hover::after {
	filter: invert(1);
	transform: translate(1px, -1px);
}

.indaweb-settore-products__carousel-wrap {
	width: 100%;
	padding-left: 7.5vw;
	margin-top: 56px;
}

.indaweb-settore-products__carousel {
	display: flex;
	gap: 25px;
	overflow-x: auto;
	padding-bottom: 18px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}

.indaweb-settore-products__carousel::-webkit-scrollbar {
	display: none;
}

.indaweb-settore-products__carousel.is-dragging {
	cursor: grabbing;
}

.indaweb-settore-products__slide {
	flex: 0 0 clamp(280px, 31vw, 480px);
	scroll-snap-align: start;
}

.indaweb-settore-products__image {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: rgba(255, 255, 255, 0.26);
	border-radius: 4px;
}

.indaweb-settore-products__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.35s ease;
	will-change: transform;
}

.indaweb-settore-products__slide:hover .indaweb-settore-products__image img {
	transform: scale(1.05);
}

.indaweb-settore-products__dots {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	margin-top: 22px;
}

.indaweb-settore-products__dot {
	width: 65px;
	height: 3px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(65, 65, 64, 0.5);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.indaweb-settore-products__dot.is-active {
	background: #131211;
}

.indaweb-settore-projects {
	overflow: hidden;
	background: #131211;
	color: #fff;
	padding: 96px 0 110px;
}

.indaweb-settore-projects__section + .indaweb-settore-projects__section {
	margin-top: 120px;
}

.indaweb-settore-projects__header {
	width: 85%;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.indaweb-settore-projects__title {
	flex: 1 1 auto;
	max-width: 60%;
	color: #fff;
	font-size: 45px;
	font-weight: 300;
	line-height: 1.08;
	word-break: break-word;
}

.indaweb-settore-projects__button {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 13px 20px;
	border: 1px solid #E4002B;
	border-radius: 4px;
	background: #E4002B;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.indaweb-settore-projects__button::after,
.indaweb-settore-projects__card-button::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background: url("/wp-content/uploads/2026/05/arrow-down-right-white.svg") center / contain no-repeat;
	transition: transform 0.2s ease;
	flex: 0 0 18px;
}

.indaweb-settore-projects__button:hover {
	border-color: #fff;
	background: transparent;
	color: #fff;
}

.indaweb-settore-projects__button:hover::after,
.indaweb-settore-projects__card:hover .indaweb-settore-projects__card-button::after {
	transform: translate(1px, -1px);
}

.indaweb-settore-projects__carousel-wrap {
	width: 100%;
	padding-left: 7.5vw;
	margin-top: 56px;
}

.indaweb-settore-projects__carousel {
	display: flex;
	gap: 25px;
	overflow-x: auto;
	padding-bottom: 18px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}

.indaweb-settore-projects__carousel::-webkit-scrollbar {
	display: none;
}

.indaweb-settore-projects__carousel.is-dragging {
	cursor: grabbing;
}

.indaweb-settore-projects__slide {
	flex: 0 0 clamp(320px, 43vw, 660px);
	scroll-snap-align: start;
}

.indaweb-settore-projects__card {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: clamp(420px, 40vw, 620px);
	border-radius: 4px;
	background: #2B2A29;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 0 0 rgba(228, 0, 43, 0);
	transform: translateZ(0);
	transition: box-shadow 0.35s ease;
}

.indaweb-settore-projects__card:hover {
	box-shadow: 0 0 34px rgba(228, 0, 43, 0.55);
}

.indaweb-settore-projects__card-image {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.indaweb-settore-projects__card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
	will-change: transform;
}

.indaweb-settore-projects__card:hover .indaweb-settore-projects__card-image img {
	transform: scale(1.06);
}

.indaweb-settore-projects__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(17, 17, 16, 0) 0%, rgba(17, 17, 16, 0) 50%, #111110 100%);
	z-index: 1;
}

.indaweb-settore-projects__card-content {
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding: 34px;
}

.indaweb-settore-projects__card-copy {
	min-width: 0;
	transform: translateY(0);
	transition: transform 0.3s ease;
}

.indaweb-settore-projects__card-title {
	margin: 0;
	color: #fff;
	font-size: 40px;
	font-weight: 300;
	line-height: 1.08;
	word-break: break-word;
}

.indaweb-settore-projects__card-excerpt {
	max-width: 560px;
	margin: 14px 0 0;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.indaweb-settore-projects__card-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
	padding: 13px 20px;
	border: 1px solid #fff;
	border-radius: 4px;
	background: transparent;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.indaweb-settore-projects__card:hover .indaweb-settore-projects__card-button {
	border-color: #E4002B;
	background: #E4002B;
}

.indaweb-settore-projects__card:hover .indaweb-settore-projects__card-copy {
	transform: translateY(-28px);
}

.indaweb-settore-projects__card:hover .indaweb-settore-projects__card-excerpt {
	opacity: 1;
	transform: translateY(0);
}

.indaweb-settore-projects__dots {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	margin-top: 22px;
}

.indaweb-settore-projects__dots .indaweb-settore-products__dot {
	background: rgba(255, 255, 255, 0.5);
}

.indaweb-settore-projects__dots .indaweb-settore-products__dot.is-active {
	background: #fff;
}

@media (max-width: 1024px) {
	.indaweb-blog-grid__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.indaweb-blog-grid__search {
		width: min(100%, 360px);
	}

	.indaweb-related-posts__heading {
		font-size: 34px;
	}

	.indaweb-latest-posts-carousel__slide {
		flex-basis: calc((100% - 25px) / 2);
	}
}

@media (max-width: 767px) {
	.indaweb-blog-grid__controls {
		flex-direction: column;
	}

	.indaweb-blog-grid__search {
		width: 100%;
		margin-left: 0;
	}

	.indaweb-blog-grid__grid {
		grid-template-columns: 1fr;
	}

	.indaweb-blog-grid__card {
		padding: 24px;
	}

	.indaweb-blog-grid__card-title {
		font-size: 26px;
	}

	.indaweb-related-posts {
		margin-top: 28px;
	}

	.indaweb-related-posts__heading {
		font-size: 28px;
		margin-bottom: 18px;
		text-align: left;
	}

	.indaweb-latest-posts-carousel__slide {
		flex-basis: 86vw;
	}

	.indaweb-article-content__row {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.indaweb-article-content__row + .indaweb-article-content__row {
		margin-top: 64px;
	}

	.indaweb-article-content__title {
		font-size: 30px;
	}

	.indaweb-article-content__description {
		font-size: 16px;
	}

	.indaweb-settore-products {
		padding: 72px 0 84px;
	}

	.indaweb-settore-products__header {
		width: 90%;
		flex-direction: column;
		align-items: flex-start;
	}

	.indaweb-settore-products__title {
		max-width: 100%;
		font-size: 34px;
	}

	.indaweb-settore-products__carousel-wrap {
		padding-left: 5vw;
		margin-top: 36px;
	}

	.indaweb-settore-products__slide {
		flex-basis: clamp(240px, 72vw, 420px);
	}

	.indaweb-settore-products__dots {
		margin-top: 18px;
	}

	.indaweb-settore-projects {
		padding: 72px 0 84px;
	}

	.indaweb-settore-projects__header {
		width: 90%;
		flex-direction: column;
		align-items: flex-start;
	}

	.indaweb-settore-projects__title {
		max-width: 100%;
		font-size: 34px;
	}

	.indaweb-settore-projects__carousel-wrap {
		padding-left: 5vw;
		margin-top: 36px;
	}

	.indaweb-settore-projects__slide {
		flex-basis: clamp(280px, 72vw, 560px);
	}

	.indaweb-settore-projects__card-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.indaweb-settore-projects__card-copy {
		transform: translateY(0);
	}

	.indaweb-settore-projects__card-excerpt {
		opacity: 1;
		transform: none;
	}

	.indaweb-settore-projects__dots {
		margin-top: 18px;
	}
}

@media (max-width: 767px) {
	.indaweb-settore-products {
		padding: 60px 0 72px;
	}

	.indaweb-settore-products__header {
		width: 92%;
	}

	.indaweb-settore-products__title {
		font-size: 28px;
	}

	.indaweb-settore-products__button {
		width: auto;
	}

	.indaweb-settore-products__carousel-wrap {
		padding-left: 4vw;
		margin-top: 28px;
	}

	.indaweb-settore-products__slide {
		flex-basis: 80vw;
	}

	.indaweb-settore-products__dots {
		gap: 6px;
	}

	.indaweb-settore-products__dot {
		width: 52px;
	}

	.indaweb-settore-projects {
		padding: 60px 0 72px;
	}

	.indaweb-settore-projects__header {
		width: 92%;
	}

	.indaweb-settore-projects__title {
		font-size: 28px;
	}

	.indaweb-settore-projects__button {
		width: auto;
	}

	.indaweb-settore-projects__carousel-wrap {
		padding-left: 4vw;
		margin-top: 28px;
	}

	.indaweb-settore-projects__slide {
		flex-basis: 84vw;
	}

	.indaweb-settore-projects__card {
		min-height: 420px;
	}

	.indaweb-settore-projects__card-content {
		padding: 24px;
	}

	.indaweb-settore-projects__card-title {
		font-size: 30px;
	}

	.indaweb-settore-projects__card-button {
		padding: 12px 16px;
	}

	.indaweb-settore-projects__dots {
		gap: 6px;
	}
}
