/**
 * Info Page Styles (Інформаційна сторінка / Політика конфіденційності).
 * Figma: Desktop 355:10912, Mobile 355:10689.
 *
 * @package unique
 */

/* ==========================================================================
   Base Layout & Background
   ========================================================================== */
.info-page-main {
	position: relative;
	overflow-x: hidden;
	min-height: 100vh;
}

/* ==========================================================================
   Decorative Background Elements
   ========================================================================== */
.info-decor-top-right {
	position: absolute;
	right: -60px;
	top: 80px;
	width: 336px;
	height: 332px;
	pointer-events: none;
	z-index: 0;
}

.info-decor-top-right img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.info-decor-bottom-left {
	position: absolute;
	left: -180px;
	top: 750px;
	width: 414px;
	height: 414px;
	pointer-events: none;
	z-index: 0;
	opacity: 0.8;
}

.info-decor-bottom-left img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* ==========================================================================
   Breadcrumbs Positioning
   ========================================================================== */
.info-breadcrumbs-section {
	position: relative;
	z-index: 2;
	padding-top: 32px;
	padding-bottom: 24px;
}

/* ==========================================================================
   Article & Content Container (Max 1100px)
   ========================================================================== */
.info-page-article {
	position: relative;
	z-index: 2;
	padding-bottom: 120px;
}

.info-page-container {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

/* ==========================================================================
   Page Title
   ========================================================================== */
.info-page-header {
	text-align: center;
	margin-bottom: 40px;
}

.info-page-title {
	font-family: var(--font-heading, 'Comfortaa', cursive, sans-serif);
	font-size: 44px;
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
	color: var(--purple, #8F1575);
	margin: 0;
	word-break: break-word;
}

/* ==========================================================================
   Editor Content Typography & Elements Styling
   ========================================================================== */
.info-page-content {
	font-family: var(--font-primary, 'Century Gothic', Arial, sans-serif);
	font-size: 16px;
	line-height: 1.5;
	color: var(--black, #1F1F1F);
}

.info-page-content>*:first-child {
	margin-top: 0;
}

.info-page-content>*:last-child {
	margin-bottom: 0;
}

.info-page-content p {
	font-family: var(--font-primary, 'Century Gothic', Arial, sans-serif);
	font-size: 16px;
	line-height: 1.5;
	color: var(--black, #1F1F1F);
	margin-top: 0;
	margin-bottom: 24px;
}

/* Headings (H1 - H6 styled as per design: Comfortaa, Bold, Uppercase, Purple) */
.info-page-content h1,
.info-page-content h2,
.info-page-content h3,
.info-page-content h4,
.info-page-content h5,
.info-page-content h6 {
	font-family: var(--font-heading, 'Comfortaa', cursive, sans-serif);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--purple, #8F1575);
	line-height: 1.3;
	margin-top: 40px;
	margin-bottom: 16px;
}

.info-page-content h1 {
	font-size: 36px;
}

.info-page-content h2 {
	font-size: 24px;
}

.info-page-content h3 {
	font-size: 20px;
}

.info-page-content h4 {
	font-size: 18px;
}

.info-page-content h5 {
	font-size: 16px;
}

.info-page-content h6 {
	font-size: 14px;
}

/* Lists */
.info-page-content ul,
.info-page-content ol {
	margin-top: 0;
	margin-bottom: 24px;
	padding-left: 24px;
}

.info-page-content li {
	margin-bottom: 8px;
	line-height: 1.5;
}

/* Links */
.info-page-content a {
	color: var(--purple, #8F1575);
	text-decoration: underline;
	transition: opacity 0.2s ease;
}

.info-page-content a:hover {
	opacity: 0.8;
}

/* Blockquotes */
.info-page-content blockquote {
	margin: 32px 0;
	padding: 20px 24px;
	border-left: 4px solid var(--purple, #8F1575);
	background: #F9F7FC;
	border-radius: 0 12px 12px 0;
	font-style: italic;
}

.info-page-content blockquote p:last-child {
	margin-bottom: 0;
}

/* Media & Images */
.info-page-content img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
	margin: 24px 0;
}

/* Tables */
.info-page-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
}

.info-page-content th,
.info-page-content td {
	padding: 12px 16px;
	border: 1px solid #E5E5E5;
	text-align: left;
}

.info-page-content th {
	background: #F9F7FC;
	color: var(--purple, #8F1575);
	font-family: var(--font-heading, 'Comfortaa', cursive, sans-serif);
	font-weight: 700;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media screen and (max-width: 991px) {
	.info-decor-top-right {
		right: -80px;
		width: 260px;
		height: 260px;
	}

	.info-decor-bottom-left {
		left: -120px;
		width: 300px;
		height: 300px;
	}
}

@media screen and (max-width: 768px) {
	.info-breadcrumbs-section {
		padding-top: 16px;
		padding-bottom: 16px;
	}

	.info-page-article {
		padding-bottom: 60px;
	}

	.info-page-container {
		padding: 0 16px;
	}

	.info-page-header {
		margin-bottom: 24px;
	}

	.info-page-title {
		font-size: 24px;
		line-height: 1.35;
	}

	.info-decor-top-right {
		right: -40px;
		top: 140px;
		width: 180px;
		height: 180px;
		opacity: 0.6;
	}

	.info-decor-bottom-left {
		left: -90px;
		top: auto;
		bottom: 100px;
		width: 220px;
		height: 220px;
		opacity: 0.5;
	}

	.info-page-content h1 {
		font-size: 24px;
		margin-top: 32px;
	}

	.info-page-content h2 {
		font-size: 20px;
		margin-top: 32px;
	}

	.info-page-content h3 {
		font-size: 18px;
		margin-top: 24px;
	}

	.info-page-content p {
		margin-bottom: 20px;
	}
}