/**
 * Content with Single Image panel styles.
 */

.panel-content-with-image {
	padding: 80px 0;
	background: #fff;
}

.panel-content-with-image__layout {
	display: grid;
	grid-template-columns: minmax(0, 505px) minmax(0, 655px);
	justify-content: space-between;
	align-items: start;
	gap: 40px 80px;
}

.panel-content-with-image__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.panel-content-with-image__eyebrow {
	margin: 0 0 8px;
	color: var(--ppi-blue, #089ef7);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.panel-content-with-image__title {
	margin: 0 0 36px;
	color: var(--ppi-navy, #1a1a4a);
	font-size: clamp(32px, 3.2vw, 39px);
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.39px;
}
.panel-class-reputation .panel-content-with-image__title {
	max-width:440px;
}

.panel-content-with-image--has-eyebrow .panel-content-with-image__title {
	font-size: clamp(36px, 4vw, 49px);
	line-height: 1.1;
	letter-spacing: -0.735px;
}

.panel-content-with-image__body {
	margin: 0 0 36px;
	color: var(--ppi-navy, #1a1a4a);
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
}

.panel-content-with-image__body:last-child {
	margin-bottom: 0;
}

.panel-content-with-image__body p {
	margin: 0;
}

.panel-content-with-image__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 5px 21px;
	border: 2px solid var(--ppi-blue, #089ef7);
	border-radius: 30px;
	color: var(--ppi-navy, #1a1a4a);
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.panel-content-with-image__button:hover,
.panel-content-with-image__button:focus {
	background-color: var(--ppi-blue, #089ef7);
	color: #fff;
	text-decoration: none;
}

.panel-content-with-image__media {
	width: 100%;
	max-width: 655px;
	justify-self: end;
}

.panel-content-with-image__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 655 / 522;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.panel-content-with-image__layout {
		grid-template-columns: 1fr;
	}

	.panel-content-with-image__media {
		max-width: none;
		justify-self: stretch;
	}
}

@media (max-width: 767px) {
	.panel-content-with-image {
		padding: 30px 0;
	}

	.panel-content-with-image__title {
		margin-bottom: 24px;
	}

	.panel-content-with-image__body {
		margin-bottom: 24px;
		font-size: 18px;
	}

	.panel-content-with-image--has-eyebrow .panel-content-with-image__title {
		font-size: clamp(32px, 8vw, 40px);
	}

	.panel-content-with-image.panel-class-our-story {
	    padding-bottom: 0;
	}
}
