@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

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

body.public-page {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 16px;
	color: #1f2937;
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "liga" 0, "clig" 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
}

body.public-page a {
	text-decoration: none;
}

body.public-page img {
	display: block;
	max-width: 100%;
}

.pub-main {
	flex: 1;
}

.pub-container {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 40px;
}

.pub-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #2b2f36;
	height: 108px;
	display: flex;
	align-items: center;
}

.pub-nav-inner {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 40px;
}

.pub-nav-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	font-size: 19px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f8fafc;
	flex-shrink: 0;
}

.pub-nav-brand img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.pub-nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.pub-nav-links a {
	font-size: 16px;
	font-weight: 500;
	color: #cbd5e1;
	padding: 10px 14px;
	border-radius: 4px;
	transition: background 0.15s, color 0.15s;
}

.pub-nav-links a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.pub-nav-cta {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #2f7b90;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 11px 22px;
	border-radius: 4px;
	transition: background 0.15s;
	white-space: nowrap;
}

.pub-nav-cta:hover {
	background: #255f70;
	color: #ffffff;
}

.pub-section {
	padding: 96px 0;
}

.pub-section-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #2f7b90;
	margin-bottom: 12px;
}

.pub-section-title {
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 800;
	color: #1f2937;
	margin-bottom: 16px;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.pub-section-body {
	font-size: 16px;
	line-height: 1.75;
	color: #6b7280;
	max-width: 600px;
}

.pub-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 12px 24px;
	border-radius: 4px;
	transition: background 0.15s;
	cursor: pointer;
	border: none;
}

.pub-btn-primary {
	background: #2f7b90;
	color: #ffffff;
}

.pub-btn-primary:hover {
	background: #255f70;
	color: #ffffff;
}

.pub-btn-ghost {
	background: rgba(255,255,255,0.12);
	color: #ffffff;
	border: 1.5px solid rgba(255,255,255,0.55);
}

.pub-btn-ghost:hover {
	background: rgba(255,255,255,0.22);
	color: #ffffff;
	border-color: rgba(255,255,255,0.85);
}

.pub-footer {
	background: #2b2f36;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
}

.pub-footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 40px;
}

.pub-footer-copy {
	font-size: 13px;
	color: #9ca3af;
}

.pub-footer-legal {
	font-size: 11px;
	color: #6b7280;
	text-align: center;
}

body.public-page .pub-footer-ml {
	font-size: 13px;
	font-weight: 500;
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.15s;
}

body.public-page .pub-footer-ml:hover {
	color: #cbd5e1;
	text-decoration: none;
}

.pub-hero {
	position: relative;
	height: 100vh;
	min-height: 580px;
	max-height: 860px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.pub-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.pub-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%);
}

.pub-hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pub-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.15);
	border: 1px solid rgba(255,255,255,0.3);
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 6px 14px;
	border-radius: 100px;
	margin-bottom: 40px;
}

.pub-hero-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
}

.pub-hero-title {
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin-bottom: 36px;
	max-width: 900px;
}

.pub-hero-title em {
	font-style: italic;
	color: #7dd3e8;
}

.pub-hero-sub {
	font-size: 18px;
	line-height: 1.65;
	color: rgba(255,255,255,0.72);
	max-width: 540px;
	margin-bottom: 56px;
}

.pub-hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.pub-presentation-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.pub-presentation-img-wrap {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	aspect-ratio: 4/3;
}

.pub-presentation-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pub-presentation-img-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.95);
	color: #1f2937;
	font-size: 12px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 4px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.pub-presentation-img-badge svg {
	color: #2f7b90;
	flex-shrink: 0;
}

.pub-presentation-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pub-services {
	background: #c8cacd;
}

.pub-services-header {
	text-align: center;
	margin-bottom: 56px;
}

.pub-services-header .pub-section-body {
	margin: 0 auto;
}

.pub-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pub-service-card {
	background: #ffffff;
	border-radius: 6px;
	overflow: hidden;
	border: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.pub-service-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.pub-service-photo {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #e5e7eb;
}

.pub-service-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.pub-service-card:hover .pub-service-photo img {
	transform: scale(1.04);
}

.pub-service-body {
	padding: 24px;
}

.pub-service-title {
	font-size: 16px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 10px;
}

.pub-service-desc {
	font-size: 14px;
	line-height: 1.7;
	color: #6b7280;
}

.pub-gallery-header {
	margin-bottom: 48px;
}

.pub-gallery-header .pub-section-title {
	margin-bottom: 16px;
}

.pub-gallery-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.pub-gallery-desc {
	margin-bottom: 0;
	max-width: none;
	white-space: nowrap;
}

.pub-carousel-wrapper {
	display: flex;
	align-items: center;
	gap: 14px;
}

.pub-carousel {
	flex: 1;
	height: 420px;
	border-radius: 8px;
	overflow: hidden;
	background: #111;
	user-select: none;
}

.pub-carousel-track-wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.pub-carousel-track {
	display: flex;
	height: 100%;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.pub-carousel-slide {
	min-width: 100%;
	height: 100%;
}

.pub-carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pub-carousel-btn {
	flex-shrink: 0;
	background: #f3f4f6;
	border: 1px solid #1f2937;
	color: #374151;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color 0.2s;
}

.pub-carousel-btn:hover {
	background: #e5e7eb;
	border-color: #d1d5db;
}

.pub-fullwidth-photo {
	position: relative;
	height: 380px;
	overflow: hidden;
}

.pub-fullwidth-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
}

.pub-fullwidth-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.52);
	display: flex;
	align-items: center;
	justify-content: center;
}

.pub-fullwidth-overlay .pub-container {
	display: flex;
	justify-content: center;
}

.pub-fullwidth-quote {
	font-size: clamp(18px, 2.2vw, 26px);
	font-weight: 600;
	color: #ffffff;
	font-style: italic;
	line-height: 1.5;
	max-width: 720px;
	text-align: center;
	opacity: 0.92;
}

.pub-cta-banner {
	background: #ffffff;
	border-top: 1px solid #cbd5e1;
	padding: 72px 0;
}

.pub-cta-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
}

.pub-cta-inner h2 {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 800;
	color: #1f2937;
	letter-spacing: -0.02em;
}

.pub-cta-inner p {
	font-size: 16px;
	color: #6b7280;
	max-width: 480px;
	line-height: 1.65;
}

.pub-cta-inner .pub-btn-primary {
	margin-top: 8px;
}

.pub-contact-page {
	min-height: calc(100vh - 108px);
	display: flex;
	align-items: center;
	padding: 40px 0;
}

.pub-contact-page .pub-container {
	max-width: 960px;
	width: 100%;
}

.pub-contact-inner {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 56px;
	align-items: stretch;
}

.pub-contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
	height: 100%;
}

.pub-contact-info p {
	font-size: 15px;
	line-height: 1.7;
	color: #6b7280;
}

.pub-contact-details {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	flex: 1;
	margin-top: 0;
	margin-bottom: 0;
}

.pub-contact-detail {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1;
}

.pub-contact-detail-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2f7b90;
	flex-shrink: 0;
}

.pub-contact-detail-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 14px;
	color: #6b7280;
}

.pub-contact-detail-text strong {
	font-size: 13px;
	font-weight: 600;
	color: #374151;
}

.pub-contact-form-card {
	padding: 0;
	min-width: 0;
	background: transparent;
}

.pub-contact-form-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 28px;
}

.pub-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 14px;
}

.pub-form-grid .pub-form-group {
	margin-bottom: 0;
}

.pub-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
}

.pub-form-group--spaced {
	margin-top: 0;
}

.pub-form-group label {
	font-size: 13px;
	font-weight: 600;
	color: #374151;
}

.pub-form-group input,
.pub-form-group textarea,
.pub-form-group select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #1f2937;
	border-radius: 6px;
	font-family: inherit;
	font-size: 14px;
	color: #1f2937;
	background: #ffffff;
	transition: border-color 0.15s, box-shadow 0.15s;
	outline: none;
}

.pub-form-group input:focus,
.pub-form-group textarea:focus,
.pub-form-group select:focus {
	border-color: #2f7b90;
	box-shadow: 0 0 0 3px rgba(47,123,144,0.12);
}

.pub-form-group textarea {
	min-height: 130px;
	resize: none;
}

.pub-form-hint {
	font-size: 12px;
	color: #9ca3af;
	margin-top: 4px;
}

.pub-form-error {
	font-size: 12px;
	color: #c04d4d;
	margin-top: 4px;
	display: block;
}

.pub-consent-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 12px;
	color: #6b7280;
	line-height: 1.5;
	cursor: pointer;
}

.pub-consent-label input[type="checkbox"] {
	margin-top: 2px;
	flex-shrink: 0;
	width: 15px;
	height: 15px;
	cursor: pointer;
	accent-color: #2f7b90;
}

.pub-file-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #f1f5f9;
	border: 1px solid #1f2937;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s;
}

.pub-file-label:hover {
	background: #e2e8f0;
	border-color: #94a3b8;
}

.pub-file-hidden {
	display: none;
}

.pub-file-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 10px;
}

.pub-file-item {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #f8fafc;
	border: 1px solid #1f2937;
	border-radius: 4px;
	padding: 6px 10px;
	font-size: 13px;
}

.pub-file-name {
	flex: 1;
	color: #374151;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pub-file-size {
	color: #9ca3af;
	font-size: 12px;
	white-space: nowrap;
}

.pub-file-remove {
	background: transparent;
	border: none;
	cursor: pointer;
	color: #dc2626;
	padding: 0;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	transition: opacity 0.15s;
}

.pub-file-remove:hover {
	opacity: 0.7;
}

.pub-form-submit-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

.pub-form-submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #2f7b90;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 12px 28px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background 0.15s;
}

.pub-form-submit:hover:not(:disabled) {
	background: #255f70;
}

.pub-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.pub-form-submit.btn-loading {
	color: transparent;
	pointer-events: none;
}
.btn-submit-wrap {
	position: relative;
	display: inline-block;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

body.public-page .pub-lien-retour {
	font-size: 14px;
	color: #6b7280;
	text-decoration: underline;
	margin-top: auto;
}

body.public-page .pub-lien-retour:hover {
	color: #2f7b90;
	text-decoration: none;
}

.pub-mentions-bloc {
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.pub-mentions-bloc:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.pub-mentions-titre {
	font-size: 20px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 20px;
}

.pub-mentions-texte {
	font-size: 15px;
	line-height: 1.75;
	color: #6b7280;
	margin-bottom: 16px;
}

.pub-mentions-texte:last-child {
	margin-bottom: 0;
}

.pub-legal-block {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
}

.pub-legal-row {
	display: flex;
	padding: 12px 18px;
	font-size: 14px;
	border-bottom: 1px solid #f1f5f9;
}

.pub-legal-row:last-child {
	border-bottom: none;
}

.pub-legal-row:nth-child(odd) {
	background: #f8fafc;
}

.pub-legal-row:nth-child(even) {
	background: #ffffff;
}

.pub-legal-label {
	width: 220px;
	flex-shrink: 0;
	font-weight: 600;
	color: #374151;
}

.pub-legal-value {
	color: #6b7280;
}

@media (max-width: 1024px) {
	.pub-presentation-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.pub-services-grid {
		grid-template-columns: 1fr 1fr;
	}

	.pub-contact-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pub-contact-page .pub-container {
		max-width: 100%;
	}
}

body.pub-drawer-open .pub-nav {
	z-index: 9001;
}

body.pub-drawer-open .pub-nav-drawer-panel {
	padding-top: 68px;
}

.pub-nav-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 4px;
	margin-left: auto;
}

.pub-nav-burger span {
	display: block;
	height: 2px;
	background: #f8fafc;
	border-radius: 2px;
	transition: transform 0.25s, opacity 0.25s;
}

.pub-nav-burger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.pub-nav-burger.open span:nth-child(2) {
	opacity: 0;
}
.pub-nav-burger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.pub-nav-drawer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9000;
}

.pub-nav-drawer.open {
	display: block;
}

.pub-nav-drawer-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
}

.pub-nav-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(280px, 85vw);
	height: 100%;
	background: #2b2f36;
	display: flex;
	flex-direction: column;
	padding: 20px 0;
	overflow-y: auto;
	z-index: 1;
}

.pub-nav-drawer-header .pub-nav-brand {
	font-size: 16px;
}

.pub-nav-drawer-header .pub-nav-brand img {
	width: 36px;
	height: 36px;
}

.pub-nav-drawer-links {
	display: flex;
	flex-direction: column;
	padding: 0 16px;
	gap: 4px;
}

.pub-nav-drawer-links a {
	font-size: 16px;
	font-weight: 500;
	color: #cbd5e1;
	padding: 12px 16px;
	border-radius: 6px;
	transition: background 0.15s, color 0.15s;
}

.pub-nav-drawer-links a:hover {
	background: rgba(255,255,255,0.08);
	color: #ffffff;
}

.pub-nav-drawer-cta {
	margin: 20px 16px 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	background: #2f7b90;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 12px 22px;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.pub-container {
		padding: 0 20px;
	}

	.pub-nav {
		height: 64px;
	}

	.pub-nav-inner {
		padding: 0 16px;
	}

	.pub-nav-links {
		display: none;
	}

	.pub-nav-cta {
		display: none;
	}

	.pub-nav-inner {
		justify-content: center;
	}

	.pub-nav-burger {
		display: flex;
		position: absolute;
		right: 16px;
		margin-left: 0;
	}

	.pub-section {
		padding: 56px 0;
	}

	.pub-hero-title {
		font-size: clamp(28px, 8vw, 44px);
	}

	.pub-hero-sub {
		font-size: 15px;
		margin-bottom: 36px;
	}

	.pub-hero-badge {
		margin-bottom: 28px;
	}

	.pub-services-grid {
		grid-template-columns: 1fr;
	}

	.pub-carousel {
		height: 300px;
	}

	.pub-gallery-header-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.pub-gallery-desc {
		white-space: normal;
	}

	.pub-form-grid {
		grid-template-columns: 1fr;
	}

	.pub-contact-form-card {
		padding: 0;
	}

	.pub-legal-label {
		width: 140px;
	}

	.pub-fullwidth-photo {
		height: 240px;
	}

	.pub-footer-inner {
		padding: 0 20px;
	}

	.pub-contact-page {
		min-height: calc(100vh - 64px);
	}
}

@media (max-width: 480px) {
	.pub-nav {
		height: 56px;
	}

	.pub-nav-inner {
		padding: 0 12px;
	}

	.pub-nav-brand {
		font-size: 15px;
		gap: 8px;
	}

	.pub-nav-brand img {
		width: 30px;
		height: 30px;
	}

	.pub-container {
		padding: 0 16px;
	}

	.pub-section {
		padding: 48px 0;
	}

	.pub-hero-inner {
		padding: 0 16px;
	}

	.pub-hero-title {
		font-size: clamp(26px, 9vw, 38px);
		letter-spacing: -0.02em;
	}

	.pub-hero-sub {
		font-size: 14px;
		margin-bottom: 28px;
	}

	.pub-hero-actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: 300px;
	}

	.pub-hero-actions .pub-btn {
		justify-content: center;
	}

	.pub-carousel {
		height: 220px;
	}

	.pub-carousel-btn {
		width: 32px;
		height: 32px;
	}

	.pub-carousel-wrapper {
		gap: 8px;
	}

	.pub-legal-label {
		width: 110px;
		font-size: 12px;
	}

	.pub-legal-value {
		font-size: 12px;
	}

	.pub-footer-inner {
		padding: 0 16px;
	}

	.pub-cta-banner {
		padding: 48px 0;
	}

	.pub-contact-page {
		min-height: calc(100vh - 56px);
		padding: 32px 0;
	}
}
