section.search-results {
	margin-bottom: 80px;
	article {
		padding: 20px 0 20px 0;
		border-bottom: 1px solid var(--light-grey-border);

		img {
			width: 100%;
			max-width: 400px;
			height: auto;
		}
	}

	h2 {
		font-size: 2.5rem;
	}

	h3 {
		margin: 40px 0 10px 0;
		color: var(--black-text);
		font-size: 1.875rem;
	}

	form.search-form {
		input.search-field {
			max-width: 500px;
		}
	}

	@media (max-width: 1100px) {
		h1 {
			font-size: 40px;
		}
	}
}

section.general-content {
	margin-bottom: 80px;
	.section-inner {
		max-width: var(--content-width-narrow);
	}

	.general-content-cols {
		display: flex;
		gap: 40px;
		margin-bottom: 40px;
	}

	.general-content-image-col {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: flex-start;

		img {
			width: 100%;
			max-width: 100%;
			height: auto;
			margin-bottom: 20px;
		}
	}

	.general-content-text-col {
		flex: 1;
		display: flex;
		flex-direction: column;

		h2,
		h3 {
			font-size: 2.1875rem;
			margin-bottom: 20px;
			font-weight: bold;
			color: var(--black-text);
		}

		a.read-more {
			font-weight: bold;
		}
	}

	@media (max-width: 1100px) {
		margin-bottom: 40px;
		.general-content-cols {
			display: block;
			margin-bottom: 20px;
		}
		.general-content-text-col {
			h2,
			h3 {
				font-size: 1.5625rem;
			}
		}
	}
}

section.gallery {
	margin-bottom: 80px;
	.section-inner {
		max-width: var(--content-width-narrow);
	}
}

section.clients-list {
	margin-bottom: 80px;
	overflow-x: auto;

	&::-webkit-scrollbar {
		height: 12px;
	}
	&::-webkit-scrollbar-thumb {
		background: #ccc;
		border-radius: 6px;
	}
	&::-webkit-scrollbar-track {
		background: #eee;
	}
	.section-inner {
		max-width: var(--content-width-narrow);
		display: flex;
		height: 150px;
		justify-content: space-between;
	}

	img {
		height: 150px;
		width: auto;
		display: block;
		margin: 0 20px 0 20px;

		&:first-child {
			margin-left: 0;
		}
		&:last-child {
			margin-right: 0;
		}
	}

	@media (max-width: 1300px) {
		.section-inner {
			height: 100px;
		}
		img {
			height: 100px;
		}
	}
}
