/* ==========================================================================
   Eleganza Theme
   Single-file CSS, no external dependencies.
   ========================================================================== */

/* ---------- Local Manrope (Cyrillic + Latin) ---------- */

@font-face {
	font-family: 'Manrope';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url('../fonts/manrope-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Manrope';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url('../fonts/manrope-700.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */

:root {
	--elz-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	/* Colors match current site (from CSF options) */
	--elz-text:        #002050;
	--elz-title:       #002050;
	--elz-muted:       #4D6385;
	--elz-bg:          #FFFFFF;
	--elz-surface:     #FFF9F3;
	--elz-border:      #E6EDF6;
	--elz-accent:      #F43676;
	--elz-accent-2:    #E10489;
	--elz-grad-start:  #FC6668;
	--elz-grad-end:    #E10489;
	--elz-gradient:    linear-gradient(103deg, var(--elz-grad-start) 0%, var(--elz-grad-end) 100%);

	--elz-radius:      12px;
	--elz-radius-lg:   16px;
	--elz-shadow-sm:   0 2px 6px rgba(0, 32, 80, 0.06);
	--elz-shadow-md:   0 8px 24px rgba(0, 32, 80, 0.08);

	--elz-max:         1200px;
	--elz-max-narrow:  760px;
}

/* ---------- Reset (minimal) ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
	margin: 0;
	font: 17px/1.65 var(--elz-font);
	color: var(--elz-text);
	background: var(--elz-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
img { border-style: none; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--elz-accent); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 700;
	color: var(--elz-title);
	line-height: 1.3;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px;
	overflow: hidden;
}

.elz-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--elz-title);
	color: #fff;
	padding: 10px 18px;
	z-index: 1000;
}
.elz-skip:focus { left: 10px; top: 10px; }

/* ---------- Layout containers ---------- */

.elz-container {
	width: 100%;
	max-width: var(--elz-max);
	margin: 0 auto;
	padding: 0 20px;
}
.elz-container--narrow { max-width: var(--elz-max-narrow); }

.elz-main { padding: 40px 0 60px; }
.elz-main--single { padding-top: 30px; }

/* ---------- Header ---------- */

.elz-header {
	padding: 30px 0 10px;
	position: relative;
	z-index: 10;
}
.elz-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.elz-logo__text {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--elz-title);
	letter-spacing: -0.5px;
}
.elz-logo img { max-height: 56px; width: auto; }

/* Primary nav */
.elz-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.elz-menu a {
	color: var(--elz-title);
	padding: 6px 0;
	position: relative;
}
.elz-menu a:hover,
.elz-menu .is-current > a {
	color: var(--elz-accent);
}
.elz-submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #fff;
	border: 1px solid var(--elz-border);
	border-radius: var(--elz-radius);
	box-shadow: var(--elz-shadow-md);
	padding: 10px 0;
	list-style: none;
	z-index: 100;
}
.elz-menu li { position: relative; }
.elz-menu li:hover > .elz-submenu { display: block; }
.elz-submenu a {
	display: block;
	padding: 8px 18px;
	font-size: 14px;
	text-transform: none;
	font-weight: 500;
}

/* Mobile menu button */
.elz-nav__toggle {
	display: none;
	width: 42px;
	height: 42px;
	position: relative;
	z-index: 20;
}
.elz-nav__toggle span {
	display: block;
	height: 2px;
	background: var(--elz-title);
	border-radius: 2px;
	margin: 6px auto;
	width: 22px;
	transition: transform .3s ease, opacity .2s ease;
}
.elz-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.elz-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.elz-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Grid + card ---------- */

.elz-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 32px;
	margin: 30px 0 50px;
}

.elz-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.elz-card__thumb {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--elz-radius-lg);
	box-shadow: var(--elz-shadow-md);
	background: var(--elz-surface);
}
.elz-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.elz-card:hover .elz-card__thumb img { transform: scale(1.03); }

.elz-card__views {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #fff;
	border-radius: 100px;
	padding: 4px 10px;
	font-size: 13px;
	color: var(--elz-title);
	box-shadow: var(--elz-shadow-sm);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 600;
}
.elz-card__views .elz-icon { width: 16px; height: 16px; }

.elz-card__body { padding: 0 6px; }

.elz-card__title {
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
	margin: 0 0 10px;
}
.elz-card__title a { color: var(--elz-title); }
.elz-card__title a:hover { color: var(--elz-accent); }

.elz-card__meta,
.elz-card__footer {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--elz-muted);
	font-size: 14px;
}
.elz-card__meta { margin: 6px 0 10px; }
.elz-card__footer { margin-top: 14px; flex-wrap: wrap; }

.elz-card__excerpt {
	margin: 0;
	font-size: 15px;
	color: var(--elz-text);
	opacity: 0.85;
	line-height: 1.55;
}

/* ---------- Buttons ---------- */

.elz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.3;
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
	cursor: pointer;
}
.elz-btn--primary {
	color: #fff;
	background: var(--elz-gradient);
	box-shadow: 0 4px 12px rgba(228, 72, 136, 0.25);
}
.elz-btn--primary:hover {
	color: #fff;
	filter: brightness(1.05);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(228, 72, 136, 0.35);
}

/* ---------- Meta icons ---------- */

.elz-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}
.elz-icon-wave { color: var(--elz-grad-end); }

.elz-author {
	font-weight: 700;
	color: var(--elz-title);
	font-size: 14px;
}
.elz-author a {
	color: var(--elz-title);
	border-bottom: 1px solid rgba(0,32,80,0.2);
}
.elz-author a:hover { color: var(--elz-accent); border-bottom-color: var(--elz-accent); }

/* ---------- Tags ---------- */

.elz-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 36px 0 0;
}
.elz-tag {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	color: var(--elz-muted);
	background: var(--elz-surface);
	border: 1px solid var(--elz-border);
	transition: color .2s, border-color .2s;
}
.elz-tag:hover {
	color: var(--elz-accent);
	border-color: var(--elz-accent);
}

.elz-date, .elz-reading, .elz-views {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--elz-muted);
}
.elz-reading { margin-left: auto; }

/* ---------- Article ---------- */

.elz-article { margin-bottom: 60px; }

.elz-hero {
	max-width: 1100px;
	margin: 20px auto 40px;
	padding: 0 20px;
}
.elz-hero img {
	width: 100%;
	max-height: 560px;
	object-fit: cover;
	border-radius: var(--elz-radius-lg);
	box-shadow: var(--elz-shadow-md);
}

.elz-article__header { text-align: center; margin-bottom: 30px; }
.elz-article__title {
	font-size: 38px;
	line-height: 1.25;
	margin: 0 0 20px;
	font-weight: 700;
}
.elz-article__meta {
	display: inline-flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
	justify-content: center;
	color: var(--elz-muted);
	font-size: 14px;
}
.elz-article__meta .elz-reading { margin-left: 0; }

/* ---------- Article content ---------- */

.elz-content {
	font-size: 17px;
	line-height: 1.75;
}
.elz-content > * + * { margin-top: 1.1em; }
.elz-content p { margin: 0 0 1.1em; }
.elz-content h2 {
	font-size: 26px;
	margin: 1.8em 0 0.6em;
	line-height: 1.3;
}
.elz-content h3 {
	font-size: 22px;
	margin: 1.5em 0 0.5em;
}
.elz-content ul, .elz-content ol {
	margin: 0 0 1.2em;
	padding-left: 24px;
}
.elz-content ul li { list-style: disc; margin-bottom: 6px; }
.elz-content ol li { list-style: decimal; margin-bottom: 6px; }
.elz-content strong { font-weight: 700; color: var(--elz-title); }
.elz-content a:not(.elz-btn) {
	color: var(--elz-accent);
	border-bottom: 1px solid rgba(244, 54, 118, 0.3);
	font-weight: 500;
}
.elz-content a:not(.elz-btn):hover {
	color: var(--elz-title);
	border-bottom-color: var(--elz-title);
}
.elz-content img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: var(--elz-radius);
	box-shadow: var(--elz-shadow-md);
	margin: 1.4em auto;
}
.elz-content figure,
.elz-content .wp-caption {
	width: auto !important;
	max-width: 100%;
	margin: 1.4em auto;
}
.elz-content figure img,
.elz-content .wp-caption img {
	margin: 0 auto;
}
.elz-content .wp-caption-text,
.elz-content figcaption {
	font-size: 14px;
	color: var(--elz-muted);
	text-align: center;
	margin-top: 8px;
	font-style: italic;
}
.elz-content blockquote {
	border-left: 3px solid var(--elz-accent);
	padding: 4px 0 4px 20px;
	margin: 1.4em 0;
	color: var(--elz-muted);
	font-style: italic;
}

/* ---------- Share ---------- */

.elz-share {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin: 50px 0 30px;
	padding: 20px 0;
	border-top: 1px solid var(--elz-border);
	border-bottom: 1px solid var(--elz-border);
}
.elz-share__label {
	font-weight: 700;
	color: var(--elz-title);
	font-size: 15px;
}
.elz-share__buttons {
	display: flex;
	gap: 10px;
	align-items: center;
}
.elz-share__btn {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fff;
	transition: transform .2s ease, filter .2s ease;
}
.elz-share__btn:hover {
	color: #fff;
	transform: translateY(-2px);
	filter: brightness(1.08);
}
.elz-share__btn--vk        { background: #0077FF; }
.elz-share__btn--telegram  { background: #26A5E4; }
.elz-share__btn--pinterest { background: #E60023; }

/* ---------- Related ---------- */

.elz-related { margin-top: 50px; }
.elz-related__title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 22px;
	margin: 0 0 24px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--elz-border);
}
.elz-related__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.elz-related__card {
	display: flex;
	align-items: center;
	gap: 18px;
}
.elz-related__thumb {
	flex-shrink: 0;
	width: 110px;
	height: 110px;
	border-radius: var(--elz-radius);
	overflow: hidden;
	box-shadow: var(--elz-shadow-md);
}
.elz-related__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.elz-related__heading {
	font-size: 16px;
	line-height: 1.35;
	margin: 0 0 8px;
	font-weight: 700;
}
.elz-related__heading a { color: var(--elz-title); }
.elz-related__heading a:hover { color: var(--elz-accent); }

/* ---------- Archive header ---------- */

.elz-archive-header {
	text-align: center;
	padding: 20px 0 10px;
}
.elz-archive-title {
	font-size: 32px;
	margin: 0 0 10px;
}
.elz-archive-desc {
	max-width: 600px;
	margin: 0 auto;
	color: var(--elz-muted);
	font-size: 15px;
}

.elz-author-bio {
	max-width: 760px;
	margin: 30px auto 50px;
	font-size: 16px;
	line-height: 1.75;
	color: var(--elz-text);
}
.elz-author-bio h2 {
	font-size: 22px;
	margin: 1.5em 0 0.5em;
}
.elz-author-bio ul {
	padding-left: 22px;
	margin: 0.5em 0 1em;
}
.elz-author-bio ul li { list-style: disc; margin-bottom: 4px; }
.elz-author-bio hr {
	border: 0;
	border-top: 1px solid var(--elz-border);
	margin: 28px 0;
}
.elz-author-bio a { color: var(--elz-accent); }
.elz-author-bio a:hover { color: var(--elz-title); }

.elz-no-results {
	text-align: center;
	padding: 60px 20px;
}

/* ---------- Footer ---------- */

.elz-footer {
	margin-top: 60px;
	padding: 30px 0;
	background: var(--elz-surface);
	border-top: 1px solid var(--elz-border);
	text-align: center;
}

.elz-footer__nav { margin-bottom: 18px; }

.elz-footer__menu {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px 24px;
	padding: 0;
	margin: 0;
}
.elz-footer__menu a {
	font-size: 13px;
	font-weight: 600;
	color: var(--elz-muted);
	text-transform: uppercase;
	letter-spacing: 0.4px;
	transition: color .2s;
}
.elz-footer__menu a:hover { color: var(--elz-accent); }

.elz-copyright {
	margin: 0;
	color: var(--elz-muted);
	font-size: 14px;
}

/* ---------- Back to top ---------- */

.elz-back-to-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--elz-gradient);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--elz-shadow-md);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity .3s ease, transform .3s ease, filter .2s ease;
	z-index: 90;
}
.elz-back-to-top[hidden] { display: inline-flex; }
.elz-back-to-top.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.elz-back-to-top:hover { filter: brightness(1.05); }

/* ---------- Search form ---------- */

.elz-search-form {
	display: flex;
	gap: 10px;
	margin: 20px auto;
	max-width: 520px;
}
.elz-search-form input[type=search] {
	flex: 1;
	padding: 10px 16px;
	border: 1px solid var(--elz-border);
	border-radius: 8px;
	font: inherit;
	color: var(--elz-text);
}
.elz-search-form input[type=search]:focus {
	outline: none;
	border-color: var(--elz-accent);
}
.elz-search-form button {
	padding: 10px 22px;
	border-radius: 8px;
	color: #fff;
	background: var(--elz-gradient);
	font-weight: 700;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1023px) {
	.elz-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
	.elz-article__title { font-size: 32px; }
}

@media (max-width: 767px) {
	body { font-size: 16px; }

	.elz-header { padding: 18px 0 6px; }
	.elz-logo__text { font-size: 26px; }

	.elz-nav__toggle { display: block; }
	.elz-nav__menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-top: 1px solid var(--elz-border);
		box-shadow: 0 8px 24px rgba(0,32,80,0.10);
		z-index: 15;
		display: none;
	}
	.elz-nav__menu.is-open { display: block; }
	.elz-menu {
		flex-direction: column;
		gap: 0;
		font-size: 16px;
		padding: 8px 0;
	}
	.elz-menu li { border-bottom: 1px solid var(--elz-border); }
	.elz-menu li:last-child { border-bottom: 0; }
	.elz-menu a {
		display: block;
		padding: 13px 20px;
	}

	.elz-grid { grid-template-columns: 1fr; gap: 36px; }

	.elz-article__title { font-size: 26px; }
	.elz-article__meta { gap: 14px; font-size: 13px; }
	.elz-hero { margin: 10px auto 24px; padding: 0 16px; }
	.elz-hero img { max-height: 360px; }

	.elz-content { font-size: 16px; }
	.elz-content h2 { font-size: 22px; }
	.elz-content h3 { font-size: 19px; }

	.elz-related__grid { grid-template-columns: 1fr; gap: 18px; }
	.elz-related__thumb { width: 90px; height: 90px; }

	.elz-back-to-top { right: 12px; bottom: 12px; width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ==========================================================================
   Homepage — Hero, Masonry sections, Text section
   ========================================================================== */

/* ---------- Hero (latest post) ---------- */

.elz-home-hero { margin-bottom: 52px; }

.elz-home-hero__thumb {
	display: block;
	border-radius: var(--elz-radius-lg);
	overflow: hidden;
	box-shadow: var(--elz-shadow-md);
	margin-bottom: 20px;
}
.elz-home-hero__thumb img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform .5s ease;
}
.elz-home-hero:hover .elz-home-hero__thumb img { transform: scale(1.015); }

.elz-home-hero__title {
	font-size: 28px;
	line-height: 1.3;
	font-weight: 700;
	margin: 0 0 12px;
}
.elz-home-hero__title a { color: var(--elz-title); }
.elz-home-hero__title a:hover { color: var(--elz-accent); }

/* line width = date text width via inline-flex column */
.elz-home-hero__meta {
	display: inline-flex;
	flex-direction: column;
}
.elz-home-hero__line {
	height: 1px;
	background: #ccc;
	margin-bottom: 8px;
}
.elz-home-hero__info {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.elz-home-hero__cat {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--elz-accent);
}
.elz-home-hero__cat:hover { color: var(--elz-title); }
.elz-home-hero__sep { color: var(--elz-muted); font-size: 11px; }
.elz-home-hero__date {
	font-size: 13px;
	color: var(--elz-muted);
	white-space: nowrap;
}

/* ---------- Section heading ---------- */

.elz-home-section { margin: 56px 0; }

.elz-home-section__heading {
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	text-transform: none;
	letter-spacing: 0;
	color: var(--elz-title);
	margin: 0 0 32px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--elz-border);
}
.elz-home-section__heading a { color: inherit; }
.elz-home-section__heading a:hover { color: var(--elz-accent); }

/* ---------- Masonry grid (3 cols, editorial layout) ---------- */

.elz-masonry {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px 28px;
	align-items: start;
}

.elz-mc { min-width: 0; }

/* All thumbs: fixed aspect ratio, object-fit cover */
.elz-mc__thumb {
	display: block;
	border-radius: var(--elz-radius);
	overflow: hidden;
	margin-bottom: 14px;
	aspect-ratio: 4 / 3;
}
.elz-mc__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.elz-mc:hover .elz-mc__thumb img { transform: scale(1.03); }

/* Center-top (2nd article): shorter/wider image */
.elz-masonry > .elz-mc:nth-child(2) {
	position: relative;
	z-index: 1;
}
.elz-masonry > .elz-mc:nth-child(2) .elz-mc__thumb {
	aspect-ratio: 16 / 7;
}

/* Center-bottom (5th article): portrait/tall, overlaps center-top from below */
.elz-masonry > .elz-mc:nth-child(5) {
	position: relative;
	z-index: 0;
	margin-top: -52px;
}
.elz-masonry > .elz-mc:nth-child(5) .elz-mc__thumb {
	aspect-ratio: 4 / 5;
}

/* Title */
.elz-mc__title {
	font-size: 16px;
	line-height: 1.4;
	font-weight: 700;
	margin: 0 0 10px;
}
.elz-mc__title a { color: var(--elz-title); }
.elz-mc__title a:hover { color: var(--elz-accent); }

/* Meta: inline column so line = date text width */
.elz-mc__meta {
	display: inline-flex;
	flex-direction: column;
}
.elz-mc__line {
	height: 1px;
	background: #ccc;
	margin-bottom: 7px;
	transition: background .25s ease;
}
.elz-mc:hover .elz-mc__line { background: #111; }
.elz-mc__date {
	font-size: 13px;
	color: var(--elz-muted);
	white-space: nowrap;
}

/* ---------- Text grid (section 7 — 4 posts, no image) ---------- */

.elz-text-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	align-items: start;
}

.elz-tc { min-width: 0; text-align: center; }

.elz-tc__title {
	font-size: 15px;
	line-height: 1.4;
	font-weight: 700;
	margin: 0 0 10px;
}
.elz-tc__title a { color: var(--elz-title); }
.elz-tc__title a:hover { color: var(--elz-accent); }

/* Text card thumb */
.elz-tc__thumb {
	display: block;
	border-radius: var(--elz-radius);
	overflow: hidden;
	margin-bottom: 12px;
	aspect-ratio: 16 / 9;
}
.elz-tc__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.elz-tc:hover .elz-tc__thumb img { transform: scale(1.03); }

/* Meta: fixed ~date width for consistency with masonry cards */
.elz-tc__meta { display: inline-flex; }
.elz-tc__line {
	height: 1px;
	background: #ccc;
	width: 88px;
	transition: background .25s ease;
}
.elz-tc:hover .elz-tc__line { background: #111; }

/* ---------- Homepage responsive ---------- */

@media (max-width: 1023px) {
	.elz-masonry   { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
	.elz-text-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
	.elz-home-hero__title { font-size: 24px; }
	.elz-home-section__heading { font-size: 22px; }
	/* disable overlap on 2-col: nth-child positions change */
	.elz-masonry > .elz-mc:nth-child(5) { margin-top: 0; }
}

@media (max-width: 767px) {
	.elz-home-section { margin: 40px 0; }
	.elz-home-hero    { margin-bottom: 36px; }
	.elz-home-hero__title { font-size: 20px; }
	.elz-home-section__heading { font-size: 20px; }
	.elz-masonry   { grid-template-columns: 1fr; gap: 32px; }
	.elz-text-grid { grid-template-columns: 1fr; gap: 20px; }
	.elz-masonry > .elz-mc:nth-child(5) { margin-top: 0; }
}
