/**Global**/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #ffffff;
	color: #333;
}

.container {
	max-width: 100%;
	margin: auto;
	background: #ffffff;
}

/**Image text section**/

.image-text {
	overflow: hidden;
}

.image-text__points {
	list-style-type: none;
}

.image-text__points > *:not(:first-child) {
	margin-top: 0.5rem;
}

.image-text__point {
	display: flex;
	align-items: center;
	gap: 0.125rem;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -0.02625rem;
	color: var(--color-accent);
}

.image-text__wrapper {
	display: grid;
	align-items: center;
	gap: 2rem;
}

.image-text--image-left .image-text__wrapper {
	grid-template-areas: "img img img img img img content content content content";
}

.image-text--image-left img {
	float: right;
}

@media (min-width: 768px) {
	.image-text__wrapper {
		grid-template-areas: "content content content content img img img img img img";
	}
}

@media (min-width: 1280px) {
	.image-text__wrapper {
		gap: 5rem;
	}
}

.image-text__text-box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0.75rem;
	gap: 0.875rem;
	background: #fafafa;
	border-radius: 0.375rem;
	margin-top: 2rem;
}

.image-text__text-box__head {
	display: flex;
	gap: 0.62rem;
}

.image-text__text-box__title {
	color: var(--text-loud);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 110%;
	letter-spacing: -0.0625rem;
}

.image-text__text-box__body {
	color: var(--text-normal);
	font-size: 1rem;
	line-height: 150%;
	letter-spacing: -0.03rem;
}

.image-text__content {
	color: #6c7574;
	letter-spacing: -0.03rem;
}

.image-text__content p {
	margin-top: 0.69rem;
	font-size: 1rem;
	line-height: 150%;
	letter-spacing: -0.03rem;
}

.image-text__highlight {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.625rem 2.625rem;
	gap: 0.57663rem;
	background: linear-gradient(180deg, #f0f6fe, #e7f1fd);
	border-radius: 0.57663rem;
	box-shadow: 0 0 0 1px var(--primary-color), 0 0 0 2px #fff, 0 0 0 3px #096df24d;
}

.image-text__highlight span {
	color: var(--primary-color);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 100%;
}

.image-text__image {
	background: color-mix(in srgb, var(--color-accent) 15%, transparent);
	border-radius: 1rem;
	padding-block: 2.5rem 0;
	grid-area: img;
}

.image-text__image img {
	object-fit: contain;
	height: auto;
}

@media screen and (min-width: 768px) {
	.image-text__image img {
		width: max-content;
		max-width: 1100px;
		
	}
}

.image-text__inner {
	grid-area: content;
}

.image-text__inner > *:not(:first-child) {
	margin-top: 1rem;
}

.image-text__title {
	color: #031732;
	font-size: 3.4375rem;
	font-weight: 600;
	line-height: 110%;
	letter-spacing: -0.17188rem;
}

.image-text__body {
	font-size: 1.125rem;
	line-height: 137.5%;
	letter-spacing: -0.0225rem;
}

.core-system-overview {
	background-color: #ffffff;
}

.core-system-overview h2 {
	font-size: 28px;
	color: #333;
	margin-bottom: 40px;
}

.pos-section {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	background-color: #ffffff;
}

.pos-image {
	flex: 1;
}

.pos-image img {
	max-width: 100%;
	border-radius: 10px;
}

.pos-description {
	flex: 1;
	margin-left: 30px;
}

.pos-description h3 {
	font-size: 32px;
	color: #2c3e50;
	margin-bottom: 10px;
}

.pos-description p {
	color: #262B41;
	line-height: 1.6;
	margin-bottom: 10px;
	margin-right: 20px;
	font-size: 18px;
}

.pos-description a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	margin-top: 15px;
	transition: background-color 0.3s ease;
}

.pos-description a:hover {
	background-color: #ffffff;
}

.h2 {
	font-size: 2.8rem;
	font-weight: 600;
	padding: 3.5rem 3.5rem;
	text-align: center;
}

.h2 span {
	color: #A634AC;
}


/**Responsive adjustments**/

@media (max-width: 768px) {
	.pos-section {
		flex-direction: column;
		align-items: center;
	}

	.pos-description {
		order: 1;
		text-align: center;
		margin-bottom: 20px;
	}

	.pos-image {
		order: 2;
	}

	.pos-image img {
		max-width: 100%;
		height: auto;
	}

	.image-text__wrapper {
    display: block;
	}
}

