/**
 * Site-wide styles — footer, legal pages, contact cards.
 */

/* ── Hide date metadata globally ── */
.single-post-meta {
	display: none !important;
}

/* ── Legal / Policy pages ── */
.elysd-legal-page {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 20px 80px;
	font-family: 'Poppins', sans-serif;
	color: #333;
	line-height: 1.8;
}

.elysd-legal-page h1 {
	font-family: 'Fraunces', serif;
	font-size: 36px;
	color: #241F1A;
	margin-bottom: 10px;
	border-bottom: 3px solid #e94560;
	padding-bottom: 10px;
	display: inline-block;
}

.elysd-legal-page h2 {
	font-size: 22px;
	color: #6B2737;
	margin-top: 35px;
	margin-bottom: 12px;
}

.elysd-legal-page h3 {
	font-size: 18px;
	color: #444;
	margin-top: 25px;
	margin-bottom: 8px;
}

.elysd-legal-page p {
	margin-bottom: 15px;
	font-size: 16px;
}

.elysd-legal-page ul,
.elysd-legal-page ol {
	margin-bottom: 15px;
	padding-left: 25px;
}

.elysd-legal-page li {
	margin-bottom: 8px;
	font-size: 16px;
}

.elysd-legal-page a {
	color: #e94560;
	text-decoration: none;
	font-weight: 600;
}

.elysd-legal-page a:hover {
	text-decoration: underline;
}

/* ── Contact grid ── */
.elysd-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.elysd-contact-card {
	background: #FAF6EE;
	border: 1px solid rgba(36, 31, 26, 0.1);
	border-radius: 8px;
	padding: 20px;
	text-align: center;
}

.elysd-contact-card h3 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #6B2737;
	margin: 0 0 8px;
}

.elysd-contact-card p {
	margin: 0;
	font-size: 16px;
	color: #333;
}

.elysd-contact-card a {
	color: #e94560;
	text-decoration: none;
}

/* ── Site footer ── */
.elysd-site-footer {
	background: #241F1A;
	color: #F3ECDC;
	padding: 60px 0 0;
	font-family: 'Poppins', sans-serif;
}

.elysd-site-footer * {
	color: #F3ECDC;
}

.elysd-site-footer__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px 40px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
}

.elysd-site-footer__brand {
	padding-right: 20px;
}

.elysd-site-footer__brand p {
	font-size: 14px;
	color: #F3ECDC;
	opacity: 0.7;
	line-height: 1.7;
	margin: 12px 0 0;
}

.elysd-site-footer h4 {
	font-size: 13px;
	margin-bottom: 18px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
}

.elysd-site-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.elysd-site-footer li {
	margin-bottom: 10px;
}

.elysd-site-footer a {
	text-decoration: none;
	font-size: 14px;
	opacity: 0.85;
	transition: opacity 0.2s;
}

.elysd-site-footer a:hover {
	opacity: 1;
	color: #e94560;
}

.elysd-site-footer__bottom {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 24px;
	border-top: 1px solid rgba(243, 236, 220, 0.15);
	text-align: center;
	font-size: 13px;
	color: #F3ECDC;
	opacity: 0.5;
}

@media (max-width: 700px) {
	.elysd-site-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

@media (max-width: 480px) {
	.elysd-site-footer__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}
