.g12-acc {
	--g12-acc-bg: #000;
	--g12-acc-text: #fff;
	--g12-acc-muted: #a7a7ab;
	--g12-acc-body: #b5b5b5;
	--g12-acc-border: #242424;
	--g12-acc-accent: #ff4b0b;
	--g12-acc-hover-text: var(--g12-acc-text);
	--g12-acc-item-bg: transparent;
	--g12-acc-item-hover-bg: transparent;
	--g12-acc-item-open-bg: transparent;
	width: 100%;
	background: var(--g12-acc-bg);
	color: var(--g12-acc-text);
	padding: 0;
}

.g12-acc__item {
	border-bottom: 1px solid var(--g12-acc-border);
	background: var(--g12-acc-item-bg);
	transition: background 260ms ease;
}

.g12-acc__item:hover {
	background: var(--g12-acc-item-hover-bg);
}

.g12-acc__item.is-open {
	background: var(--g12-acc-item-open-bg);
}

.g12-acc__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 30px 0;
	border: 0;
	background: transparent !important;
	color: var(--g12-acc-muted);
	text-align: left;
	cursor: pointer;
	transition: color 260ms ease, padding 260ms ease;
}

.g12-acc__item.is-open .g12-acc__head {
	color: var(--g12-acc-text);
	padding-bottom: 36px;
}

.g12-acc__head:hover {
	color: var(--g12-acc-hover-text);
}

.g12-acc__title {
	display: block;
	font-size: clamp(30px, 2.9vw, 42px);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.g12-acc__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	color: var(--g12-acc-accent);
	transition: transform 220ms ease;
}

.g12-acc__arrow svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.g12-acc__item.is-open .g12-acc__arrow {
	transform: rotate(90deg);
}

.g12-acc__panel {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateY(-8px);
	transition: max-height 420ms ease, opacity 260ms ease, transform 320ms ease;
	will-change: max-height, opacity, transform;
}

.g12-acc__item.is-open .g12-acc__panel {
	max-height: 1200px;
	opacity: 1;
	transform: translateY(0);
}

.g12-acc__content {
	display: grid;
	grid-template-columns: minmax(420px, 1fr) minmax(360px, 30%);
	align-items: center;
	gap: 56px;
	padding: 0 0 48px;
}

.g12-acc__content:not(:has(.g12-acc__images)) {
	grid-template-columns: 1fr;
}

@media (prefers-reduced-motion: reduce) {
	.g12-acc__head,
	.g12-acc__arrow,
	.g12-acc__panel {
		transition: none;
	}
}

.g12-acc__copy {
	display: flex;
	gap: 26px;
	align-items: start;
	min-width: 0;
	width: 100%;
}

.g12-acc__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: var(--g12-acc-accent);
	color: #fff;
	font-size: 28px;
	line-height: 1;
}

.g12-acc__icon svg,
.g12-acc__icon i {
	display: block;
	width: 1em;
	height: 1em;
	color: currentColor;
	fill: currentColor;
}

.g12-acc__content-title {
	max-width: 560px;
	margin: 0;
	color: var(--g12-acc-text);
	font-size: clamp(22px, 1.8vw, 28px);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.g12-acc__description {
	max-width: 520px;
	margin: 18px 0 0;
	color: var(--g12-acc-body);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.35;
}

.g12-acc__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 66px;
}

.g12-acc__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 7px 20px;
	border: 1px solid #3a3a3a;
	border-radius: 999px;
	color: var(--g12-acc-text);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.1;
}

.g12-acc__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 26px;
	padding: 10px 20px;
	border: 1px solid var(--g12-acc-accent);
	border-radius: 999px;
	color: var(--g12-acc-text);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 200ms ease, color 200ms ease;
}

.g12-acc__button:hover,
.g12-acc__button:focus-visible {
	background: var(--g12-acc-accent);
	color: #fff;
}

.g12-acc__images {
	display: flex;

	gap: 20px;
	align-items: end;
	min-width: 0;
}

.g12-acc__image {
	display: block;
	width: 100%;
	aspect-ratio: 1.52;
	border-radius: 16px !important;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.g12-acc__content {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.g12-acc__images {
		max-width: 650px;
	}
}

@media (max-width: 767px) {
	.g12-acc {
		width: 100%;
		overflow: hidden;
	}

	.g12-acc__head {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 16px;
		padding: 22px 0;
		width: 100%;
	}

	.g12-acc__title {
		flex: 1 1 auto;
		min-width: 0;
		max-width: calc(100% - 42px);
		font-size: 20px !important;
		font-weight: 400 !important;
		line-height: 1.2 !important;
		letter-spacing: -0.2px !important;
		overflow-wrap: anywhere;
		word-break: normal;
	}

	.g12-acc__arrow {
		flex: 0 0 18px;
		width: 18px !important;
		height: 18px !important;
		margin-left: auto;
	}

	.g12-acc__content {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 28px;
		width: 100%;
		min-width: 0;
		padding-bottom: 34px;
	}

	.g12-acc__copy {
		flex-direction: column;
		gap: 18px;
		width: 100%;
		min-width: 0;
	}

	.g12-acc__icon {
		width: 52px;
		height: 52px;
		font-size: 23px;
	}

	.g12-acc__text,
	.g12-acc__content-title,
	.g12-acc__description {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.g12-acc__content-title {
		font-size: 22px !important;
		line-height: 1.2 !important;
		letter-spacing: -0.2px !important;
		overflow-wrap: anywhere;
	}

	.g12-acc__description {
		font-size: 15px !important;
		line-height: 1.45 !important;
		overflow-wrap: anywhere;
	}

	.g12-acc__tags {
		gap: 8px;
		margin-top: 30px;
	}

	.g12-acc__tag {
		min-height: 34px;
		padding: 7px 14px;
		font-size: 14px !important;
	}

	.g12-acc__button {
		margin-top: 22px;
	}

	.g12-acc__images {
		grid-template-columns: 1fr;
		width: 100%;
		max-width: 100%;
		gap: 14px;
		display: grid;
	}

	.g12-acc__image {
		width: 100%;
		max-width: 100%;
		aspect-ratio: 1.5;
	}
}
