/**
 * Polyglossiko — WordPress shortcode styles
 * Matches the React app design: orange/white language center theme
 * Use with OceanWP (or any theme); prefix all classes with .polyg- to avoid conflicts.
 */

/* -------------------------------------------------------------------------
   Design tokens (match src/index.css)
   ------------------------------------------------------------------------- */
.polyg-root,
.polyg-hero,
.polyg-section,
.polyg-page {
	--polyg-bg: #fff;
	--polyg-fg: hsl(30, 25%, 15%);
	--polyg-muted: hsl(36, 20%, 96%);
	--polyg-muted-fg: hsl(30, 15%, 45%);
	--polyg-primary: hsl(36, 73%, 53%);
	--polyg-primary-fg: #fff;
	--polyg-secondary: hsl(36, 30%, 95%);
	--polyg-secondary-fg: hsl(36, 73%, 40%);
	--polyg-accent: hsl(36, 100%, 65%);
	--polyg-border: hsl(36, 20%, 90%);
	--polyg-radius: 0.75rem;
	--polyg-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	--polyg-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Base & layout */
.polyg-container {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}
@media (min-width: 768px) {
	.polyg-container { padding-left: 2rem; padding-right: 2rem; }
}

.polyg-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.polyg-section-head {
	text-align: center;
	margin-bottom: 3rem;
}

.polyg-section-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--polyg-fg);
	margin: 0 0 1rem;
}
@media (min-width: 768px) {
	.polyg-section-title { font-size: 2.25rem; }
}

.polyg-section-desc {
	font-size: 1.125rem;
	color: var(--polyg-muted-fg);
	max-width: 42rem;
	margin: 0 auto;
}

.polyg-bg-muted { background-color: var(--polyg-muted); }
.polyg-bg-primary { background-color: var(--polyg-primary); color: var(--polyg-primary-fg); }

.polyg-on-primary .polyg-section-title,
.polyg-on-primary.polyg-section-title { color: var(--polyg-primary-fg); }
.polyg-on-primary.polyg-section-desc,
.polyg-on-primary { color: rgba(255,255,255,0.9); }

.polyg-text-center { text-align: center; }
.polyg-muted { color: var(--polyg-muted-fg); }

/* Buttons */
.polyg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	font-weight: 500;
	border-radius: var(--polyg-radius);
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s ease;
}

.polyg-btn-lg { padding: 0.75rem 1.5rem; font-size: 1.125rem; }
.polyg-btn-block { width: 100%; }

.polyg-btn-primary {
	background-color: var(--polyg-primary);
	color: var(--polyg-primary-fg);
}
.polyg-btn-primary:hover { filter: brightness(1.05); }

.polyg-btn-secondary {
	background-color: var(--polyg-secondary);
	color: var(--polyg-secondary-fg);
}
.polyg-btn-secondary:hover { filter: brightness(0.98); }

.polyg-btn-outline {
	background: transparent;
	border-color: var(--polyg-border);
	color: var(--polyg-fg);
}
.polyg-btn-outline:hover {
	background-color: var(--polyg-primary);
	color: var(--polyg-primary-fg);
	border-color: var(--polyg-primary);
}

.polyg-btn-outline-hero {
	background: transparent;
	border-color: rgba(255,255,255,0.5);
	color: var(--polyg-primary-fg);
}
.polyg-btn-outline-hero:hover {
	background: rgba(255,255,255,0.1);
}

.polyg-link {
	color: var(--polyg-primary);
	font-weight: 500;
	text-decoration: none;
}
.polyg-link:hover { text-decoration: underline; }

/* Cards */
.polyg-card {
	background: var(--polyg-bg);
	border: 2px solid var(--polyg-border);
	border-radius: var(--polyg-radius);
	box-shadow: var(--polyg-shadow);
	transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

/* Badge */
.polyg-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--polyg-secondary);
	color: var(--polyg-secondary-fg);
	padding: 0.25rem 1rem;
	border-radius: 9999px;
	font-weight: 600;
	margin-bottom: 1rem;
}
.polyg-badge-on-primary {
	background: rgba(255,255,255,0.2);
	color: var(--polyg-primary-fg);
}

/* Wave divider — smooth white wave at bottom of hero */
.polyg-hero-wave-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
.polyg-wave-wrap {
	width: 100%;
	overflow: hidden;
	line-height: 0;
}
.polyg-wave {
	display: block;
	width: 100%;
	height: 4.5rem;
}
@media (min-width: 768px) {
	.polyg-wave { height: 6rem; }
}
.polyg-fill-bg { fill: #fff; }
.polyg-fill-primary { fill: var(--polyg-primary); }

/* ----- Hero (match HeroSection.tsx: classroom photo + orange overlay + GB/DE selector + white text + CTAs) ----- */
.polyg-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 6rem;
	overflow: hidden;
}

.polyg-hero-bg {
	position: absolute;
	inset: 0;
	/* Fallback when no image: warm gradient so hero is never blank */
	background: linear-gradient(135deg, hsl(36, 73%, 53%) 0%, hsl(36, 73%, 45%) 100%);
}

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

.polyg-hero-overlay {
	position: absolute;
	inset: 0;
	/* Same as React: from-primary/90 via-primary/80 to-primary/70 — classroom shows through */
	background: linear-gradient(135deg, hsla(36, 73%, 53%, 0.9) 0%, hsla(36, 73%, 53%, 0.8) 50%, hsla(36, 73%, 53%, 0.7) 100%);
}

.polyg-hero-circles {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.polyg-hero-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	animation: polyg-float 3s ease-in-out infinite;
}
.polyg-hero-circle:nth-child(1) { top: 5rem; right: 2.5rem; width: 8rem; height: 8rem; }
.polyg-hero-circle:nth-child(2) { bottom: 10rem; left: 2.5rem; width: 5rem; height: 5rem; animation-delay: 0.4s; }
.polyg-hero-circle:nth-child(3) { top: 50%; right: 25%; width: 4rem; height: 4rem; background: rgba(255,200,100,0.3); animation-delay: 0.2s; }

@keyframes polyg-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* GB / DE language selector — top right, visible on desktop (match first image) */
.polyg-hero-lang-selector {
	position: absolute;
	top: 6rem;
	right: 2rem;
	z-index: 2;
	display: none;
	align-items: center;
	gap: 0.5rem;
}
@media (min-width: 1024px) {
	.polyg-hero-lang-selector { display: flex; }
}

.polyg-hero-lang-btn {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(255,255,255,0.25);
	backdrop-filter: blur(4px);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	transition: background 0.2s, transform 0.2s;
}
.polyg-hero-lang-btn:hover {
	background: rgba(255,255,255,0.4);
	color: #fff;
	transform: translateY(-2px);
}

.polyg-hero-lang-line {
	width: 2rem;
	height: 1px;
	background: rgba(255,255,255,0.35);
}

/* Hero container: same as React (container mx-auto px-4, content max-w-3xl) */
.polyg-hero .polyg-hero-container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}
@media (min-width: 768px) {
	.polyg-hero .polyg-hero-container { padding-left: 2rem; padding-right: 2rem; }
}

.polyg-hero-inner { max-width: 48rem; }

.polyg-hero-title {
	font-size: 2.25rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 1.5rem;
	line-height: 1.2;
}
@media (min-width: 768px) {
	.polyg-hero-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
	.polyg-hero-title { font-size: 3.75rem; }
}

.polyg-hero-subtitle {
	font-size: 1.25rem;
	color: rgba(255,255,255,0.92);
	margin: 0 0 2rem;
	line-height: 1.5;
}
@media (min-width: 768px) {
	.polyg-hero-subtitle { font-size: 1.5rem; }
}

.polyg-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Hero CTAs — match reference: left = cream/tan, right = translucent orange + white border */
.polyg-btn-hero-cta-primary {
	background: #f8f4ef;
	color: #7d5a2e;
	border: none;
	border-radius: 9999px;
	font-weight: 500;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.polyg-btn-hero-cta-primary:hover {
	background: #f0ebe3;
	color: #6b4a1f;
	filter: none;
}

.polyg-btn-outline-hero {
	background: rgba(180, 110, 50, 0.35);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.9);
	border-radius: 9999px;
	font-weight: 500;
}
.polyg-btn-outline-hero:hover {
	background: rgba(180, 110, 50, 0.5);
	color: #fff;
	border-color: #fff;
}

/* ----- Languages ----- */
.polyg-lang-grid {
	display: grid;
	gap: 2rem;
}
@media (min-width: 768px) {
	.polyg-lang-grid { grid-template-columns: repeat(2, 1fr); }
}

.polyg-lang-card {
	position: relative;
	overflow: hidden;
}
.polyg-lang-card:hover {
	transform: translateY(-0.5rem);
	box-shadow: var(--polyg-shadow-lg);
	border-color: rgba(236,170,76,0.3);
}

.polyg-lang-bg-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.1;
	background-image: var(--polyg-lang-bg);
	background-size: cover;
	background-position: center;
}
.polyg-lang-card:hover .polyg-lang-bg-pattern { opacity: 0.15; }

.polyg-card-inner {
	position: relative;
	z-index: 1;
	padding: 2rem;
	text-align: center;
}

.polyg-lang-flag { font-size: 4rem; margin-bottom: 1.5rem; }
.polyg-lang-name { font-size: 1.5rem; font-weight: 700; color: var(--polyg-fg); margin: 0 0 1rem; }
.polyg-lang-desc { color: var(--polyg-muted-fg); margin: 0 0 1.5rem; }

/* ----- About ----- */
.polyg-about-grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 1024px) {
	.polyg-about-grid { grid-template-columns: 1fr 1fr; }
}

.polyg-about-p {
	font-size: 1.125rem;
	color: var(--polyg-muted-fg);
	margin: 0 0 1.5rem;
}

.polyg-about-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.polyg-about-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-weight: 500;
	color: var(--polyg-fg);
}
.polyg-icon-check {
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	background: var(--polyg-primary);
	border-radius: 50%;
	flex-shrink: 0;
}
.polyg-icon-check::after {
	content: '';
	display: block;
	width: 0.4rem;
	height: 0.7rem;
	margin: 0.25rem 0 0 0.5rem;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.polyg-about-image-wrap {
	position: relative;
}
.polyg-about-img {
	position: relative;
	width: 100%;
	height: auto;
	border-radius: var(--polyg-radius);
	box-shadow: var(--polyg-shadow-lg);
	object-fit: cover;
}
.polyg-about-badge {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	background: var(--polyg-primary);
	color: var(--polyg-primary-fg);
	padding: 1rem 1.5rem;
	border-radius: var(--polyg-radius);
	box-shadow: var(--polyg-shadow-lg);
}
.polyg-about-badge-num { font-size: 2rem; font-weight: 700; display: block; }
.polyg-about-badge-text { font-size: 0.875rem; }

/* ----- Programs ----- */
.polyg-programs-english .polyg-section-head { margin-bottom: 3rem; }

.polyg-programs-grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.polyg-programs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.polyg-programs-grid { grid-template-columns: repeat(4, 1fr); }
}

.polyg-program-card {
	padding: 1.5rem;
	text-align: center;
}
.polyg-program-card:hover {
	transform: translateY(-0.25rem);
	box-shadow: var(--polyg-shadow-lg);
	border-color: rgba(236,170,76,0.2);
}

.polyg-program-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.polyg-program-title { font-size: 1.25rem; font-weight: 700; color: var(--polyg-fg); margin: 0 0 0.5rem; }
.polyg-program-desc { font-size: 0.875rem; color: var(--polyg-muted-fg); margin: 0; }

.polyg-card-on-primary {
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.2);
}
.polyg-card-on-primary:hover {
	background: rgba(255,255,255,0.2);
}

.polyg-program-level {
	width: 5rem;
	height: 5rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: var(--polyg-primary-fg);
	color: var(--polyg-primary);
	font-size: 1.875rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ----- Why Us ----- */
.polyg-why-grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.polyg-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.polyg-why-grid { grid-template-columns: repeat(3, 1fr); }
}

.polyg-benefit-card {
	padding: 1.5rem;
}
.polyg-benefit-card:hover {
	transform: translateY(-0.25rem);
	box-shadow: var(--polyg-shadow-lg);
	border-color: rgba(236,170,76,0.2);
}

.polyg-benefit-icon {
	width: 3.5rem;
	height: 3.5rem;
	background: rgba(236,170,76,0.15);
	border-radius: 0.5rem;
	margin-bottom: 1rem;
}
.polyg-benefit-card:hover .polyg-benefit-icon {
	background: var(--polyg-primary);
}
.polyg-benefit-title { font-size: 1.25rem; font-weight: 700; color: var(--polyg-fg); margin: 0 0 0.5rem; }
.polyg-benefit-desc { font-size: 0.875rem; color: var(--polyg-muted-fg); margin: 0; }

/* ----- Gallery ----- */
.polyg-gallery-grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.polyg-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.polyg-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--polyg-radius);
	box-shadow: var(--polyg-shadow-lg);
	aspect-ratio: 4 / 3;
}
.polyg-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.polyg-gallery-item:hover img { transform: scale(1.1); }

.polyg-gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(236,170,76,0.8), transparent);
	opacity: 0;
	transition: opacity 0.3s;
	display: flex;
	align-items: flex-end;
	padding: 1rem;
}
.polyg-gallery-item:hover .polyg-gallery-overlay { opacity: 1; }
.polyg-gallery-overlay p { color: #fff; font-weight: 500; margin: 0; }

/* ----- Testimonials ----- */
.polyg-testimonial-grid {
	display: grid;
	gap: 2rem;
}
@media (min-width: 768px) {
	.polyg-testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.polyg-testimonial-card {
	position: relative;
	padding: 2rem;
}
.polyg-testimonial-card:hover { box-shadow: var(--polyg-shadow-lg); }

.polyg-testimonial-quote {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 2.5rem;
	color: rgba(236,170,76,0.2);
}

.polyg-stars {
	color: var(--polyg-accent);
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.polyg-testimonial-text {
	font-style: italic;
	color: var(--polyg-fg);
	margin: 0 0 1.5rem;
}

.polyg-testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.polyg-testimonial-avatar {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(236,170,76,0.15);
	color: var(--polyg-primary);
	font-weight: 700;
	font-size: 1.125rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.polyg-testimonial-name { font-weight: 700; color: var(--polyg-fg); margin: 0; }
.polyg-testimonial-role { font-size: 0.875rem; color: var(--polyg-muted-fg); margin: 0.25rem 0 0; }

/* ----- Contact ----- */
.polyg-contact { position: relative; }

.polyg-contact-inner { padding-top: 5rem; padding-bottom: 5rem; }

.polyg-contact-grid {
	display: grid;
	gap: 3rem;
}
@media (min-width: 1024px) {
	.polyg-contact-grid { grid-template-columns: 1fr 1fr; }
}

.polyg-contact-form-card {
	padding: 2rem;
	background: var(--polyg-bg);
}
.polyg-contact-form-title { font-size: 1.5rem; font-weight: 700; margin: 0 0 1.5rem; color: var(--polyg-fg); }

.polyg-contact-form p { margin: 0 0 1rem; }
.polyg-contact-form label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--polyg-fg);
	margin-bottom: 0.5rem;
}
.polyg-contact-form input,
.polyg-contact-form textarea {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 2px solid var(--polyg-border);
	border-radius: calc(var(--polyg-radius) - 2px);
	font-size: 1rem;
}
.polyg-contact-form input:focus,
.polyg-contact-form textarea:focus {
	outline: none;
	border-color: var(--polyg-primary);
}

.polyg-contact-cards {
	display: grid;
	gap: 1rem;
}
@media (min-width: 640px) {
	.polyg-contact-cards { grid-template-columns: repeat(2, 1fr); }
}

.polyg-contact-info-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.2);
}
.polyg-contact-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.5rem;
	background: var(--polyg-primary-fg);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}
.polyg-contact-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin: 0 0 0.25rem; }
.polyg-contact-info-card p { margin: 0; color: var(--polyg-primary-fg); font-weight: 500; }

/* Simple icon placeholders (no external icons) */
.polyg-icon-pin::before { content: '📍'; }
.polyg-icon-phone::before { content: '📞'; }
.polyg-icon-mail::before { content: '✉'; }
.polyg-icon-clock::before { content: '🕐'; }
.polyg-icon-award { display: inline-flex; align-items: center; }
.polyg-icon-award::before { content: '🏆'; margin-right: 0.5rem; }

.polyg-contact-map-wrap {
	margin-top: 2rem;
	border-radius: var(--polyg-radius);
	overflow: hidden;
	background: var(--polyg-muted);
}

/* ----- Page templates (English, German, About, Contact, News) ----- */
.polyg-page-hero {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 5rem;
	overflow: hidden;
}
.polyg-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--polyg-page-bg, none);
	background-size: cover;
	background-position: center;
	opacity: 0.05;
}
.polyg-page-hero .polyg-container { position: relative; z-index: 1; }

.polyg-page-hero-inner { text-align: center; }
.polyg-page-emoji { font-size: 5rem; display: block; margin-bottom: 1.5rem; }
.polyg-page-title { font-size: 2.25rem; font-weight: 700; color: var(--polyg-fg); margin: 0 0 1.5rem; }
@media (min-width: 768px) {
	.polyg-page-title { font-size: 3rem; }
}
.polyg-page-subtitle { font-size: 1.25rem; color: var(--polyg-muted-fg); margin: 0 0 2rem; }

.polyg-page-hero-short { padding-top: 8rem; padding-bottom: 5rem; }

.polyg-about-intro { font-size: 1.125rem; margin: 0 0 1rem; }
.polyg-about-intro strong { color: var(--polyg-fg); }

.polyg-levels-grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.polyg-levels-grid { grid-template-columns: repeat(2, 1fr); }
}

.polyg-level-card { padding: 1.5rem; }
.polyg-level-name { font-size: 1.25rem; color: var(--polyg-primary); margin: 0 0 0.5rem; }
.polyg-level-desc { color: var(--polyg-muted-fg); margin: 0 0 1rem; }
.polyg-level-meta { font-size: 0.875rem; color: var(--polyg-fg); margin: 0; }

.polyg-certs-list { display: grid; gap: 1rem; }
.polyg-cert-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--polyg-muted);
	border-radius: var(--polyg-radius);
	font-weight: 500;
	color: var(--polyg-fg);
}

.polyg-cta { padding: 5rem 0; }
.polyg-cta-title { font-size: 1.875rem; font-weight: 700; color: var(--polyg-primary-fg); margin: 0 0 1.5rem; }
.polyg-cta-desc { color: rgba(255,255,255,0.8); margin: 0 0 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.polyg-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.polyg-why-lang-grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.polyg-why-lang-grid { grid-template-columns: repeat(3, 1fr); }
}
.polyg-why-lang-card { text-align: center; padding: 1.5rem; }
.polyg-why-lang-title { font-size: 1.25rem; color: var(--polyg-primary); margin: 0 0 0.5rem; }

/* About page */
.polyg-about-page-grid {
	display: grid;
	gap: 3rem;
	align-items: center;
	max-width: 72rem;
	margin: 0 auto;
}
@media (min-width: 1024px) {
	.polyg-about-page-grid { grid-template-columns: 1fr 1fr; }
}
.polyg-about-page-img { width: 100%; border-radius: var(--polyg-radius); box-shadow: var(--polyg-shadow-lg); object-fit: cover; }

.polyg-values-grid {
	display: grid;
	gap: 1.5rem;
	max-width: 72rem;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.polyg-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.polyg-values-grid { grid-template-columns: repeat(4, 1fr); }
}
.polyg-value-card { text-align: center; padding: 1.5rem; }
.polyg-value-icon {
	width: 3.5rem;
	height: 3.5rem;
	background: rgba(236,170,76,0.15);
	border-radius: 50%;
	margin: 0 auto 1rem;
}
.polyg-value-title { font-size: 1.125rem; font-weight: 700; color: var(--polyg-fg); margin: 0 0 0.5rem; }

.polyg-timeline { max-width: 42rem; margin: 0 auto; }
.polyg-timeline-item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
}
.polyg-timeline-item:last-child { margin-bottom: 0; }
.polyg-timeline-dot {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--polyg-primary);
	color: var(--polyg-primary-fg);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.polyg-timeline-line {
	width: 2px;
	background: var(--polyg-border);
	margin-top: 3rem;
	margin-bottom: -2rem;
}
.polyg-timeline-year { font-size: 0.875rem; color: var(--polyg-primary); font-weight: 600; }
.polyg-timeline-content p { margin: 0.25rem 0 0; font-weight: 500; color: var(--polyg-fg); }

/* Contact page */
.polyg-contact-page-grid {
	display: grid;
	gap: 3rem;
	max-width: 72rem;
	margin: 0 auto;
}
@media (min-width: 1024px) {
	.polyg-contact-page-grid { grid-template-columns: 1fr 1fr; }
}
.polyg-contact-info-cards { display: grid; gap: 1.5rem; }
@media (min-width: 640px) {
	.polyg-contact-info-cards { grid-template-columns: repeat(2, 1fr); }
}
.polyg-map-block { margin-top: 2rem; }
.polyg-map-block .polyg-link { display: inline-block; margin-bottom: 0.5rem; }
.polyg-map-embed { border-radius: var(--polyg-radius); overflow: hidden; border: 1px solid var(--polyg-border); }

/* News page */
.polyg-news-list { display: flex; flex-direction: column; gap: 2rem; }
.polyg-news-card { padding: 1.5rem; }
.polyg-news-card:hover { box-shadow: var(--polyg-shadow-lg); }
.polyg-news-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.polyg-badge-news { margin-bottom: 0; }
.polyg-news-date { font-size: 0.875rem; color: var(--polyg-muted-fg); }
.polyg-news-title { font-size: 1.25rem; margin: 0 0 0.5rem; }
@media (min-width: 768px) {
	.polyg-news-title { font-size: 1.5rem; }
}
.polyg-news-title a { color: var(--polyg-fg); text-decoration: none; }
.polyg-news-title a:hover { color: var(--polyg-primary); }
.polyg-news-card .polyg-muted { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
