/*
 * Pretacou site styles
 *
 * Bootstrap / Eduport の基礎スタイルに対する、サイト固有の上書きをまとめます。
 * Sassなどのビルド処理は使用せず、このファイルを直接編集します。
 */

/* Typography */
:root {
	--pret-font-size-meta: 0.875rem;
	--pret-font-size-detail-meta: 1rem;
	--pret-font-size-body: 1.125rem;
	--pret-font-size-card-title: 1.3125rem;
	--pret-font-size-subheading: 1.640625rem;
	--pret-font-size-section-title: clamp(1.640625rem, 3vw, 2.34375rem);
	--pret-font-size-page-title: clamp(2rem, 4vw, 3.5rem);
	--pret-space-1: 0.25rem;
	--pret-space-2: 0.5rem;
	--pret-space-3: 0.75rem;
	--pret-space-4: 1rem;
	--pret-space-5: 1.5rem;
	--pret-space-6: 2rem;
	--pret-space-7: 3rem;
	--pret-space-8: 4rem;
	--pret-space-section: clamp(3rem, 6vw, 5rem);
	--pret-space-section-large: clamp(3.5rem, 7vw, 6rem);
	--pret-text-primary: #212529;
	--pret-text-secondary: #495057;
	--pret-text-muted: #6c757d;
	--pret-text-accent: #cc008b;
	--pret-text-inverse: #fff;
	--bs-body-color: var(--pret-text-primary);
	--bs-link-color: var(--pret-text-primary);
	--bs-link-hover-color: var(--pret-text-primary);
}

/*
 * Section spacing
 *
 * Eduportの基礎CSSにある全section一律の余白を打ち消し、
 * リニューアル用テーマでは各sectionへ役割を明示します。
 */
section {
	padding-block: 0;
}

.pret-section--normal {
	padding-block: var(--pret-space-section);
}

.pret-section--wide {
	padding-block: var(--pret-space-section-large);
}

.pret-section--compact {
	padding-block: var(--pret-space-7);
}

.pret-section--stacked {
	padding-top: 0;
	padding-bottom: var(--pret-space-7);
}

.pret-section--flush {
	padding-block: 0;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	color: var(--pret-text-primary);
	font-size: var(--pret-font-size-body);
	line-height: 1.7;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: "Noto Sans JP", sans-serif;
	color: var(--pret-text-primary);
	line-height: 1.4;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
	color: var(--pret-text-primary);
}

h3,
.h3 {
	font-size: var(--pret-font-size-card-title);
}

a {
	color: var(--pret-text-primary);
}

a:hover {
	color: var(--pret-text-primary) !important;
	opacity: 0.5;
}

p > a {
	text-decoration: underline;
}

.main-banner__subtitle {
	font-size: var(--pret-font-size-meta);
	letter-spacing: 0.04em;
}

.main-banner__title {
	font-size: var(--pret-font-size-section-title);
}

.form-control,
.form-select {
	color: var(--pret-text-primary);
}

.form-control::placeholder,
textarea.form-control::placeholder {
	color: var(--pret-text-muted);
	opacity: 1;
}

.text-pink {
	color: var(--pret-text-accent) !important;
}

.text-en {
	font-family: "Roboto", sans-serif;
}

.text-default {
	color: var(--pret-text-primary);
}

/* Backgrounds */
.bg-light {
	background-color: #f4f7f9 !important;
}

.bg-pgray {
	background-color: #f8f7f8 !important;
}

/* Top page hero */
.top-hero {
	display: flex;
	align-items: center;
	min-height: 620px;
	margin-bottom: var(--pret-space-8);
	padding: var(--pret-space-section-large) 0;
	overflow: hidden;
	background-image:
		linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.78) 24%, rgba(255, 255, 255, 0.8) 62%, rgba(255, 255, 255, 0.16) 100%),
		url("../images/hero-tailor.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.top-hero__eyebrow,
.top-hero__title,
.top-hero__lead {
	text-shadow:
		-1px -1px 0 rgba(255, 255, 255, 0.96),
		1px -1px 0 rgba(255, 255, 255, 0.96),
		-1px 1px 0 rgba(255, 255, 255, 0.96),
		1px 1px 0 rgba(255, 255, 255, 0.96),
		0 0 8px rgba(255, 255, 255, 0.9);
}

.top-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: var(--pret-space-3);
	margin-bottom: var(--pret-space-4);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.08em;
}

.top-hero__eyebrow::before {
	content: "";
	display: block;
	flex: 0 0 2.5rem;
	height: 2px;
	background-color: #cc008b;
}

.top-hero__title {
	margin-bottom: var(--pret-space-5);
	font-size: var(--pret-font-size-page-title);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.35;
	-webkit-text-stroke: 0.02em rgba(255, 255, 255, 0.82);
	paint-order: stroke fill;
}

.top-hero__title > span {
	display: block;
}

.top-hero__title > span:last-child {
	color: var(--pret-text-accent);
}

.top-hero__lead {
	max-width: 44rem;
	margin-bottom: var(--pret-space-6);
	font-size: var(--pret-font-size-body);
	line-height: 1.9;
}

.top-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pret-space-3) var(--pret-space-4);
}

.top-hero__actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	padding-right: 2.25rem;
	padding-left: 2.25rem;
}

#portfolio-request {
	scroll-margin-top: 6rem;
}

.portfolio-request__inner {
	max-width: 960px;
	margin-inline: auto;
}

.portfolio-request__eyebrow {
	margin-bottom: var(--pret-space-3);
	font-size: var(--pret-font-size-meta);
	letter-spacing: 0.04em;
}

.portfolio-request__title {
	margin-bottom: var(--pret-space-4);
	font-size: var(--pret-font-size-section-title);
}

.portfolio-request__lead {
	max-width: 850px;
	margin: 0 auto var(--pret-space-5);
}

.portfolio-request__notes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--pret-space-4);
	max-width: 900px;
	margin: 0 auto var(--pret-space-6);
}

.portfolio-request__note {
	padding: var(--pret-space-4);
	background-color: #fff;
	border: 1px solid #e4e4e8;
	border-radius: 0.35rem;
	font-size: var(--pret-font-size-meta);
	line-height: 1.75;
}

.portfolio-request__note-label {
	display: block;
	margin-bottom: var(--pret-space-1);
	color: var(--pret-text-accent);
	font-weight: 700;
}

.portfolio-request__form-fields {
	max-width: 800px;
}

.portfolio-request__form-label,
.portfolio-request__form-note,
.portfolio-request__optional {
	font-size: var(--pret-font-size-meta);
}

.portfolio-request__optional,
.portfolio-request__form-note {
	color: var(--pret-text-muted);
}

.portfolio-request__submit {
	max-width: 420px;
	margin: var(--pret-space-5) auto 0;
}

@media (max-width: 767.98px) {
	.portfolio-request__title {
		font-size: var(--pret-font-size-subheading);
	}

	.portfolio-request__notes {
		grid-template-columns: 1fr;
	}
}

/* Portfolio page */
.portfolio-page__overview,
.portfolio-page__faq,
.portfolio-page__closing {
	padding: var(--pret-space-section) 0;
}

.portfolio-page__overview > .wp-block-group__inner-container,
.portfolio-page__faq > .wp-block-group__inner-container,
.portfolio-page__closing > .wp-block-group__inner-container {
	width: min(100% - 3rem, 1300px);
	margin-inline: auto;
}

.portfolio-page__overview-grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	align-items: center !important;
	gap: clamp(2rem, 5vw, 5rem);
	margin-bottom: 0;
}

.portfolio-page__overview-grid > .wp-block-column {
	min-width: 0;
	flex-basis: auto !important;
}

.portfolio-page__overview h2,
.portfolio-page__faq h2 {
	margin-bottom: var(--pret-space-5);
	font-size: var(--pret-font-size-section-title);
}

.portfolio-page__content-list {
	display: grid;
	gap: var(--pret-space-4);
	margin: 1.75rem 0;
	padding: 0;
	list-style: none;
}

.portfolio-page__content-list li {
	position: relative;
	padding-left: 2rem;
}

.portfolio-page__content-list li::before {
	position: absolute;
	top: 0.1em;
	left: 0;
	color: var(--pret-text-accent);
	content: "✓";
	font-weight: 700;
}

.portfolio-page__content-list strong {
	display: block;
	margin-bottom: 0.15rem;
	font-size: var(--pret-font-size-card-title);
}

.portfolio-page__restricted {
	margin-bottom: 0;
	padding: 1rem 1.25rem;
	background-color: #f8f7f8;
	border: 1px solid #e4e4e8;
	border-radius: 0.35rem;
	font-size: var(--pret-font-size-meta);
}

.portfolio-page__cover {
	margin: 0;
}

.portfolio-page__cover img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid #e4e4e8;
	box-shadow: 0 0.75rem 2rem rgba(33, 37, 41, 0.12);
}

.portfolio-page__cover figcaption {
	margin-top: 0.75rem;
	color: var(--pret-text-muted);
	font-size: var(--pret-font-size-meta);
	text-align: center;
}

.portfolio-page .btn-outline-secondary {
	color: var(--pret-text-secondary);
}

.portfolio-page__cases {
	background-color: #fff;
}

.portfolio-page__section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--pret-space-5);
	margin-bottom: var(--pret-space-6);
}

.portfolio-page__section-heading h2 {
	margin-bottom: var(--pret-space-3);
	font-size: var(--pret-font-size-section-title);
}

.portfolio-page__faq {
	background-color: #f8f7f8;
}

.portfolio-page__closing {
	text-align: center;
}

.portfolio-page__closing p {
	max-width: 48rem;
	margin-right: auto;
	margin-left: auto;
}

.portfolio-page__closing .wp-block-buttons {
	margin-top: var(--pret-space-5);
}

@media (max-width: 767.98px) {
	.portfolio-page__overview,
	.portfolio-page__faq,
	.portfolio-page__closing {
		padding: var(--pret-space-7) 0;
	}

	.portfolio-page__overview > .wp-block-group__inner-container,
	.portfolio-page__faq > .wp-block-group__inner-container,
	.portfolio-page__closing > .wp-block-group__inner-container {
		width: min(100% - 2rem, 1300px);
	}

	.portfolio-page__overview h2,
	.portfolio-page__faq h2,
	.portfolio-page__section-heading h2 {
		font-size: var(--pret-font-size-subheading);
	}

	.portfolio-page__overview-grid {
		grid-template-columns: 1fr;
	}

	.portfolio-page__section-heading {
		align-items: stretch;
		flex-direction: column;
	}

	.portfolio-page__section-heading .btn {
		align-self: flex-start;
	}
}

/* Inquiry page */
.inquiry-page__intro,
.inquiry-page__form-section,
.inquiry-page__flow,
.inquiry-page__faq,
.inquiry-page__portfolio {
	padding: var(--pret-space-section) 0;
}

.inquiry-page__intro > .wp-block-group__inner-container,
.inquiry-page__flow > .wp-block-group__inner-container,
.inquiry-page__faq > .wp-block-group__inner-container,
.inquiry-page__portfolio > .wp-block-group__inner-container {
	width: min(100% - 3rem, 1300px);
	margin-inline: auto;
}

.inquiry-page__form-section > .wp-block-group__inner-container {
	width: min(100% - 3rem, 960px);
	margin-inline: auto;
}

.inquiry-page__intro h2,
.inquiry-page__form-section h2,
.inquiry-page__flow h2,
.inquiry-page__faq h2,
.inquiry-page__portfolio h2 {
	margin-bottom: var(--pret-space-5);
	font-size: var(--pret-font-size-section-title);
}

.inquiry-page__intro-lead {
	max-width: none;
	margin-bottom: var(--pret-space-6);
}

.inquiry-page__summary {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--pret-space-4);
	margin-bottom: 0;
}

.inquiry-page__summary > .wp-block-column {
	min-width: 0;
	padding: 1.25rem 1.5rem;
	background-color: #f8f7f8;
	border: 1px solid #e4e4e8;
	border-radius: 0.35rem;
	flex-basis: auto !important;
}

.inquiry-page__summary h3 {
	margin-bottom: var(--pret-space-2);
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-card-title);
}

.inquiry-page__summary p:last-child {
	margin-bottom: 0;
}

.inquiry-page__form-section {
	background-color: #f8f7f8;
}

.inquiry-page__form-intro {
	margin-bottom: var(--pret-space-6);
}

.inquiry-page__form {
	padding: clamp(1.5rem, 4vw, 3rem);
	background-color: #fff;
	border: 1px solid #e4e4e8;
	border-radius: 0.6rem;
}

.inquiry-page__form .form-label {
	margin-bottom: var(--pret-space-2);
	font-weight: 700;
}

.inquiry-page__required,
.inquiry-page__optional,
.inquiry-page__privacy,
.inquiry-page__form-note {
	font-size: var(--pret-font-size-meta);
}

.inquiry-page__required {
	color: var(--pret-text-accent);
}

.inquiry-page__optional,
.inquiry-page__form-note {
	color: var(--pret-text-muted);
}

.inquiry-page__form textarea {
	min-height: 12rem;
}

.inquiry-page__form .wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
}

.inquiry-page__submit {
	max-width: 420px;
	margin: var(--pret-space-5) auto 0;
}

.inquiry-page__flow-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--pret-space-4);
	margin: var(--pret-space-6) 0 0;
	padding: 0;
	list-style: none;
	counter-reset: inquiry-step;
}

.inquiry-page__flow-list li {
	position: relative;
	padding: 4.5rem 1.5rem 1.5rem;
	background-color: #f8f7f8;
	border-radius: 0.6rem;
	counter-increment: inquiry-step;
}

.inquiry-page__flow-list li::before {
	position: absolute;
	top: 1.25rem;
	left: 1.5rem;
	color: var(--pret-text-accent);
	content: counter(inquiry-step, decimal-leading-zero);
	font-size: var(--pret-font-size-card-title);
	font-weight: 700;
}

.inquiry-page__flow-list strong {
	display: block;
	margin-bottom: var(--pret-space-2);
	font-size: var(--pret-font-size-card-title);
}

.inquiry-page__faq {
	background-color: #f8f7f8;
}

.inquiry-page__portfolio {
	background-color: #fff;
}

.inquiry-page__portfolio-card > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(1.5rem, 4vw, 4rem);
	padding: clamp(1.5rem, 4vw, 3rem);
	background-color: #f8f7f8;
	border: 1px solid #e4e4e8;
	border-radius: 0.6rem;
}

.inquiry-page__portfolio-copy h2 {
	margin-bottom: var(--pret-space-3);
}

.inquiry-page__portfolio-copy p:last-child {
	margin-bottom: 0;
}

.inquiry-page__portfolio-eyebrow {
	margin-bottom: var(--pret-space-2);
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.inquiry-page__portfolio .wp-block-buttons {
	flex-wrap: nowrap;
	margin: 0;
}

.inquiry-page__portfolio .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 13rem;
	padding: 0.85rem 1.75rem;
	background-color: transparent;
	border: 2px solid #cc008b;
	border-radius: 2rem;
	color: var(--pret-text-accent);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.inquiry-page__portfolio .wp-block-button__link:hover {
	background-color: #fcf0f8;
	color: var(--pret-text-accent) !important;
	opacity: 1;
}

@media (max-width: 991.98px) {
	.inquiry-page__summary,
	.inquiry-page__flow-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.inquiry-page__intro,
	.inquiry-page__form-section,
	.inquiry-page__flow,
	.inquiry-page__faq,
	.inquiry-page__portfolio {
		padding: var(--pret-space-7) 0;
	}

	.inquiry-page__intro > .wp-block-group__inner-container,
	.inquiry-page__flow > .wp-block-group__inner-container,
	.inquiry-page__faq > .wp-block-group__inner-container,
	.inquiry-page__portfolio > .wp-block-group__inner-container,
	.inquiry-page__form-section > .wp-block-group__inner-container {
		width: min(100% - 2rem, 1300px);
	}

	.inquiry-page__intro h2,
	.inquiry-page__form-section h2,
	.inquiry-page__flow h2,
	.inquiry-page__faq h2,
	.inquiry-page__portfolio h2 {
		font-size: var(--pret-font-size-subheading);
	}

	.inquiry-page__summary,
	.inquiry-page__flow-list {
		grid-template-columns: 1fr;
	}

	.inquiry-page__form {
		padding: 1.5rem 1rem;
	}

	.inquiry-page__portfolio-card > .wp-block-group__inner-container {
		grid-template-columns: 1fr;
	}

	.inquiry-page__portfolio .wp-block-buttons {
		justify-content: flex-start;
	}
}

@media (max-width: 991.98px) {
	.top-hero {
		min-height: auto;
		margin-bottom: var(--pret-space-7);
		padding: var(--pret-space-8) 0;
		background-image:
			linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.82) 66%, rgba(255, 255, 255, 0.58) 100%),
			url("../images/hero-tailor-sp.jpg");
		background-position: center;
	}
}

@media (max-width: 575.98px) {
	.top-hero {
		padding: var(--pret-space-7) 0 var(--pret-space-8);
	}

	.top-hero__eyebrow {
		align-items: flex-start;
		font-size: var(--pret-font-size-meta);
		letter-spacing: 0.04em;
	}

	.top-hero__eyebrow::before {
		margin-top: 0.7em;
	}

	.top-hero__lead {
		font-size: var(--pret-font-size-body);
		line-height: 1.8;
	}

	.top-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.top-hero__actions .btn {
		width: 100%;
		min-width: 0;
	}
}

/* Top page featured package */
.top-legacy-package__inner {
	overflow: hidden;
	padding: clamp(2rem, 5vw, 4rem);
	border: 1px solid #f0e8ed;
	border-radius: 0.75rem;
	background-color: #f8f7f8;
}

.top-legacy-package__label {
	display: inline-flex;
	align-items: center;
	margin-bottom: 1rem;
	padding: 0.25rem 0.85rem;
	border-radius: 2rem;
	background-color: #fae6f3;
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.08em;
}

.top-legacy-package__title {
	margin-bottom: 1.25rem;
	font-size: var(--pret-font-size-section-title);
	font-weight: 700;
	line-height: 1.45;
}

.top-legacy-package__body {
	margin-bottom: 1.5rem;
	line-height: 1.9;
}

.top-legacy-package__concerns {
	display: grid;
	gap: 0.55rem;
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}

.top-legacy-package__concerns li {
	position: relative;
	padding-left: 1.75rem;
	font-weight: 600;
}

.top-legacy-package__concerns li::before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: var(--pret-text-accent);
	font-weight: 700;
}

.top-legacy-package__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	padding-right: 2rem;
	padding-left: 2rem;
}

.top-legacy-package__image {
	width: 100%;
	max-width: 420px;
}

@media (max-width: 991.98px) {
	.top-legacy-package__image {
		max-width: 320px;
	}
}

@media (max-width: 575.98px) {
	.top-legacy-package__inner {
		padding: 2rem 1.25rem;
	}

	.top-legacy-package__title {
		font-size: var(--pret-font-size-subheading);
	}

	.top-legacy-package__cta {
		width: 100%;
		min-width: 0;
	}

	.top-legacy-package__image {
		max-width: 260px;
	}
}

/* Services page */
.services-overview__intro,
.services-section-heading {
	margin-bottom: var(--pret-space-6);
}

.services-overview__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--pret-space-4);
}

.services-overview__grid .service_title2 {
	font-size: var(--pret-font-size-subheading);
}

.services-card-link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.services-card {
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.services-card-link:hover .services-card {
	border-color: rgba(204, 0, 139, 0.35) !important;
	box-shadow: 0 0.75rem 1.75rem rgba(33, 37, 41, 0.08);
	transform: translateY(-2px);
}

.services-related__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid #e7e1e5;
	border-radius: 0.75rem;
	background-color: #fff;
	color: inherit;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.services-related__card:hover {
	border-color: rgba(204, 0, 139, 0.35);
	box-shadow: 0 0.75rem 1.75rem rgba(33, 37, 41, 0.08);
	transform: translateY(-2px);
}

.services-related__label {
	margin-bottom: var(--pret-space-3);
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.08em;
}

.services-related__card h3 {
	margin-bottom: var(--pret-space-4);
	font-size: var(--pret-font-size-subheading);
}

.services-related__card p:not(.services-related__label) {
	margin-bottom: var(--pret-space-5);
	line-height: 1.8;
}

.services-related__link {
	margin-top: auto;
	color: var(--pret-text-accent);
	font-weight: 700;
}

@media (min-width: 768px) {
	.services-overview__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.services-overview__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Individual service pages */
.service-main-banner__action {
	white-space: nowrap;
}

/* Legacy system package LP */
.legacy-lp__hero {
	background: linear-gradient(135deg, #fff7fa 0%, #fff 62%, #f6f7f9 100%);
	border-top: 1px solid #ececef;
	padding: clamp(3rem, 7vw, 6rem) max(var(--pret-space-5), calc((100% - 1300px) / 2));
}

.legacy-lp__hero-columns {
	margin-bottom: 0;
}

.legacy-lp__eyebrow,
.legacy-lp__section-label {
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: var(--pret-space-3);
}

.legacy-lp__title {
	font-size: var(--pret-font-size-page-title);
	letter-spacing: -0.035em;
	line-height: 1.28;
	margin-bottom: var(--pret-space-5);
}

.legacy-lp__lead {
	font-size: var(--pret-font-size-body);
	line-height: 2;
	max-width: 47rem;
}

.legacy-lp__hero-actions {
	gap: var(--pret-space-3);
	margin-top: var(--pret-space-6);
}

.legacy-lp .wp-block-button__link {
	background: #d40072;
	border: 2px solid #d40072;
	border-radius: 0.3rem;
	color: var(--pret-text-inverse);
	font-size: var(--pret-font-size-body);
	font-weight: 700;
	padding: 0.8rem 1.5rem;
}

.legacy-lp .is-style-outline > .wp-block-button__link {
	background: transparent;
	color: var(--pret-text-primary);
}

.legacy-lp__consult-note {
	color: var(--pret-text-muted);
	font-size: var(--pret-font-size-meta);
	margin: 0.75rem 0 0;
}

.legacy-lp__hero-image {
	margin: 0;
	text-align: center;
}

.legacy-lp__hero-image img {
	height: auto;
	max-height: 420px;
	object-fit: contain;
	width: 100%;
}

.legacy-lp__section,
.legacy-lp__risk,
.legacy-lp__closing {
	padding: var(--pret-space-section-large) max(var(--pret-space-5), calc((100% - 1300px) / 2));
}

.legacy-lp__section > .wp-block-group__inner-container > h2,
.legacy-lp__risk h2,
.legacy-lp__closing h2 {
	font-size: var(--pret-font-size-section-title);
	line-height: 1.45;
	margin-bottom: var(--pret-space-5);
}

.legacy-lp__section-lead {
	font-size: var(--pret-font-size-body);
	line-height: 1.9;
	margin-bottom: var(--pret-space-7);
	max-width: none;
	width: 100%;
}

.legacy-lp__concern-grid,
.legacy-lp__option-grid,
.legacy-lp__report-grid {
	gap: var(--pret-space-4);
	margin: var(--pret-space-4) 0 0;
}

.legacy-lp__concern-grid > .wp-block-column,
.legacy-lp__option-grid > .wp-block-column,
.legacy-lp__report-grid > .wp-block-column {
	background: #fff;
	border: 1px solid #e4e4e8;
	border-radius: 0.6rem;
	padding: 1.4rem;
}

.legacy-lp__concern-grid p,
.legacy-lp__option-grid p,
.legacy-lp__report-grid p {
	margin-bottom: 0;
}

.legacy-lp__option-grid h3,
.legacy-lp__report-grid h3 {
	font-size: var(--pret-font-size-body);
	margin-bottom: var(--pret-space-3);
}

.legacy-lp__risk {
	background: #25252a;
	color: var(--pret-text-inverse);
}

.legacy-lp__risk h2,
.legacy-lp__risk p {
	color: var(--pret-text-inverse);
}

.legacy-lp__risk-list {
	display: grid;
	gap: 0.7rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.legacy-lp__risk-list li {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 0.35rem;
	padding: 0.85rem 1rem 0.85rem 2.8rem;
	position: relative;
}

.legacy-lp__risk-list li::before {
	color: #ff5cab;
	content: "!";
	font-weight: 700;
	left: 1.1rem;
	position: absolute;
}

.legacy-lp__section--soft,
.legacy-lp__report {
	background: #f6f7f9;
}

.legacy-lp__service-list {
	gap: 2rem;
}

.legacy-lp__service-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.legacy-lp__service-list li {
	border-bottom: 1px solid #dddde2;
	padding: 0.8rem 0 0.8rem 1.75rem;
	position: relative;
}

.legacy-lp__service-list li::before {
	color: var(--pret-text-accent);
	content: "✓";
	font-weight: 700;
	left: 0;
	position: absolute;
}

.legacy-lp__tech-box,
.legacy-lp__access-note {
	background: #fff;
	border: 1px solid #e4e4e8;
	border-radius: 0.35rem;
	margin-top: 2rem;
	padding: 1.5rem 1.75rem;
}

.legacy-lp__tech-box h3 {
	font-size: var(--pret-font-size-body);
	margin-bottom: var(--pret-space-3);
}

.legacy-lp__tech-box p:last-child,
.legacy-lp__access-note {
	margin-bottom: 0;
}

.legacy-lp__steps {
	margin-top: var(--pret-space-7);
}

.legacy-lp__info-grid {
	gap: var(--pret-space-5);
	margin-bottom: 0;
}

.legacy-lp__info-grid > .wp-block-column {
	background: #fff;
	border: 1px solid #e4e4e8;
	border-radius: 0.6rem;
	padding: clamp(1.5rem, 3vw, 2.5rem);
}

.legacy-lp__info-grid h2 {
	font-size: var(--pret-font-size-subheading);
	line-height: 1.5;
}

.legacy-lp__faq details:first-of-type {
	margin-top: 2rem;
}

.legacy-lp__closing {
	background: #fff7fa;
	text-align: center;
}

.legacy-lp__closing p {
	margin-left: auto;
	margin-right: auto;
	max-width: 48rem;
}

.legacy-lp__closing .wp-block-buttons {
	margin-top: var(--pret-space-5);
}

.package-draft-note {
	background: #fff9dd;
	border: 1px solid #e4d58b;
	border-radius: 0.35rem;
	color: #4f4722;
	margin: 1.5rem max(1.5rem, calc((100% - 1300px) / 2));
	padding: 1rem 1.25rem;
}

.legacy-lp__section .package-draft-note {
	margin-left: 0;
	margin-right: 0;
}

.package-draft-note strong {
	color: #3e3719;
}

@media (max-width: 767.98px) {
	.legacy-lp__hero {
		padding-bottom: 3rem;
		padding-top: 3rem;
	}

	.legacy-lp__title {
		font-size: var(--pret-font-size-page-title);
	}

	.legacy-lp__lead {
		font-size: var(--pret-font-size-body);
	}

	.legacy-lp__hero-image img {
		max-height: 260px;
	}

	.legacy-lp__section,
	.legacy-lp__risk,
	.legacy-lp__closing {
		padding-bottom: var(--pret-space-8);
		padding-top: var(--pret-space-8);
	}
}

/* About page */
.about-page__section {
	padding: var(--pret-space-section-large) max(var(--pret-space-5), calc((100% - 1300px) / 2));
}

.about-page__section--soft {
	background: #f6f7f9;
}

.about-page__section-label {
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: var(--pret-space-3);
}

.about-page__section > .wp-block-group__inner-container > h2,
.about-page__section > h2,
.about-page__related h2 {
	font-size: var(--pret-font-size-section-title);
	line-height: 1.45;
	margin-bottom: var(--pret-space-5);
}

.about-page__intro,
.about-page__section-lead {
	font-size: var(--pret-font-size-card-title);
	line-height: 1.9;
	max-width: none;
	width: 100%;
}

.about-page__strengths {
	border-block: 1px solid #dfe1e5;
	gap: 0;
	margin-top: var(--pret-space-7);
}

.about-page__strength {
	padding: 2rem;
}

.about-page__strength + .about-page__strength {
	border-left: 1px solid #dfe1e5;
}

.about-page__strength-number {
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.12em;
	margin-bottom: 0.75rem;
}

.about-page__strength h3 {
	font-size: var(--pret-font-size-card-title);
	line-height: 1.5;
	margin-bottom: var(--pret-space-4);
}

.about-page__strength p:last-child {
	margin-bottom: 0;
}

.about-page__two-column,
.about-page__policy-grid,
.about-page__member-grid {
	gap: var(--pret-space-5);
	margin-bottom: 0;
}

.about-page__panel,
.about-page__member {
	background: #fff;
	border: 1px solid #dfe1e5;
	border-radius: 0.6rem;
	padding: clamp(1.5rem, 3vw, 2.25rem);
}

.about-page__panel h2 {
	font-size: var(--pret-font-size-subheading);
	margin-bottom: 1.25rem;
}

.about-page__list {
	padding-left: 1.25rem;
}

.about-page__list li {
	margin-bottom: 0.55rem;
}

.about-page__policy-grid {
	border-block: 1px solid #dfe1e5;
	margin-top: var(--pret-space-7);
}

.about-page__policy-grid > .wp-block-column {
	padding: 2rem;
}

.about-page__policy-grid > .wp-block-column + .wp-block-column {
	border-left: 1px solid #dfe1e5;
}

.about-page__policy-grid h3 {
	font-size: var(--pret-font-size-card-title);
	line-height: 1.5;
	margin-bottom: 1.25rem;
}

.about-page__member-image {
	margin: 0 0 1.5rem;
}

.about-page__member-image img {
	aspect-ratio: 1;
	border-radius: 0.6rem;
	height: auto;
	object-fit: cover;
	width: min(100%, 220px);
}

.about-page__member h3 {
	font-size: var(--pret-font-size-subheading);
	margin-bottom: 0.35rem;
}

.about-page__member h4 {
	font-size: var(--pret-font-size-detail-meta);
	margin: 1.5rem 0 0.35rem;
}

.about-page__member-role {
	color: var(--pret-text-muted);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
}

.about-page__member p:last-child {
	margin-bottom: 0;
}

.about-page__company-table {
	margin-top: 2rem;
}

.about-page__company-table table {
	border-collapse: collapse;
	width: 100%;
}

.about-page__company-table th,
.about-page__company-table td {
	border-color: #dfe1e5;
	padding: 1rem 1.25rem;
	vertical-align: top;
}

.about-page__company-table th {
	background: #f6f7f9;
	font-weight: 700;
	width: 12rem;
}

.about-page__related {
	border-top: 1px solid #ececef;
}

.about-page__related-list .column-card {
	overflow: hidden;
}

@media (max-width: 781px) {
	.about-page__strength {
		padding: 1.5rem 0.5rem;
	}

	.about-page__strength + .about-page__strength {
		border-left: 0;
		border-top: 1px solid #dfe1e5;
	}

	.about-page__policy-grid > .wp-block-column {
		padding: 1.5rem 0.5rem;
	}

	.about-page__policy-grid > .wp-block-column + .wp-block-column {
		border-left: 0;
		border-top: 1px solid #dfe1e5;
	}
}

@media (max-width: 575.98px) {
	.about-page__section {
		padding-bottom: var(--pret-space-8);
		padding-top: var(--pret-space-8);
	}

	.about-page__company-table th,
	.about-page__company-table td {
		display: block;
		width: 100%;
	}

	.about-page__company-table td {
		border-top: 0;
	}
}

.service-detail {
	padding-top: var(--pret-space-8);
	padding-bottom: var(--pret-space-8);
}

.service-detail__content > :last-child {
	margin-bottom: 0;
}

.service-detail__lead {
	margin-bottom: var(--pret-space-8);
	font-size: var(--pret-font-size-card-title);
	font-weight: 500;
	line-height: 1.9;
}

.service-detail__section {
	margin-bottom: var(--pret-space-section);
}

.service-detail__section > h2 {
	margin-bottom: var(--pret-space-5);
}

.service-detail__scope-grid {
	gap: var(--pret-space-4);
	margin-top: var(--pret-space-6);
}

.service-detail__scope-grid > .wp-block-column {
	padding: 1.5rem;
	border: 1px solid #e7e1e5;
	border-radius: 0.75rem;
	background-color: #fff;
}

.service-detail__scope-grid h3,
.service-detail__feature h3 {
	font-size: var(--pret-font-size-subheading);
}

.service-detail__feature {
	gap: clamp(var(--pret-space-6), 5vw, var(--pret-space-8));
	margin-top: var(--pret-space-6);
	margin-bottom: 0;
	padding: clamp(1.5rem, 4vw, 3rem);
	border-bottom: 1px solid #e7e1e5;
}

.service-detail__feature:first-of-type {
	border-top: 1px solid #e7e1e5;
}

.service-detail__feature .wp-block-image {
	margin-bottom: 0;
	text-align: center;
}

.service-detail__feature .wp-block-image img {
	max-height: 220px;
	object-fit: contain;
}

.service-summary {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-height: 13rem;
	padding: var(--pret-space-6);
	border: 1px solid #dee2e6;
	border-radius: 0.75rem;
	background: #f8f9fa;
}

.service-summary > :last-child {
	margin-bottom: 0;
}

.service-summary__label {
	display: flex;
	gap: var(--pret-space-3);
	align-items: center;
	margin-bottom: var(--pret-space-4);
	color: var(--pret-text-secondary);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.service-summary__label::before {
	flex: 0 0 auto;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--pret-text-accent);
	content: "";
}

.service-summary__headline {
	margin: 0;
	font-size: var(--pret-font-size-subheading);
	font-weight: 700;
	line-height: 1.55;
}

.service-summary__phrase {
	white-space: nowrap;
}

.service-summary__note {
	margin-top: var(--pret-space-4);
	color: var(--pret-text-secondary);
}

.service-summary__points {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: service-summary-point;
}

.service-summary__points li {
	position: relative;
	padding: var(--pret-space-3) 0 var(--pret-space-3) 3.25rem;
	border-top: 1px solid #dee2e6;
	counter-increment: service-summary-point;
}

.service-summary__points li:first-child {
	padding-top: 0;
	border-top: 0;
}

.service-summary__points li:last-child {
	padding-bottom: 0;
}

.service-summary__points li::before {
	position: absolute;
	top: var(--pret-space-3);
	left: 0;
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.04em;
	content: counter(service-summary-point, decimal-leading-zero);
}

.service-summary__points li:first-child::before {
	top: 0;
}

.service-summary__points strong {
	display: block;
}

.service-summary__points small {
	display: block;
	margin-top: var(--pret-space-1);
	color: var(--pret-text-secondary);
	font-size: var(--pret-font-size-meta);
	font-weight: 400;
}

.service-summary__flow {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--pret-space-4);
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: service-summary-step;
}

.service-summary__step {
	position: relative;
	padding-top: var(--pret-space-4);
	border-top: 1px solid #adb5bd;
	text-align: center;
	counter-increment: service-summary-step;
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	line-height: 1.6;
}

.service-summary__step:not(:last-child)::after {
	position: absolute;
	top: calc(var(--pret-space-4) - 0.9rem);
	right: calc(var(--pret-space-4) * -0.75);
	color: var(--pret-text-accent);
	content: "→";
	font-weight: 700;
}

.service-summary__step::before {
	display: block;
	margin-bottom: var(--pret-space-2);
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	content: counter(service-summary-step, decimal-leading-zero);
}

.service-detail__image-pair {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem !important;
}

.service-detail__image-pair .wp-block-image {
	width: 100% !important;
}

.service-detail__steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--pret-space-4);
	margin: var(--pret-space-6) 0 0;
	padding: 0;
	list-style: none;
	counter-reset: service-step;
}

.service-detail__steps li {
	position: relative;
	padding: 1.5rem 1.5rem 1.5rem 4.25rem;
	border-radius: 0.75rem;
	background-color: #f8f7f8;
	counter-increment: service-step;
	line-height: 1.8;
}

.service-detail__steps li::before {
	content: counter(service-step, decimal-leading-zero);
	position: absolute;
	top: 1.35rem;
	left: 1.25rem;
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-card-title);
	font-weight: 700;
}

.service-detail__faq details {
	padding: 1.25rem 0;
	border-bottom: 1px solid #dee2e6;
}

.service-detail__faq > .wp-block-group__inner-container > h2 {
	margin-bottom: var(--pret-space-6);
}

.service-detail__faq details:first-of-type {
	border-top: 1px solid #dee2e6;
}

.service-detail__faq summary {
	cursor: pointer;
	line-height: 1.7;
}

.service-detail__faq details p {
	margin: 1rem 0 0;
	line-height: 1.8;
}

.service-related-cases__heading {
	display: flex;
	gap: var(--pret-space-5);
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: var(--pret-space-6);
}

@media (max-width: 767.98px) {
	.service-detail {
		padding-top: var(--pret-space-7);
		padding-bottom: var(--pret-space-7);
	}

	.service-detail__lead {
		margin-bottom: var(--pret-space-7);
		font-size: var(--pret-font-size-body);
	}

	.service-detail__section {
		margin-bottom: var(--pret-space-8);
	}

	.service-detail__feature {
		padding-right: 0;
		padding-left: 0;
	}

	.service-summary {
		min-height: auto;
	}

	.service-detail__steps {
		grid-template-columns: 1fr;
	}

	.service-related-cases__heading {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 575.98px) {
	.service-summary {
		padding: var(--pret-space-5);
	}

	.service-summary__flow {
		grid-template-columns: 1fr;
	}

	.service-summary__step {
		padding-top: var(--pret-space-3);
		text-align: left;
	}

	.service-summary__step:not(:last-child)::after {
		top: auto;
		right: auto;
		bottom: calc(var(--pret-space-4) * -1);
		left: 50%;
		content: "↓";
	}
}

/* Navigation */
.nav-link {
	color: var(--pret-text-primary);
	font-weight: bold;
}

.nav-link:hover,
.nav-link:focus {
	color: var(--pret-text-accent);
}

.navbar-nav .nav-link.active {
	color: var(--pret-text-accent);
}

.navbar-brand {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.navbar-brand__logo {
	display: block;
	margin: 0;
	line-height: 1;
}

.nav.flex-column:not(.nav-pills) .nav-link {
	font-size: var(--pret-font-size-detail-meta);
	font-weight: normal;
}

.navbar-brand img {
	display: block;
	height: auto;
	max-width: 158px;
}

.dropdown-toggle::after {
	color: var(--pret-text-accent);
}

.dropdown-item {
	color: var(--pret-text-primary);
	font-weight: bold;
	font-size: var(--pret-font-size-meta);
}

.dropdown-item:hover,
.dropdown-item:focus {
	color: var(--pret-text-accent);
	background-color: #fae6f3;
}

@media (min-width: 1200px) {
	.navbar-brand img {
		max-width: 225px;
	}

	.navbar-expand-xl .navbar-nav .nav-link {
		font-weight: bold;
	}
}

/* Buttons */
@keyframes rotate-plus {
	0% {
		transform: translateY(-50%) rotate(0deg);
	}

	100% {
		transform: translateY(-50%) rotate(360deg);
	}
}

.btn-primary {
	background-color: transparent;
	border: 2.5px solid #cc008b;
	color: var(--pret-text-accent);
	font-weight: 600;
	letter-spacing: 1px;
	min-width: 240px;
	position: relative;
	border-radius: 2rem;
}

.btn-primary span {
	padding-right: 10px;
}

.btn-primary::before {
	content: "";
	position: absolute;
	z-index: 2;
	right: 12px;
	top: 50%;
	width: 17px;
	height: 4.5px;
	background-color: #d633a2;
	transform: translateY(-50%);
}

.btn-primary::after {
	content: "";
	position: absolute;
	z-index: 2;
	right: 18.5px;
	top: 50%;
	width: 4.5px;
	height: 17px;
	background-color: #d633a2;
	transform: translateY(-50%);
}

.btn-primary.animate-plus::before,
.btn-primary.animate-plus::after {
	animation: rotate-plus 0.5s linear;
}

.btn-primary:hover {
	background-color: #fcf0f8;
	color: var(--pret-text-accent) !important;
	border-color: #cc008b;
	opacity: 1;
}

.btn-info {
	--bs-btn-disabled-bg: #cc008b;
	--bs-btn-disabled-border-color: #cc008b;
	width: 100%;
	max-width: 245px;
	background-color: #cc008b;
	border-color: #cc008b;
	color: var(--pret-text-inverse);
	border-radius: 2rem;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 1rem 1.5rem;
}

.btn-info:hover {
	background-color: #d633a2;
	border-color: #d633a2;
}

.btn-warning {
	background-color: #cc008b;
	border-color: #cc008b;
	color: var(--pret-text-inverse);
	border-radius: 2rem;
	font-weight: 600;
	letter-spacing: 1px;
	min-width: 240px;
	position: relative;
}

.btn-warning:hover {
	color: var(--pret-text-inverse);
	background-color: #d633a2;
	border-color: #d633a2;
}

.btn-pret1 {
	color: var(--pret-text-primary);
	border: 2px solid #343a40;
	border-radius: 0;
	font-weight: bold;
	font-size: var(--pret-font-size-meta);
	padding: 0.6rem 1rem;
	display: inline-flex;
	align-items: center;
}

.btn-pret1:hover {
	background-color: #fae6f3;
	border-color: #cc008b;
	color: var(--pret-text-accent) !important;
	opacity: 1;
}

@media (min-width: 414px) {
	.btn-info {
		max-width: 300px;
	}
}

@media (min-width: 768px) {
	.btn-info {
		max-width: 400px;
	}
}

/* Cards and pagination */
.card-thumb-wrapper img {
	border-radius: 0.5rem;
}

.card .service_title1 {
	font-size: var(--pret-font-size-meta);
	line-height: 0;
}

.service_title2 {
	font-size: var(--pret-font-size-subheading);
}

.cases-featured-item__title,
.case-tag-item__title {
	font-size: var(--pret-font-size-card-title);
}

.top-cases__list .card,
.case-card {
	overflow: hidden;
}

.case-card {
	border-color: #e4e4e8 !important;
	border-radius: 0.5rem;
	background-color: #fff;
	box-shadow: 0 0.25rem 1rem rgba(33, 37, 41, 0.04);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.case-card:hover {
	box-shadow: 0 0.75rem 1.75rem rgba(33, 37, 41, 0.09);
	transform: translateY(-2px);
}

.case-card__thumb .image {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.case-card__thumb img {
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.case-card:hover .case-card__thumb img {
	transform: scale(1.025);
}

.case-card__picto {
	padding-block: 1rem;
}

.case-card__media-link {
	display: block;
	height: 100%;
}

.case-card__body {
	padding: 1.25rem 1.25rem 0.75rem;
}

.case-card__type {
	margin-bottom: var(--pret-space-2);
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.case-card__title {
	margin-bottom: var(--pret-space-3);
	font-size: var(--pret-font-size-card-title);
	line-height: 1.55;
}

.case-card__title a {
	text-decoration: none;
}

.case-card__lead {
	margin-bottom: var(--pret-space-4);
	color: var(--pret-text-muted);
	font-size: var(--pret-font-size-meta);
	line-height: 1.75;
}

.case-card__footer {
	margin-top: auto;
	padding: 0 1.25rem 1.25rem;
	border-top: 0;
	background-color: transparent;
}

.case-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.case-card__tags .badge,
.case-detail__tags .badge,
.content-card__tags .badge,
.column-detail__tags .badge,
.techblog-detail__tags .badge,
.news-detail__tags .badge {
	margin: 0 !important;
	padding: 0.35rem 0.65rem;
	background-color: #f1f2f4 !important;
	color: var(--pret-text-secondary) !important;
	font-size: var(--pret-font-size-meta);
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	white-space: normal;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.case-card__tags .badge:hover,
.case-card__tags .badge:focus-visible,
.case-detail__tags .badge:hover,
.case-detail__tags .badge:focus-visible,
.content-card__tags .badge:hover,
.content-card__tags .badge:focus-visible,
.column-detail__tags .badge:hover,
.column-detail__tags .badge:focus-visible,
.techblog-detail__tags .badge:hover,
.techblog-detail__tags .badge:focus-visible,
.news-detail__tags .badge:hover,
.news-detail__tags .badge:focus-visible {
	background-color: #e4e6e9 !important;
	color: var(--pret-text-accent) !important;
	opacity: 1;
}

/* Cases archive */
.cases-page__featured {
	background-color: #f8f7f8;
}

.cases-page__section-heading {
	margin-bottom: clamp(var(--pret-space-6), 3vw, var(--pret-space-7));
}

.cases-page__section-label {
	margin-bottom: var(--pret-space-2);
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.12em;
}

.cases-page__section-heading h2 {
	margin-bottom: var(--pret-space-4);
	font-size: var(--pret-font-size-section-title);
}

.cases-page__section-lead {
	width: 100%;
	margin-bottom: 0;
	color: var(--pret-text-secondary);
}

.cases-page__grid > [class*="col-"] {
	display: flex;
}

.cases-page__pagination {
	margin-top: clamp(var(--pret-space-7), 5vw, var(--pret-space-8));
}

.cases-featured-card {
	padding: clamp(1.5rem, 3vw, 2rem);
	border-color: #e4e4e8 !important;
	border-radius: 0.5rem;
}

.cases-featured-card__title {
	margin-bottom: 0;
	font-size: var(--pret-font-size-subheading);
}

.cases-featured-card__title a {
	text-decoration: none;
}

.cases-featured-card__description {
	margin-bottom: 0;
}

.cases-featured-card__posts-title {
	margin-bottom: var(--pret-space-3);
	font-size: var(--pret-font-size-card-title);
}

.cases-featured-card__posts {
	margin-bottom: 0;
	padding-left: 1.25rem;
}

.cases-featured-card__posts li + li {
	margin-top: 0.5rem;
}

@media (max-width: 575.98px) {
	.case-card__body {
		padding: 1rem 1rem 0.5rem;
	}

	.case-card__footer {
		padding: 0 1rem 1rem;
	}

	.case-card__title {
		font-size: var(--pret-font-size-body);
	}

	.cases-page__section-heading h2 {
		font-size: var(--pret-font-size-subheading);
	}
}

/* Case detail */
.case-detail__article,
.column-detail__article,
.techblog-detail__article,
.news-detail__article {
	padding-top: clamp(1.5rem, 2.5vw, 2rem);
	padding-bottom: var(--pret-space-section);
}

.case-detail__article-inner,
.column-detail__article-inner,
.techblog-detail__article-inner,
.news-detail__article-inner {
	width: 100%;
}

.content-breadcrumb {
	margin-bottom: var(--pret-space-3);
	font-size: var(--pret-font-size-detail-meta);
}

.content-breadcrumb__list {
	display: flex;
	align-items: center;
	min-width: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	list-style: none;
}

.content-breadcrumb__item {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	min-width: 0;
	color: var(--pret-text-primary);
}

.content-breadcrumb__item + .content-breadcrumb__item::before {
	content: "›";
	flex: 0 0 auto;
	margin-inline: 0.6rem;
	color: var(--pret-text-primary);
}

.content-breadcrumb__item a {
	color: var(--pret-text-primary);
	text-decoration: none;
}

.content-breadcrumb__item a:hover,
.content-breadcrumb__item a:focus-visible {
	color: var(--pret-text-accent) !important;
	opacity: 1;
}

.content-breadcrumb__item--current {
	flex: 1 1 auto;
}

.content-breadcrumb__item--current span {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.case-detail__meta,
.column-detail__meta,
.techblog-detail__meta,
.news-detail__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pret-space-3) var(--pret-space-5);
	align-items: center;
	justify-content: space-between;
	margin-bottom: clamp(2rem, 4vw, 3rem);
	padding-bottom: var(--pret-space-5);
	border-bottom: 1px solid #dee2e6;
}

.case-detail__dates,
.column-detail__dates,
.techblog-detail__dates,
.news-detail__dates {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pret-space-2) var(--pret-space-5);
	margin: 0;
}

.case-detail__dates > div,
.column-detail__dates > div,
.techblog-detail__dates > div,
.news-detail__dates > div {
	display: flex;
	gap: var(--pret-space-2);
	align-items: baseline;
}

.case-detail__dates dt,
.case-detail__dates dd,
.column-detail__dates dt,
.column-detail__dates dd,
.techblog-detail__dates dt,
.techblog-detail__dates dd,
.news-detail__dates dt,
.news-detail__dates dd {
	margin: 0;
	font-size: var(--pret-font-size-detail-meta);
}

.case-detail__dates dt,
.column-detail__dates dt,
.techblog-detail__dates dt,
.news-detail__dates dt {
	color: var(--pret-text-primary);
	font-weight: 500;
}

.case-detail__dates dd,
.column-detail__dates dd,
.techblog-detail__dates dd,
.news-detail__dates dd {
	color: var(--pret-text-primary);
}

.case-detail__tags,
.column-detail__tags,
.techblog-detail__tags,
.news-detail__tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pret-space-2);
}

.case-detail__tags .badge,
.column-detail__tags .badge,
.techblog-detail__tags .badge,
.news-detail__tags .badge {
	font-size: var(--pret-font-size-detail-meta);
}

.case-detail__notice {
	margin-bottom: clamp(var(--pret-space-6), 4vw, var(--pret-space-7));
	padding: var(--pret-space-5);
	border: 1px solid #e4e4e8;
	border-radius: 0.5rem;
	background-color: #f8f7f8;
}

.case-detail__notice-title {
	margin-bottom: 0.35rem;
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.case-detail__notice p:last-child {
	margin-bottom: 0;
}

.case-detail__content,
.column-detail__content,
.techblog-detail__content,
.news-detail__content {
	width: 100%;
}

.case-detail__content > :last-child,
.column-detail__content > :last-child,
.techblog-detail__content > :last-child,
.news-detail__content > :last-child {
	margin-bottom: 0;
}

.case-detail__supplement-card {
	padding: clamp(var(--pret-space-5), 3vw, var(--pret-space-6));
	border: 1px solid #e4e4e8;
	border-radius: 0.5rem;
	background-color: #f8f7f8;
}

.case-detail__supplement-card h2 {
	margin-bottom: var(--pret-space-5);
	font-size: var(--pret-font-size-subheading);
}

.case-detail__supplement-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--pret-space-4);
	margin-bottom: 0;
}

.case-detail__supplement-list > div {
	padding: var(--pret-space-4) var(--pret-space-5);
	border: 1px solid #e4e4e8;
	border-radius: 0.35rem;
	background-color: #fff;
}

.case-detail__supplement-list dt {
	margin-bottom: 0.35rem;
	color: var(--pret-text-secondary);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
}

.case-detail__supplement-list dt i {
	margin-right: 0.35rem;
	color: var(--pret-text-muted);
}

.case-detail__supplement-list dd {
	margin-bottom: 0;
}

.case-detail__related,
.techblog-detail__related {
	background-color: #f8f7f8;
}

.case-detail__related + .action-box-section,
.techblog-detail__related + .action-box-section {
	margin-top: var(--pret-space-7);
}

.case-detail__related-heading,
.techblog-detail__related-heading {
	display: flex;
	gap: var(--pret-space-6);
	align-items: end;
	justify-content: space-between;
	margin-bottom: clamp(var(--pret-space-6), 3vw, var(--pret-space-7));
}

.case-detail__section-label,
.techblog-detail__section-label {
	margin-bottom: var(--pret-space-2);
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.12em;
}

.case-detail__related-heading h2,
.techblog-detail__related-heading h2 {
	margin-bottom: var(--pret-space-3);
	font-size: var(--pret-font-size-section-title);
}

.case-detail__archive-link,
.techblog-detail__archive-link {
	flex: 0 0 auto;
}

.case-detail__related-grid > [class*="col-"],
.techblog-detail__related-grid > [class*="col-"] {
	display: flex;
}

@media (max-width: 767.98px) {
	.case-detail__meta,
	.column-detail__meta,
	.techblog-detail__meta,
	.news-detail__meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.case-detail__supplement-list {
		grid-template-columns: 1fr;
	}

	.case-detail__related-heading,
	.techblog-detail__related-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.case-detail__related-heading h2,
	.techblog-detail__related-heading h2 {
		font-size: var(--pret-font-size-subheading);
	}
}

.top-strengths__list {
	border-block: 1px solid #dee2e6;
}

.top-strengths__item {
	padding: 2rem;
}

.top-strengths__item + .top-strengths__item {
	border-left: 1px solid #dee2e6;
}

.top-strengths__number {
	margin-bottom: var(--pret-space-3);
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.12em;
}

.top-strengths__item-title {
	margin-bottom: var(--pret-space-4);
	font-size: var(--pret-font-size-card-title);
	line-height: 1.5;
}

.top-strengths__item-body {
	margin-bottom: 0;
	color: var(--pret-text-secondary);
}

@media (max-width: 991.98px) {
	.top-strengths__item {
		padding: 1.5rem 0.5rem;
	}

	.top-strengths__item + .top-strengths__item {
		border-top: 1px solid #dee2e6;
		border-left: 0;
	}
}

.content-card {
	overflow: hidden;
	border-color: #e4e4e8 !important;
	border-radius: 0.5rem;
	background-color: #fff;
	box-shadow: 0 0.25rem 1rem rgba(33, 37, 41, 0.04);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.content-card:hover {
	box-shadow: 0 0.75rem 1.75rem rgba(33, 37, 41, 0.09);
	transform: translateY(-2px);
}

.content-card__thumb .image {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.content-card__thumb img {
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.content-card:hover .content-card__thumb img {
	transform: scale(1.025);
}

.content-card__media-link {
	display: block;
	height: 100%;
}

.content-card__picto {
	padding-block: 1rem;
}

.content-card__body {
	padding: 1.25rem 1.25rem 0.75rem;
}

.content-card__title {
	margin-bottom: var(--pret-space-3);
	font-size: var(--pret-font-size-card-title);
	line-height: 1.55;
}

.content-card__title a {
	text-decoration: none;
}

.content-card__excerpt {
	margin-bottom: var(--pret-space-4);
	color: var(--pret-text-muted);
	font-size: var(--pret-font-size-meta);
	line-height: 1.75;
}

.content-card__footer {
	margin-top: auto;
	padding: 0 1.25rem 1.25rem;
	border-top: 0;
	background-color: transparent;
}

.content-card__meta {
	margin-bottom: 0.6rem;
}

.content-card__date {
	color: var(--pret-text-muted);
	font-size: var(--pret-font-size-meta);
}

.content-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

/* Shared content archives */
.content-archive__heading {
	margin-bottom: clamp(var(--pret-space-6), 3vw, var(--pret-space-7));
}

.content-archive__label {
	margin-bottom: var(--pret-space-2);
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.12em;
}

.content-archive__heading h2 {
	margin-bottom: var(--pret-space-4);
	font-size: var(--pret-font-size-section-title);
}

.content-archive__lead {
	width: 100%;
	margin-bottom: 0;
	color: var(--pret-text-secondary);
}

.content-archive__grid > [class*="col-"] {
	display: flex;
}

.content-archive__pagination {
	margin-top: clamp(var(--pret-space-7), 5vw, var(--pret-space-8));
}

.content-archive__empty,
.content-archive__empty p {
	margin-bottom: 0;
}

@media (max-width: 575.98px) {
	.content-card__body {
		padding: 1rem 1rem 0.5rem;
	}

	.content-card__footer {
		padding: 0 1rem 1rem;
	}

	.content-card__title {
		font-size: var(--pret-font-size-body);
	}

	.content-archive__heading h2 {
		font-size: var(--pret-font-size-subheading);
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.action-box--about .btn-warning {
		width: 100%;
		min-width: 0;
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}
}

.news-list__panel {
	border-block: 1px solid #dee2e6;
}

.news-list__item + .news-list__item {
	border-top: 1px solid #dee2e6;
}

.news-list__link {
	display: grid;
	grid-template-columns: minmax(11rem, auto) minmax(0, 1fr);
	gap: 1.5rem;
	align-items: center;
	padding: 1.25rem 0.5rem;
	color: var(--pret-text-primary);
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.news-list__link:hover {
	background-color: #f8f9fa;
	color: var(--pret-text-accent);
}

.news-list__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.news-list__date,
.news-list__tag {
	font-size: var(--pret-font-size-meta);
}

.news-list__date {
	color: var(--pret-text-muted);
	white-space: nowrap;
}

.news-list__tags {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.news-list__tag {
	display: inline-block;
	padding: 0.15rem 0.55rem;
	border-radius: 2rem;
	background-color: #f1f2f4;
	color: var(--pret-text-secondary);
	font-weight: 500;
	line-height: 1.5;
}

.news-list__title {
	margin: 0;
	font-size: var(--pret-font-size-body);
	line-height: 1.6;
}

/* Legal pages */
.legal-page__content {
	width: 100%;
}

.legal-page__content > :first-child {
	margin-top: 0;
}

.legal-page__content > :last-child {
	margin-bottom: 0;
}

.legal-page__content h2 {
	margin-top: clamp(var(--pret-space-7), 5vw, var(--pret-space-8));
	margin-bottom: var(--pret-space-4);
	font-size: var(--pret-font-size-subheading);
}

.legal-page__content h3 {
	margin-top: var(--pret-space-6);
	margin-bottom: var(--pret-space-3);
	font-size: var(--pret-font-size-card-title);
}

.legal-page__content p,
.legal-page__content li {
	line-height: 1.9;
}

.legal-page__content p,
.legal-page__content ul,
.legal-page__content ol {
	margin-bottom: var(--pret-space-5);
}

.legal-page__content ul,
.legal-page__content ol {
	padding-left: var(--pret-space-5);
}

.legal-page__content li + li {
	margin-top: 0.5rem;
}

.legal-page__content a {
	overflow-wrap: anywhere;
}

.legal-page__content table,
.legal-page__content .wp-block-table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}

/* 404 page */
.error-page__content {
	width: 100%;
	text-align: center;
}

.error-page__code {
	margin-bottom: var(--pret-space-4);
	color: var(--pret-text-muted);
	font-size: clamp(4rem, 12vw, 8rem);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
}

.error-page__content h2 {
	margin-bottom: var(--pret-space-4);
	font-size: var(--pret-font-size-section-title);
}

.error-page__content > p:not(.error-page__code) {
	margin-bottom: var(--pret-space-6);
}

.error-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pret-space-3) var(--pret-space-4);
	justify-content: center;
	margin-bottom: var(--pret-space-5);
}

.error-page__links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pret-space-3) var(--pret-space-5);
	justify-content: center;
}

.error-page__links a {
	color: var(--pret-text-secondary);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: #adb5bd;
	text-underline-offset: 0.25em;
}

.error-page__links a:hover,
.error-page__links a:focus-visible {
	color: var(--pret-text-accent);
	text-decoration-color: var(--pret-text-accent);
}

@media (max-width: 767.98px) {
	.news-list__link {
		grid-template-columns: 1fr;
		gap: 0.5rem;
		padding-block: 1rem;
	}

	.legal-page__content h2 {
		font-size: var(--pret-font-size-card-title);
	}

	.error-page__content h2 {
		font-size: var(--pret-font-size-subheading);
	}

	.error-page__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.error-page__actions .btn {
		width: 100%;
		min-width: 0;
	}
}

.top-inquiry__inner {
	padding: 1.75rem 2rem;
	border-radius: 0.5rem;
	background-color: #f3f7f9;
}

.top-inquiry__icon.pict-icons-container-lg {
	margin: 0;
	color: #adb5bd;
	font-size: 3rem;
	line-height: 1;
}

.top-inquiry__eyebrow {
	margin-bottom: var(--pret-space-2);
	color: var(--pret-text-accent);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.top-inquiry__title {
	margin-bottom: var(--pret-space-3);
	font-size: var(--pret-font-size-section-title);
	line-height: 1.35;
}

.top-inquiry__lead {
	margin-bottom: 1rem;
}

.top-inquiry__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	align-items: center;
}

.top-inquiry__primary {
	min-width: 22rem;
	padding-right: 3rem;
	padding-left: 1.5rem;
}

.top-inquiry__portfolio-link {
	color: var(--pret-text-secondary);
	font-size: var(--pret-font-size-meta);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: #adb5bd;
	text-underline-offset: 0.25em;
}

.top-inquiry__portfolio-link:hover {
	color: var(--pret-text-accent);
	text-decoration-color: #cc008b;
}

@media (max-width: 767.98px) {
	.top-inquiry__inner {
		padding: 1.25rem;
	}

	.top-inquiry__title {
		font-size: var(--pret-font-size-subheading);
	}

	.top-inquiry__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.top-inquiry__primary {
		width: 100%;
		min-width: 0;
	}

	.top-inquiry__portfolio-link {
		text-align: center;
	}
}

@media (max-width: 374.98px) {
	.top-inquiry__primary {
		padding-right: 1.875rem;
		padding-left: 0.5rem;
		font-size: var(--pret-font-size-meta);
	}
}

.wp-pagenavi a,
.wp-pagenavi span {
	text-decoration: none !important;
	border: none !important;
	border-radius: 0.325rem;
	padding: 11px 16px !important;
	margin: 2px 4px !important;
	background-color: #fae6f3;
	color: var(--pret-text-accent);
	transition: 0.3s all ease-in-out;
	font-family: "Roboto", sans-serif;
}

.wp-pagenavi span.current,
.wp-pagenavi a:hover {
	background-color: #cc008b;
	color: var(--pret-text-inverse);
	font-weight: normal !important;
}

/* Icon sizing */
.pict-icons-container-sm {
	text-align: center;
	font-size: 1.5em;
}

.pict-icons-container-md {
	text-align: center;
	font-size: 2em;
}

.pict-icons-container-lg {
	text-align: center;
	font-size: 2.5em;
}

.pict-icons-container-xl {
	text-align: center;
	font-size: 3em;
}

@media (min-width: 768px) {
	.pict-icons-container-sm {
		font-size: 1.75em;
	}

	.pict-icons-container-md {
		font-size: 2.5em;
	}

	.pict-icons-container-lg {
		font-size: 3.25em;
	}

	.pict-icons-container-xl {
		font-size: 4em;
	}
}

@media (min-width: 1200px) {
	.pict-icons-container-sm {
		font-size: 2em;
	}

	.pict-icons-container-md {
		font-size: 3em;
	}

	.pict-icons-container-lg {
		font-size: 4em;
	}

	.pict-icons-container-xl {
		font-size: 5em;
	}
}

.pict-icons-container .fa-layers {
	vertical-align: top !important;
}

.pict-gray svg {
	color: var(--pret-text-muted) !important;
}

/* Content */
.profile-image {
	max-width: 200px;
}

.wp-editor-content h2:not(:first-child) {
	margin-top: 1em;
}

.wp-editor-content h3 {
	margin-top: 1em;
	margin-bottom: 0.75em;
}

/* Footer */
.site-wide-container {
	max-width: 1760px;
	margin-inline: auto;
}

.site-footer {
	padding-top: 3rem;
	background-color: #fff;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem 1.5rem;
	padding-bottom: 2.5rem;
}

.site-footer__company {
	grid-column: 1 / -1;
}

.site-footer__logo-link {
	display: inline-block;
}

.footer-logo {
	max-width: 180px;
}

.site-footer__lead {
	max-width: 34rem;
	margin: 1.25rem 0 0;
	color: var(--pret-text-secondary);
	font-size: var(--pret-font-size-meta);
	line-height: 1.8;
}

.site-footer__heading {
	margin-bottom: var(--pret-space-4);
	font-size: var(--pret-font-size-card-title);
}

.site-footer__links,
.site-footer__legal {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__links {
	display: grid;
	gap: 0.65rem;
}

.site-footer__links a,
.site-footer__legal a {
	color: var(--pret-text-secondary);
	text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__legal a:hover {
	color: var(--pret-text-accent);
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 0;
	border-top: 1px solid #dee2e6;
	font-size: var(--pret-font-size-meta);
	text-align: center;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	justify-content: center;
}

@media (min-width: 992px) {
	.site-footer {
		padding-top: 4rem;
	}

	.site-footer__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.4fr);
		gap: 3rem;
		padding-bottom: 3rem;
	}

	.site-footer__company {
		grid-column: auto;
	}

	.site-footer__logo-link {
		transform: translateY(-0.75rem);
	}

	.site-footer__bottom {
		flex-direction: row;
		text-align: left;
	}
}

@media (min-width: 1400px) {
	.back-top {
		right: 20px;
		bottom: 16px;
	}
}

/* Utilities and integrations */
.grecaptcha-badge {
	visibility: hidden;
}

.rotate-x {
	transform: rotateX(180deg);
}

.wpcf7-spinner {
	margin: 0 0 0 24px !important;
}
