:root {
	--md-slider-primary: var(--color-brand, #b20000);
	--md-slider-primary-light: #d50000;
	--md-slider-primary-rgb: 178, 0, 0;
	--md-slider-dark: var(--color-footer-bg, #0a0a0a);
	--md-slider-dark-secondary: #1a202c;
	--md-slider-height: 85vh;
	--md-slider-font: var(--font-body, 'cfastystd-book', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

.home {
	display: block;
}

.home-hero {
	margin-top: 0;
}

.home > section,
.home > .home-section {
	margin-top: 46px;
}
.home > .home-hero {
	margin-top: 0;
}

.home-section--ad {
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
}
.home-section--ad:empty {
	display: none;
}

.section-heading__link {
	display: flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
	margin: 0 0 22px 0;
	position: relative;
}

.section-heading {
	font-size: 28px;
	font-weight: 900;
	margin: 0;
	color: var(--color-ink, #111);
	white-space: nowrap;
	letter-spacing: -0.5px;
}

.section-heading__slashes {
	color: var(--color-brand, #b20000);
}

.section-heading__bar {
	flex: 1;
	height: 2px;
	background: var(--color-border, #e3e3e6);
	position: relative;
	overflow: hidden;
}

.section-heading__bar::after {
	content: '';
	position: absolute;
	inset: 0;
	width: 0;
	background: var(--color-brand, #b20000);
	transition: width 0.4s ease;
}

.section-heading__more {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.5px;
	color: var(--color-meta, #717176);
	white-space: nowrap;
	transition: color 0.25s ease;
}

.section-heading__arrow {
	display: inline-block;
	transition: transform 0.25s ease;
}

.section-heading__link:hover .section-heading__label,
.section-heading__link:hover .section-heading__more {
	color: var(--color-brand, #b20000);
}

.section-heading__link:hover .section-heading__bar::after {
	width: 100%;
}

.section-heading__link:hover .section-heading__arrow {
	transform: translateX(6px);
}

.home-section {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 600px) {
	.section-heading__more {
		font-size: 0;
	}
	.section-heading__arrow {
		font-size: 14px;
		color: var(--color-brand, #b20000);
	}
}

.home-stories__strip {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding: 6px 2px 12px;
	scrollbar-width: thin;
}

.story-bubble {
	flex: 0 0 auto;
	width: 78px;
	text-align: center;
	text-decoration: none;
}

.story-bubble__ring {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	padding: 3px;
	margin: 0 auto 8px;
	background: linear-gradient(135deg, var(--color-brand, #b20000), #ff6b6b);
}

.story-bubble__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid #fff;
}

.story-bubble__label {
	display: block;
	font-size: 11px;
	line-height: 1.2;
	color: var(--color-text, #333);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.home-main__layout {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 36px;
	align-items: start;
}

.home-main__lead {
	display: flex;
	flex-direction: column;
}

.home-feature {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--color-ink, #111);
}
.home-feature__media {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 14px;
	box-shadow: 0 8px 24px -12px rgba(15, 15, 20, 0.3);
}
.home-feature__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(.23,1,.32,1);
}
.home-feature__media:hover .home-feature__image {
	transform: scale(1.04);
}
.home-feature__kicker {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: var(--color-brand, #b20000);
	padding: 6px 11px;
	border-radius: 6px;
	box-shadow: 0 6px 16px -6px rgba(178, 0, 0, 0.55);
}
.home-feature__title {
	font-size: 28px;
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0 0 10px;
}
.home-feature__title a {
	color: var(--color-ink, #111);
	text-decoration: none;
	transition: color 0.18s ease;
}
.home-feature__title a:hover {
	color: var(--color-brand, #b20000);
}
.home-feature__excerpt {
	font-size: 15px;
	line-height: 1.55;
	color: var(--color-text, #333);
	margin: 0 0 8px;
}
.home-feature__time {
	font-size: 12px;
	font-weight: 600;
	color: var(--color-meta, #717176);
}

.home-lead__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 24px;
}

.home-main__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

.home-thumb,
.home-card {
	display: flex;
	flex-direction: column;
}

.home-thumb__media,
.home-card__media {
	display: block;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 11px;
	box-shadow: 0 6px 18px -10px rgba(15, 15, 20, 0.28);
}

.home-thumb__image,
.home-card__image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(.23,1,.32,1);
}

.home-thumb__media:hover .home-thumb__image,
.home-card__media:hover .home-card__image {
	transform: scale(1.05);
}

.home-thumb__kicker,
.home-card__kicker {
	display: block;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--color-brand, #b20000);
	margin-bottom: 5px;
}

.home-thumb__title,
.home-card__title {
	font-size: 15.5px;
	font-weight: 800;
	line-height: 1.28;
	margin: 0 0 7px;
}

.home-thumb__title a,
.home-card__title a {
	color: var(--color-ink, #111);
	text-decoration: none;
	transition: color 0.18s ease;
}

.home-thumb__title a:hover,
.home-card__title a:hover {
	color: var(--color-brand, #b20000);
}

.home-thumb__time,
.home-card__date {
	font-size: 12px;
	font-weight: 600;
	color: var(--color-meta, #717176);
}

.home-opinion {
	margin-top: 28px;
}
.home-opinion__title {
	position: relative;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--color-ink, #111);
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--color-ink, #111);
}
.home-opinion__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 56px;
	height: 2px;
	background: var(--color-brand, #b20000);
}
.home-opinion__title .brand-slashes {
	color: var(--color-brand, #b20000);
	margin-right: 4px;
}
.home-opinion__item {
	border-bottom: none;
}
.home-opinion__link {
	display: flex;
	flex-direction: column;
}
.home-opinion__thumb {
	display: block;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 12px;
	box-shadow: 0 6px 18px -10px rgba(15, 15, 20, 0.28);
}
.home-opinion__thumb img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(.23,1,.32,1);
}
.home-opinion__link:hover .home-opinion__thumb img {
	transform: scale(1.04);
}
.home-opinion__headline {
	display: block;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.3;
	color: var(--color-ink, #111);
	margin-bottom: 8px;
}
.home-opinion__link:hover .home-opinion__headline {
	color: var(--color-brand, #b20000);
}
.home-opinion__excerpt {
	display: block;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--color-text, #1a1a1a);
	margin-bottom: 8px;
}
.home-opinion__time {
	font-size: 11px;
	font-weight: 600;
	color: var(--color-meta, #717176);
}

.home-main__right {
	align-self: stretch;
}

.home-rail__ad {
	margin-top: 22px;
	text-align: center;
}

.home-rail__ad:last-child {
	position: sticky;
	top: calc(110px + var(--dd-adminbar, 0px));
}

.home-main__right .ticker {
	display: flex;
	flex-direction: column;
	max-height: min(560px, calc(100vh - 140px));
}

.home-main__right .ticker__list {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	scrollbar-gutter: stable;
}

.ticker--home {
	background: var(--color-bg, #fff);
	border: 1px solid var(--color-border, #e3e3e6);
	border-radius: 12px;
	padding: 14px 14px 6px;
}
.ticker--home .ticker__title {
	position: sticky;
	top: 0;
	z-index: 2;
	margin: 0 0 6px;
	padding: 0 0 12px;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: var(--color-ink, #111);
	background: linear-gradient(to right, var(--color-brand) 0 56px, var(--color-ink, #111) 56px) left bottom / 100% 2px no-repeat var(--color-bg, #fff);
	padding-bottom: 14px;
}
.ticker--home .ticker__title .brand-slashes { margin-right: 5px; }
.ticker--home .ticker__list { gap: 0; padding-right: 4px; scrollbar-width: thin; scrollbar-color: var(--color-border, #d9d9de) transparent; }
.ticker--home .ticker__list::-webkit-scrollbar { width: 6px; }
.ticker--home .ticker__list::-webkit-scrollbar-track { background: transparent; }
.ticker--home .ticker__list::-webkit-scrollbar-thumb { background: var(--color-border, #d9d9de); border-radius: 99px; }
.ticker--home .ticker__list::-webkit-scrollbar-thumb:hover { background: var(--color-meta, #a0a0a6); }
.ticker--home .ticker__item { position: relative; }
.ticker--home .ticker__item + .ticker__item { border-top: 1px solid var(--color-hairline); }
.ticker--home .ticker__link { display: block; position: relative; padding: 9px 10px 9px 13px; border-radius: 8px; transition: background .18s ease; }
.ticker--home .ticker__link::before { content: ""; position: absolute; left: 2px; top: 11px; bottom: 11px; width: 3px; border-radius: 99px; background: var(--color-brand); transform: scaleY(0); transform-origin: center; transition: transform .22s cubic-bezier(.23,1,.32,1); }
.ticker--home .ticker__link:hover { background: var(--color-bg-soft, #f5f5f7); }
.ticker--home .ticker__link:hover::before { transform: scaleY(1); }
.ticker--home .ticker__item--thumb .ticker__link { display: flex; gap: 10px; align-items: flex-start; }
.ticker--home .ticker__thumb { flex: 0 0 66px; width: 66px; height: 46px; border-radius: 8px; overflow: hidden; background: var(--color-bg-soft); box-shadow: inset 0 0 0 1px rgba(0,0,0,.05); }
.ticker--home .ticker__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s cubic-bezier(.23,1,.32,1); }
.ticker--home .ticker__item--thumb:hover .ticker__thumb img { transform: scale(1.06); }
.ticker--home .ticker__main { display: flex; flex-direction: column; min-width: 0; }
.ticker--home .ticker__kicker { font-size: 10px; font-weight: 800; letter-spacing: .06em; color: var(--color-brand); margin-bottom: 3px; text-transform: uppercase; }
.ticker--home .ticker__headline { font-size: 12.5px; font-weight: 700; line-height: 1.3; color: var(--color-ink); transition: color .18s ease; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ticker--home .ticker__link:hover .ticker__headline { color: var(--color-brand); }
.ticker--home .ticker__time { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; color: var(--color-meta); margin-top: 3px; }
.ticker--home .ticker__time::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--color-brand); opacity: .65; }

.dedomeno-post-card:first-child > .dedomeno-post-image-link {
	display: block;
}
.design-dedomeno-sports .dedomeno-post-card:first-child > .dedomeno-post-image-link,
.design-dedomeno-kosmos .dedomeno-post-card:first-child > .dedomeno-post-image-link,
.design-dedomeno-viral .dedomeno-post-card:first-child > .dedomeno-post-image-link,
.design-dedomeno-health .dedomeno-post-card:first-child > .dedomeno-post-image-link,
.design-dedomeno-finance .dedomeno-post-card:first-child > .dedomeno-post-image-link,
.design-media-grid .dedomeno-post-card:first-child > .dedomeno-post-image-link {
	position: absolute;
	inset: 0;
	height: 100%;
}

@media (max-width: 1100px) {
	.home-main__layout {
		grid-template-columns: 2fr 1fr;
	}
	.home-main__right {
		grid-column: 1 / -1;
	}
	.home-opinion {
		margin-top: 20px;
	}
}

@media (max-width: 767px) {
	.home-main__layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.home-lead__grid {
		gap: 18px 14px;
	}
	.home-main__cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px 14px;
	}
	.home-feature__title {
		font-size: 20px;
	}
	.home-thumb__title,
	.home-card__title {
		font-size: 14px;
		line-height: 1.25;
	}
	.home-thumb__title a,
	.home-card__title a {
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.home-thumb__kicker,
	.home-card__kicker {
		font-size: 10px;
	}
	.home-main__right .ticker {
		position: static;
		max-height: none;
		display: block;
	}
	.home-main__right .ticker__list {
		max-height: 70vh;
		overflow-y: auto;
	}
}

.md-slider-mobile {
	display: none;
}

@media (max-width: 767px) {
	.md-slider-mobile {
		display: block;
	}
	.md-slider-mobile-card {
		position: relative;
		border-radius: 0;
		overflow: hidden;
		margin-bottom: 14px;
	}
	.md-slider-mobile-card:first-child {
		border-top: 3px solid var(--color-brand, #b20000);
	}
	.md-slider-mobile-image-link {
		display: block;
	}
	.md-slider-mobile-image-link img {
		width: 100%;
		aspect-ratio: 3 / 2;
		object-fit: cover;
		display: block;
	}
	.md-slider-mobile-content {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		padding: 46px 14px 14px;
		background: linear-gradient(to top, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.82) 55%, rgba(0, 0, 0, 0) 100%);
		color: #fff;
	}
	.md-slider-mobile-category {
		display: block;
		font-size: 11px;
		font-weight: 800;
		color: #ff8a8a;
		margin-bottom: 6px;
	}
	.md-slider-mobile-title {
		font-size: 17px;
		font-weight: 800;
		line-height: 1.25;
		margin: 0;
	}
	.md-slider-mobile-title a {
		color: #fff;
		text-decoration: none;
	}
}

.md-slider-split {
    position: relative;
    width: 100%;
    height: 660px;
    display: flex;
    overflow: hidden;
    background: var(--md-slider-dark);
    isolation: isolate;
}
.md-slider-split-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--md-slider-dark); }
.md-slider-split-bg-item { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.md-slider-split-bg-item.active { opacity: 1; }
.md-slider-split-bg-item img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); filter: blur(36px) saturate(1.15) brightness(.52); }
.md-slider-split-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,11,.12) 0%, rgba(8,8,11,.42) 48%, rgba(8,8,11,.74) 100%), linear-gradient(0deg, rgba(8,8,11,.5) 0%, transparent 42%); }

@media (max-width: 767px) {
    .md-slider-split {
        display: none !important;
    }
}

.md-slider-split-left {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.md-slider-split-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.md-slider-split-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    transition: opacity 0.6s ease;
}

.md-slider-split-image.active {
    opacity: 1;
    pointer-events: auto;
}

.md-slider-split-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.md-slider-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.md-slider-split-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, transparent 55%, rgba(10,10,10,0.45) 100%),
        linear-gradient(to top, rgba(8,8,8,0.55) 0%, transparent 38%);
    pointer-events: none;
}

.md-slider-split-diagonal { display: none; }

.md-slider-split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 56px 48px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.md-slider-split-contents {
    flex: 1;
    position: relative;
}

.md-slider-split-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.md-slider-split-content.active {
    opacity: 1;
    visibility: visible;
}

.md-slider-split-content-inner {
    max-width: 650px;
}

.md-slider-split-content-inner > * {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s cubic-bezier(.23,1,.32,1);
}
.md-slider-split-content.active .md-slider-split-content-inner > * {
    opacity: 1;
    transform: translateY(0);
}
.md-slider-split-content.active .md-slider-split-category { transition-delay: .08s; }
.md-slider-split-content.active .md-slider-split-title { transition-delay: .16s; }
.md-slider-split-content.active .md-slider-split-excerpt { transition-delay: .24s; }
.md-slider-split-content.active .md-slider-split-btn { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
    .md-slider-split-content-inner > * { transition: none; transform: none; opacity: 1; }
}

.md-slider-split-category {
    display: inline-flex;
    align-items: center;
    align-self: center;
    color: #fff;
    background: linear-gradient(135deg, var(--md-slider-primary-light) 0%, var(--md-slider-primary) 100%);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
    box-shadow: 0 6px 18px rgba(178,0,0,.4), 0 0 0 1px rgba(255,255,255,.12) inset;
    font-family: var(--md-slider-font);
}

.md-slider-split-title {
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.01em;
    margin: 0 0 18px 0;
    font-family: var(--md-slider-font);
    text-wrap: balance;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.md-slider-split-title a {
    color: #ffffff;
    text-decoration: none;
    background-image: linear-gradient(var(--md-slider-primary-light), var(--md-slider-primary-light));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0% 2px;
    transition: background-size .35s cubic-bezier(.23,1,.32,1), color 0.3s ease;
}

.md-slider-split-title a:hover {
    color: #ffffff;
    background-size: 100% 2px;
}

.md-slider-split-excerpt {
    font-size: 15.5px;
    line-height: 1.65;
    color: #c2c2c8;
    margin-bottom: 28px;
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--md-slider-font);
}

.md-slider-split-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--md-slider-primary-light) 0%, var(--md-slider-primary) 100%);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    text-decoration: none;
    border: 0;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(178,0,0,.4), 0 0 0 1px rgba(255,255,255,.1) inset;
    transition: transform 0.25s cubic-bezier(.23,1,.32,1), box-shadow 0.25s ease, filter 0.25s ease;
    font-family: var(--md-slider-font);
}

.md-slider-split-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-18deg);
    transition: left .6s ease;
}

.md-slider-split-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -6px rgba(178,0,0,.55);
}

.md-slider-split-btn:hover::before {
    left: 130%;
}

.md-slider-split-btn-arrow {
    display: flex;
    transition: transform 0.3s ease;
}

.md-slider-split-btn:hover .md-slider-split-btn-arrow {
    transform: translateX(5px);
}

.md-slider-split-prev,
.md-slider-split-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(20,20,20,0.42);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.22);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,.3);
    transition: background .25s ease, border-color .25s ease, transform .25s cubic-bezier(.23,1,.32,1), box-shadow .25s ease;
}

.md-slider-split-prev { left: 18px; }
.md-slider-split-next { right: 18px; }

.md-slider-split-prev:hover,
.md-slider-split-next:hover {
    background: var(--md-slider-primary);
    border-color: rgba(255,255,255,.55);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 24px rgba(178,0,0,.45);
}

.md-slider-split-prev:active,
.md-slider-split-next:active {
    transform: translateY(-50%) scale(.92);
}

.md-slider-split-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.md-slider-split-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 26px;
}
.md-slider-split-dot {
    width: 26px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: width .3s cubic-bezier(.23,1,.32,1), background .3s ease;
}
.md-slider-split-dot:hover { background: rgba(255,255,255,.55); }
.md-slider-split-dot.active {
    width: 40px;
    background: linear-gradient(90deg, var(--md-slider-primary-light), var(--md-slider-primary));
}

@media (max-width: 767px) {
    .md-slider-split-wrapper {
        display: none !important;
    }
}

.dedomeno-section {
    margin-bottom: 0;
    padding: 0;
    position: relative;
}

.dedomeno-style-group {
    position: relative;
    margin-bottom: 30px;
}

.dedomeno-style-group:last-child {
    margin-bottom: 0;
}

.dedomeno-posts-grid {
    display: grid;
    gap: 24px;
    margin-top: 0px;
}

.dedomeno-post-card {
    background: #fff;
    overflow: hidden;
    position: relative;
}

.dedomeno-post-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.dedomeno-post-content {
    padding: 20px;
}

.dedomeno-post-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.25;
    font-family: cfastystd-book;
}

.dedomeno-post-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.dedomeno-post-title a:hover {
    box-shadow: inset 0 -0.4px 0 0 #000;
}

.design-dedomeno-health .dedomeno-post-card:first-child .dedomeno-post-title a:hover,
.design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-title a:hover,
.design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-title a:hover {
    box-shadow: inset 0 -0.4px 0 0 #fff;
}

.dedomeno-post-excerpt {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.dedomeno-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dedomeno-post-date {
    font-size: 12px;
    color: #6e777f;
    font-weight: 600;
}

.dedomeno-post-image-link {
    display: block;
    overflow: hidden;
}

.dedomeno-posts-grid[data-post-count="1"] {
    grid-template-columns: 1fr !important;
}

.dedomeno-posts-grid[data-post-count="2"] {
    grid-template-columns: repeat(2, 1fr) !important;
}

.dedomeno-posts-grid[data-post-count="3"] {
    grid-template-columns: repeat(3, 1fr) !important;
}

.dedomeno-posts-grid[data-post-count="4"] {
    grid-template-columns: repeat(2, 1fr) !important;
}

.dedomeno-posts-grid[data-post-count="5"] {
    grid-template-columns: 2fr 1fr 1fr !important;
}

.dedomeno-posts-grid[data-post-count="5"] .dedomeno-post-card:first-child {
    grid-column: 1;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .dedomeno-posts-grid[data-post-count="3"],
    .dedomeno-posts-grid[data-post-count="4"],
    .dedomeno-posts-grid[data-post-count="5"] {
        grid-template-columns: 1fr !important;
    }

    .dedomeno-posts-grid[data-post-count="5"] .dedomeno-post-card:first-child {
        grid-column: 1;
        grid-row: span 1;
    }

    .dedomeno-post-meta {
        justify-content: center;
        text-align: center;
        margin-top: 10px;
    }

    .dedomeno-post-content {
        display: flex;
        flex-direction: column;
    }

    .dedomeno-post-excerpt {
        order: 1;
        line-height: 1.4;
    }

    .dedomeno-post-meta {
        order: 2;
    }
}

.design-dedomeno-politiki .dedomeno-posts-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 30px;
}
.design-dedomeno-politiki .dedomeno-post-card {
    grid-column: span 4;
    background: #f8f8f8;
    border: 1px solid #d1d5db;
    overflow: hidden;
}
.design-dedomeno-politiki .dedomeno-post-card:nth-child(-n+2) {
    grid-column: span 6;
    background: #fff;
    border: 3px solid #1a1a1a;
}
.design-dedomeno-politiki .dedomeno-post-card:nth-child(n+6) {
    grid-column: span 3;
}
.design-dedomeno-politiki .dedomeno-post-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: 50% 15%;
}
.design-dedomeno-politiki .dedomeno-post-card:nth-child(-n+2) .dedomeno-post-image {
    height: 400px;
}
.design-dedomeno-politiki .dedomeno-post-content {
    padding: 30px;
}
.design-dedomeno-politiki .dedomeno-post-title {
    font-size: 19px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 12px;
}
.design-dedomeno-politiki .dedomeno-post-card:nth-child(-n+2) .dedomeno-post-title {
    font-size: 29px;
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.25;
}
.design-dedomeno-politiki .dedomeno-post-excerpt {
    font-size: 16px;
    line-height: 1.4;
    color: #374151;
}
.design-dedomeno-politiki .dedomeno-post-card:nth-child(n+3) .dedomeno-post-excerpt {
    display: none;
}
.design-dedomeno-politiki .dedomeno-post-card:nth-child(n+3) .dedomeno-post-content {
    padding: 20px;
}
.design-dedomeno-politiki .dedomeno-post-card:nth-child(n+6) .dedomeno-post-image {
    height: 190px;
}
.design-dedomeno-politiki .dedomeno-post-card:nth-child(n+6) .dedomeno-post-title {
    font-size: 16px;
}
.design-dedomeno-politiki .dedomeno-post-card:nth-child(n+6) .dedomeno-post-content {
    padding: 16px;
}
.design-dedomeno-politiki .dedomeno-post-date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6e777f;
}

.design-dedomeno-autokinito .dedomeno-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.design-dedomeno-autokinito .dedomeno-posts-grid[data-post-count] {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
@media (max-width: 1024px) {
    .design-dedomeno-autokinito .dedomeno-posts-grid[data-post-count] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
@media (max-width: 480px) {
    .design-dedomeno-autokinito .dedomeno-posts-grid[data-post-count] {
        grid-template-columns: 1fr !important;
    }
}

.design-dedomeno-autokinito .dedomeno-post-card {
    background: #1a1a1a;
    color: white;
    border: 2px solid #dc2626;
    border-radius: 10px;
}

.design-dedomeno-autokinito .dedomeno-post-title a,
.design-dedomeno-autokinito .dedomeno-post-excerpt {
    color: white;
    line-height: 1.4;
}

.design-dedomeno-autokinito .dedomeno-post-title a:hover {
    text-decoration: underline;
    text-decoration-color: white;
}

.design-dedomeno-autokinito .dedomeno-post-meta {
    color: #ef4444;
}

.design-dedomeno-autokinito .dedomeno-post-date {
    color: #6e777f;
}

.design-dedomeno-life .dedomeno-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #000;
}

.design-dedomeno-life .dedomeno-post-card {
    background: white;
    overflow: hidden;
    position: relative;
}

.design-dedomeno-life .dedomeno-post-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.design-dedomeno-life .dedomeno-post-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: saturate(0.9);
    transition: all 0.3s ease;
}

.design-dedomeno-life .dedomeno-post-card:hover .dedomeno-post-image {
    transform: scale(1.05);
    filter: saturate(1.1) brightness(1.05);
}

.design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-image-link {
    display: block;
    width: 100%;
    height: 100%;
    flex: 1;
    position: relative;
}

.design-dedomeno-life .dedomeno-post-content {
    padding: 25px;
    text-align: center;
}

.design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: white;
    padding: 50px;
    text-align: left;
}

.design-dedomeno-life .dedomeno-post-title {
    font-family: cfastystd-book;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-title {
    font-size: 35px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-title a {
    color: white;
}

.design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-title a:hover {
    text-decoration: underline;
    text-decoration-color: white;
}

.design-dedomeno-life .dedomeno-post-excerpt {
    display: none;
    line-height: 1.4;
}

.design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-excerpt {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.4;
}

.design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-date {
    color: white;
}

.design-dedomeno-viral .dedomeno-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.design-dedomeno-viral .dedomeno-post-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--color-bg-soft, #eef1f5);
    box-shadow: 0 12px 30px -18px rgba(15, 23, 42, 0.5);
    isolation: isolate;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.design-dedomeno-viral .dedomeno-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px -18px rgba(15, 23, 42, 0.6);
}

.design-dedomeno-viral .dedomeno-post-image-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 0;
    overflow: hidden;
}

.design-dedomeno-viral .dedomeno-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.design-dedomeno-viral .dedomeno-post-card:hover .dedomeno-post-image {
    transform: scale(1.07);
}

.design-dedomeno-viral .dedomeno-post-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(to top, rgba(8, 10, 18, 0.92) 0%, rgba(8, 10, 18, 0.55) 38%, rgba(8, 10, 18, 0) 72%);
    pointer-events: none;
}

.design-dedomeno-viral .dedomeno-post-content::before {
    content: "VIRAL";
    align-self: flex-start;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    color: #fff;
    background: var(--color-brand, #b20000);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.design-dedomeno-viral .dedomeno-post-title {
    margin: 0;
}

.design-dedomeno-viral .dedomeno-post-title a {
    pointer-events: auto;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.design-dedomeno-viral .dedomeno-post-card:hover .dedomeno-post-title a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.design-dedomeno-viral .dedomeno-post-excerpt {
    display: none;
}

.design-dedomeno-viral .dedomeno-post-meta {
    margin-top: 8px;
}

.design-dedomeno-viral .dedomeno-post-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11.5px;
    font-weight: 600;
}

.design-dedomeno-viral .dedomeno-post-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 3;
    background: linear-gradient(90deg, var(--color-brand, #b20000), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.design-dedomeno-viral .dedomeno-post-card:hover::after {
    transform: scaleX(1);
}

.design-dedomeno-kosmos .dedomeno-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.design-dedomeno-kosmos .dedomeno-post-card {
    background: white;
    border-bottom: 3px solid #bb1919;
    overflow: hidden;
    position: relative;
}

.design-dedomeno-kosmos .dedomeno-post-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
    border-bottom: 6px solid #bb1919;
    display: flex;
    flex-direction: column;
}

.design-dedomeno-kosmos .dedomeno-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-image-link {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
}

.design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-image {
    height: 100%;
    min-height: 400px;
    width: 100%;
    object-fit: cover;
}

.design-dedomeno-kosmos .dedomeno-post-content {
    padding: 20px;
    background: white;
}

.design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    color: white;
    padding: 40px;
    z-index: 1;
}

.design-dedomeno-kosmos .dedomeno-post-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-title a,
.design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-excerpt {
    color: white;
    line-height: 1.1;
}

.design-dedomeno-kosmos .dedomeno-post-date {
    color: #6e777f;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
}

.design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-date {
    color: white;
}

.design-dedomeno-sports .dedomeno-posts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.design-dedomeno-sports .dedomeno-post-card {
    background: white;
    border: 1px solid #d6d6d6;
    overflow: hidden;
}

.design-dedomeno-sports .dedomeno-post-card:first-child {
    grid-column: 1;
    grid-row: span 4;
    background: #000;
    color: white;
    position: relative;
    min-height: 623px;
    overflow: hidden;
}

.design-dedomeno-sports .dedomeno-post-card:first-child .dedomeno-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.design-dedomeno-sports .dedomeno-post-card:first-child:hover .dedomeno-post-image {
    opacity: 0.9;
    transform: scale(1.05);
}

.design-dedomeno-sports .dedomeno-post-card:first-child .dedomeno-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.design-dedomeno-sports .dedomeno-post-card:first-child .dedomeno-post-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.25;
}

.design-dedomeno-sports .dedomeno-post-card:first-child .dedomeno-post-title a:hover {
    text-decoration: underline;
    text-decoration-color: white;
}

.design-dedomeno-sports .dedomeno-post-card:first-child .dedomeno-post-title a,
.design-dedomeno-sports .dedomeno-post-card:first-child .dedomeno-post-excerpt,
.design-dedomeno-sports .dedomeno-post-card:first-child .dedomeno-post-date {
    color: white;
}

.design-dedomeno-sports .dedomeno-post-card:not(:first-child) {
    border-left: 4px solid #dc2626;
    padding-left: 0;
}

.design-dedomeno-sports .dedomeno-post-card:not(:first-child) .dedomeno-post-image {
    display: none;
}

.design-dedomeno-sports .dedomeno-post-card:not(:first-child) .dedomeno-post-content {
    padding: 16px;
}

.design-dedomeno-sports .dedomeno-post-card:not(:first-child) .dedomeno-post-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.design-dedomeno-sports .dedomeno-post-card:nth-child(6) .dedomeno-post-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}

.design-dedomeno-health .dedomeno-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.design-dedomeno-health .dedomeno-post-card {
    background: white;
    border: 1px solid #d1d5db;
    transition: all 0.2s ease;
    position: relative;
}

.design-dedomeno-health .dedomeno-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #059669;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.design-dedomeno-health .dedomeno-post-card:hover::before {
    transform: scaleX(1);
}

.design-dedomeno-health .dedomeno-post-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.design-dedomeno-health .dedomeno-post-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.design-dedomeno-health .dedomeno-post-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.design-dedomeno-health .dedomeno-post-card:first-child .dedomeno-post-image {
    height: 100%;
    min-height: 400px;
}

.design-dedomeno-health .dedomeno-post-content {
    padding: 20px;
}

.design-dedomeno-health .dedomeno-post-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}

.design-dedomeno-health .dedomeno-post-card:first-child .dedomeno-post-title {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.25;
}

.design-dedomeno-health .dedomeno-post-excerpt {
    display: none;
    line-height: 1.4;
}

.design-dedomeno-health .dedomeno-post-card:first-child .dedomeno-post-excerpt {
    display: block;
    font-size: 16px;
    line-height: 1.4;
    color: #4b5563;
    margin-bottom: 16px;
}

.design-dedomeno-health .dedomeno-post-date {
    font-size: 12px;
    color: #6e777f;
    font-weight: 600;
}

.design-dedomeno-health .dedomeno-post-card:first-child .dedomeno-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.72) 55%, transparent 100%);
    color: #fff;
    padding: 36px 30px 28px;
    z-index: 1;
}

.design-dedomeno-health .dedomeno-post-card:first-child .dedomeno-post-title a {
    color: #fff;
}

.design-dedomeno-health .dedomeno-post-card:first-child .dedomeno-post-excerpt {
    color: rgba(255,255,255,0.85);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.design-dedomeno-health .dedomeno-post-card:first-child .dedomeno-post-date {
    color: rgba(255,255,255,0.75);
}

.design-dedomeno-finance .dedomeno-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.design-dedomeno-finance .dedomeno-post-card {
    background: white;
    border: 1px solid #d1d5db;
    position: relative;
    transition: all 0.2s ease;
}

.design-dedomeno-finance .dedomeno-post-card:hover {
    border-color: #1e3a8a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.design-dedomeno-finance .dedomeno-post-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.design-dedomeno-finance .dedomeno-post-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-image {
    height: 100%;
    min-height: 400px;
}

.design-dedomeno-finance .dedomeno-post-content {
    padding: 16px;
}

.design-dedomeno-finance .dedomeno-post-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-title {
    font-size: 31px;
    font-weight: 900;
    line-height: 1.22;
    margin-bottom: 12px;
}

.design-dedomeno-finance .dedomeno-post-excerpt {
    display: none;
    line-height: 1.4;
}

.design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.78) 55%, rgba(0,0,0,0.35) 82%, transparent 100%);
    color: white;
    padding: 48px 32px 26px;
    z-index: 1;
}

.design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
}

.design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-title a {
    color: white;
}

.design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-meta {
    position: static;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-date {
    color: rgba(255,255,255,0.75);
}

.design-dedomeno-finance .dedomeno-post-meta {
    position: static;
    background: transparent;
    padding: 0;
    border-radius: 0;
}
.design-dedomeno-finance .dedomeno-post-card:not(:first-child) .dedomeno-post-content {
    display: flex;
    flex-direction: column;
}
.design-dedomeno-finance .dedomeno-post-card:not(:first-child) .dedomeno-post-meta {
    order: -1;
    margin-bottom: 7px;
}

.design-dedomeno-finance .dedomeno-post-date {
    font-size: 11px;
    font-weight: 600;
    color: #6e777f;
}

@media (max-width: 768px) {
    .design-dedomeno-finance .dedomeno-posts-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .design-dedomeno-finance .dedomeno-post-card {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .design-dedomeno-finance .dedomeno-post-card:first-child {
        grid-column: 1;
        grid-row: auto;
    }

    .design-dedomeno-finance .dedomeno-post-image-link {
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .design-dedomeno-finance .dedomeno-post-card:first-child > .dedomeno-post-image-link {
        position: relative;
        inset: auto;
        height: auto;
    }

    .design-dedomeno-finance .dedomeno-post-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-image {
        height: 300px;
        min-height: 300px;
    }

    .design-dedomeno-finance .dedomeno-post-content {
        padding: 20px;
        position: relative;
    }

    .design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-content {
        padding: 24px 20px;
    }

    .design-dedomeno-finance .dedomeno-post-title {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.25;
    }

    .design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.25;
    }

    .design-dedomeno-finance .dedomeno-post-excerpt {
        display: none;
        line-height: 1.4;
    }

    .design-dedomeno-finance .dedomeno-post-card:first-child .dedomeno-post-excerpt {
        display: block;
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .design-dedomeno-finance .dedomeno-post-meta {
        position: static;
        background: none;
        padding: 0;
        margin-top: 8px;
        order: 3;
    }

    .design-dedomeno-finance .dedomeno-post-content {
        display: flex;
        flex-direction: column;
    }

    .design-dedomeno-finance .dedomeno-post-title {
        order: 1;
        line-height: 1.25;
    }

    .design-dedomeno-finance .dedomeno-post-excerpt {
        order: 2;
        line-height: 1.4;
    }

    .design-dedomeno-finance .dedomeno-post-date {
        font-size: 12px;
    }
}

.design-dedomeno-business .dedomeno-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.design-dedomeno-business .dedomeno-posts-grid[data-post-count] {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.design-dedomeno-business .dedomeno-post-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.2s ease;
}

.design-dedomeno-business .dedomeno-post-card:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.design-dedomeno-business .dedomeno-post-card:first-child {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    overflow: visible;
}

.design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image-link {
    order: 2;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.design-dedomeno-business .dedomeno-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 15%;
}

.design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image {
    height: 100%;
    min-height: 350px;
    width: 100%;
    object-fit: cover;
}

.design-dedomeno-business .dedomeno-post-content {
    padding: 20px;
}

.design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.design-dedomeno-business .dedomeno-post-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}

.design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.design-dedomeno-business .dedomeno-post-excerpt {
    font-size: 15px;
    line-height: 1.4;
    color: #4b5563;
    margin-bottom: 16px;
}

.design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-excerpt {
    font-size: 18px;
    color: #374151;
    line-height: 1.4;
}

.design-dedomeno-business .dedomeno-post-date {
    font-size: 12px;
    color: #6e777f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.design-dedomeno-business .dedomeno-post-card:first-child {
    min-height: 430px;
}
.design-dedomeno-business .dedomeno-post-card:first-child > .dedomeno-post-image-link {
    position: relative;
    display: block;
    overflow: hidden;
}
.design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.design-media-grid .dedomeno-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.design-media-grid .dedomeno-post-card {
    background: #111;
    color: white;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.design-media-grid .dedomeno-post-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 10;
}

.design-media-grid .dedomeno-post-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.design-media-grid .dedomeno-post-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.4s ease;
}

.design-media-grid .dedomeno-post-card:hover .dedomeno-post-image {
    filter: brightness(0.9);
}

.design-media-grid .dedomeno-post-card:first-child .dedomeno-post-image {
    height: 100%;
}

.design-media-grid .dedomeno-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.design-media-grid .dedomeno-post-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.design-media-grid .dedomeno-post-title a {
    color: white;
}

.design-media-grid .dedomeno-post-title a:hover {
    text-decoration: underline;
    text-decoration-color: white;
}

.design-media-grid .dedomeno-post-card:first-child .dedomeno-post-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
}

.design-media-grid .dedomeno-post-excerpt {
    display: none;
    line-height: 1.4;
}

.design-media-grid .dedomeno-post-date {
    font-size: 12px;
    color: white;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    display: block;
    margin-top: 5px;
}

@media (max-width: 480px) {
    .design-media-grid .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 19px !important;
        line-height: 1.25;
    }
    .design-dedomeno-autokinito .dedomeno-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {

    .design-dedomeno-business .dedomeno-post-card:first-child {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image-link {
        order: -1 !important;
        height: 600px;
    }

    .design-dedomeno-sports .dedomeno-post-card:first-child {
        grid-column: 1;
        grid-row: span 3;
        background: #000;
        color: white;
        position: relative;
        min-height: 600px;
        overflow: hidden;
    }

    .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 30px !important;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child {
        max-height: 640px;
    }

}

@media (max-width: 1024px) and (min-width: 769px) {

    .design-dedomeno-life .dedomeno-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
        background: transparent;
    }

    .design-dedomeno-life .dedomeno-post-card {
        background: white !important;
        border: 1px solid #e5e7eb;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
        display: flex;
        flex-direction: column;
        max-height: none;
        overflow: hidden;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-image-link {
        position: relative;
        height: 400px;
        order: -1;
        width: 100%;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-content {
        position: relative;
        background: white;
        color: #1a1a1a;
        padding: 30px;
        text-align: center;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 30px !important;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-title a {
        color: #1a1a1a;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-excerpt {
        color: #4a5568;
        font-size: 16px;
    }

    .design-dedomeno-life .dedomeno-post-card:not(:first-child) .dedomeno-post-image {
        height: 220px;
    }

    .design-dedomeno-life .dedomeno-post-card:nth-child(6) {
        grid-column: span 2;
    }

    .design-dedomeno-business .dedomeno-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child {
        grid-column: span 2 !important;
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image-link {
        order: -1 !important;
        height: 350px;
        display: block !important;
        width: 100% !important;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-content {
        order: 1 !important;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image {
        min-height: auto !important;
        height: 100% !important;
        width: 100% !important;
    }

    .design-dedomeno-kosmos .dedomeno-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-image {
        min-height: 300px !important;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-content {
        padding: 30px !important;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 28px !important;
    }

    .design-dedomeno-politiki .dedomeno-post-card {
        grid-column: span 6 !important;
    }

    .design-dedomeno-politiki .dedomeno-post-image {
        height: 220px !important;
    }

    .design-dedomeno-politiki .dedomeno-post-card:nth-child(-n+2) .dedomeno-post-image {
        height: 300px !important;
    }

    .design-dedomeno-politiki .dedomeno-post-card:nth-child(-n+2) .dedomeno-post-title {
        font-size: 24px !important;
    }

    .design-dedomeno-viral .dedomeno-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px;
    }

    .design-media-grid .dedomeno-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .design-media-grid .dedomeno-post-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .design-media-grid .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .design-media-grid .dedomeno-post-title {
        font-size: 18px;
        line-height: 1.25;
    }

    .design-media-grid .dedomeno-post-image {
        height: 250px;
    }

    .design-media-grid .dedomeno-post-card:first-child .dedomeno-post-image {
        height: 540px;
    }

    .design-media-grid .dedomeno-post-card:nth-child(6) {
        grid-column: span 2;
    }

    .design-media-grid .dedomeno-post-card:nth-child(7),
    .design-media-grid .dedomeno-post-card:nth-child(8) {
        display: none;
    }

    .design-dedomeno-autokinito .dedomeno-posts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {

    .design-dedomeno-autokinito .dedomeno-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .dedomeno-post-card:not(:first-child) .dedomeno-post-title {
        font-size: 19px !important;
    }

    .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px !important;
    }

    .design-dedomeno-health .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px !important;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px !important;
        font-weight: 800 !important;
    }

    .dedomeno-posts-grid {
        grid-template-columns: 1fr !important;
    }

    .design-dedomeno-sports .dedomeno-post-card:first-child,
    .design-dedomeno-health .dedomeno-post-card:first-child {
        grid-column: auto;
        grid-row: auto;
        min-height: 300px;
    }

    .design-dedomeno-sports .dedomeno-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .design-dedomeno-sports .dedomeno-post-card:first-child {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 540px;
    }

    .design-dedomeno-sports .dedomeno-post-card:first-child .dedomeno-post-image {
        height: 250px;
    }

    .design-dedomeno-sports .dedomeno-post-card:first-child .dedomeno-post-content {
        padding: 25px;
    }

    .design-dedomeno-sports .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px !important;
        line-height: 1.25;
    }

    .design-dedomeno-sports .dedomeno-post-card:first-child .dedomeno-post-excerpt {
        font-size: 14px;
        line-height: 1.4;
    }

    .design-dedomeno-sports .dedomeno-post-card:not(:first-child) .dedomeno-post-title {
        font-size: 19px;
        line-height: 1.25;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px !important;
        font-weight: 800 !important;
    }

    .dedomeno-post-image {
        height: 200px;
    }

    .design-dedomeno-health .dedomeno-post-image {
        height: 160px;
    }

    .design-dedomeno-health .dedomeno-post-card:first-child .dedomeno-post-image {
        height: 200px;
        min-height: 200px;
    }

    .design-dedomeno-health .dedomeno-post-card:first-child > .dedomeno-post-image-link {
        position: relative;
        inset: auto;
        height: auto;
    }

    .design-media-grid .dedomeno-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .design-media-grid .dedomeno-post-card:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    .design-media-grid .dedomeno-post-image {
        height: 285px;
    }

    .design-media-grid .dedomeno-post-card:first-child .dedomeno-post-image {
        height: 250px;
    }

    .design-media-grid .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px !important;
        line-height: 1.25;
    }

    .design-media-grid .dedomeno-post-title {
        font-size: 18px;
    }

    .design-media-grid .dedomeno-post-content {
        padding: 20px;
    }

    .design-media-grid .dedomeno-post-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .design-dedomeno-viral .dedomeno-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px;
    }

    .design-dedomeno-viral .dedomeno-post-content {
        padding: 14px;
    }

    .design-dedomeno-viral .dedomeno-post-title a {
        font-size: 14.5px;
        -webkit-line-clamp: 3;
    }

    .design-dedomeno-sports .dedomeno-posts-grid {
        grid-template-columns: 1fr !important;
    }

    .design-dedomeno-kosmos .dedomeno-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        display: block !important;
        border-bottom: 3px solid #bb1919;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-image {
        min-height: 250px !important;
        height: 250px !important;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-content {
        position: relative !important;
        background: white !important;
        color: #1a1a1a !important;
        padding: 20px !important;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px !important;
        font-weight: 700 !important;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-title a,
    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-excerpt {
        color: #1a1a1a !important;
        line-height: 1.1;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-date {
        color: white;
    }

    .design-dedomeno-kosmos .dedomeno-post-card:first-child .dedomeno-post-image-link {
        flex: none !important;
        display: block !important;
    }

    .design-dedomeno-kosmos .dedomeno-post-card {
        margin-bottom: 16px;
    }

    .design-dedomeno-kosmos .dedomeno-post-title {
        font-size: 18px !important;
    }

    .design-dedomeno-politiki .dedomeno-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .design-dedomeno-politiki .dedomeno-post-card:first-child {
        grid-column: span 1 !important;
    }

    .design-dedomeno-politiki .dedomeno-post-image {
        height: 220px !important;
    }

    .design-dedomeno-politiki .dedomeno-post-card:first-child .dedomeno-post-image {
        height: 280px !important;
    }

    .design-dedomeno-politiki .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 28px !important;
        margin-bottom: 16px !important;
    }

    .design-dedomeno-politiki .dedomeno-post-content {
        padding: 20px !important;
    }

    .design-dedomeno-politiki .dedomeno-post-title {
        font-size: 20px !important;
    }

    .design-dedomeno-politiki .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px !important;
    }

    .design-dedomeno-life .dedomeno-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        background: transparent;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        display: flex;
        flex-direction: column;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-image-link {
        height: 280px;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-content {
        position: relative;
        background: white;
        color: #1a1a1a;
        padding: 24px;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-title a {
        color: #1a1a1a;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-excerpt {
        color: #4a5568;
        font-size: 16px;
    }

    .design-dedomeno-life .dedomeno-post-image {
        height: 200px;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-image {
        height: 100%;
    }

    .design-dedomeno-life .dedomeno-post-content {
        padding: 20px;
    }

    .design-dedomeno-life .dedomeno-post-title {
        font-size: 20px;
    }

    .design-dedomeno-business .dedomeno-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child {
        grid-column: span 1 !important;
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image-link {
        order: -1;
        height: 250px;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-excerpt {
        font-size: 16px;
    }

    .design-dedomeno-business .dedomeno-post-image {
        height: 180px;
    }

    .design-dedomeno-business .dedomeno-post-content {
        padding: 16px;
    }
}

@media (max-width: 480px) {

    .dedomeno-post-title {
        font-size: 18px;
        line-height: 1.25;
    }

    .dedomeno-post-excerpt {
        font-size: 14px;
        line-height: 1.4;
    }

    .dedomeno-post-content {
        padding: 16px;
    }
}

@media (max-width: 1024px) {
    .design-dedomeno-life .dedomeno-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
        max-height: 500px;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-image {
        height: 400px;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-image-link {
        height: 400px;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 36px;
        line-height: 1.25;
    }
}

@media (max-width: 768px) {
    .design-dedomeno-life .dedomeno-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        background: transparent;
    }

    .design-dedomeno-life .dedomeno-post-card {
        border: 1px solid #e5e7eb;
        margin-bottom: 20px;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child {
        grid-column: span 1;
        grid-row: span 1;
        max-height: none;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-image {
        height: 300px;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-image-link {
        height: 300px;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-content {
        position: relative;
        background: white;
        color: #1a1a1a;
        padding: 25px;
        text-align: center;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px;
        line-height: 1.25;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-title a {
        color: #1a1a1a;
    }

    .design-dedomeno-life .dedomeno-post-card:first-child .dedomeno-post-excerpt {
        color: #4a5568;
        font-size: 16px;
        line-height: 1.4;
    }

    .design-dedomeno-life .dedomeno-post-image {
        height: 200px;
    }

    .design-dedomeno-life .dedomeno-post-title {
        font-size: 20px;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    .design-dedomeno-viral .dedomeno-posts-grid {
        grid-template-columns: 1fr !important;
    }

    .design-dedomeno-viral .dedomeno-post-card {
        aspect-ratio: 16 / 9;
    }

    .design-dedomeno-viral .dedomeno-post-content {
        padding: 16px;
    }

    .design-dedomeno-viral .dedomeno-post-title a {
        font-size: 16px;
    }

    .design-media-grid .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px !important;
        line-height: 1.25;
    }

    .design-media-grid .dedomeno-post-title {
        font-size: 18px;
        margin-bottom: 2px;
        line-height: 1.25;
    }

    .design-media-grid .dedomeno-post-content {
        padding: 16px;
    }

    .design-media-grid .dedomeno-post-image {
        height: 285px;
    }

    .design-media-grid .dedomeno-post-card:first-child .dedomeno-post-image {
        height: 285px;
    }

    .design-media-grid .dedomeno-post-date {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .design-dedomeno-business .dedomeno-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child {
        grid-column: span 2;
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image-link {
        order: 1;
        height: 300px;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image {
        min-height: 300px;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .design-dedomeno-business .dedomeno-posts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child {
        grid-column: span 1;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image-link {
        height: 250px;
        order: 1;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image {
        min-height: 250px;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-content {
        padding: 20px;
        order: 2;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.25;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-excerpt {
        font-size: 16px;
        line-height: 1.4;
    }

    .design-dedomeno-business .dedomeno-post-image {
        height: 180px;
    }

    .design-dedomeno-business .dedomeno-post-title {
        font-size: 16px;
        line-height: 1.25;
    }

    .design-dedomeno-business .dedomeno-post-content {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image-link {
        height: 200px;
        order: 1;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-image {
        min-height: 200px;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-content {
        order: 2;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 24px;
        line-height: 1.25;
    }

    .design-dedomeno-business .dedomeno-post-card:first-child .dedomeno-post-excerpt {
        font-size: 14px;
        line-height: 1.4;
    }

    .design-dedomeno-business .dedomeno-post-excerpt {
        display: none;
        line-height: 1.4;
    }
}

.design-dedomeno-tv {
    position: relative;
}

.design-dedomeno-tv .dedomeno-vid-vertical-container {
    margin-bottom: 40px;
}

.design-dedomeno-tv .dedomeno-vid-vertical-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .design-dedomeno-tv .dedomeno-vid-vertical-grid {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .design-dedomeno-tv .dedomeno-vid-vertical-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
    }
    .design-dedomeno-tv .dedomeno-vid-vertical-grid::-webkit-scrollbar { display: none; }
    .design-dedomeno-tv .dedomeno-vid-vertical-post {
        flex: 0 0 44%;
        max-width: 190px;
        scroll-snap-align: start;
    }
}

.design-dedomeno-tv .dedomeno-vid-vertical-post {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    cursor: pointer;
    border-radius: 14px;
    background: #0a0a0a;
    box-shadow: 0 10px 30px -14px rgba(15, 15, 20, 0.45);
    transition: transform 0.3s cubic-bezier(.23,1,.32,1), box-shadow 0.3s ease;
}

.design-dedomeno-tv .dedomeno-vid-vertical-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px -16px rgba(15, 15, 20, 0.6);
}

.design-dedomeno-tv .dedomeno-vid-vertical-post .dedomeno-post-image-link {
    position: absolute;
    inset: 0;
    display: block;
}

.design-dedomeno-tv .dedomeno-vid-vertical-post .dedomeno-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.23,1,.32,1);
}

.design-dedomeno-tv .dedomeno-vid-vertical-post:hover .dedomeno-post-image {
    transform: scale(1.06);
}

.design-dedomeno-tv .dedomeno-vid-vertical-post .dedomeno-post-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 60px 13px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 45%, rgba(0,0,0,0.55) 75%, transparent 100%);
    color: #fff;
}

.design-dedomeno-tv .dedomeno-vid-vertical-post .dedomeno-post-title {
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.28;
    margin: 0 0 6px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0,0,0,0.55);
}

.design-dedomeno-tv .dedomeno-vid-vertical-post .dedomeno-post-title a {
    color: #fff;
    text-decoration: none;
}

.design-dedomeno-tv .dedomeno-vid-vertical-post .dedomeno-post-title a:hover {
    color: #fff;
}

.design-dedomeno-tv .dedomeno-vid-vertical-post .dedomeno-post-date {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.design-dedomeno-tv .dedomeno-vid-vertical-post .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15, 15, 20, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    pointer-events: none;
}

.design-dedomeno-tv .dedomeno-vid-vertical-post:hover .play-icon {
    background: var(--color-brand, #b20000);
    border-color: var(--color-brand, #b20000);
    transform: translate(-50%, -50%) scale(1.08);
}

.design-dedomeno-tv .dedomeno-vid-vertical-post .play-icon svg {
    width: 22px;
    height: 22px;
    margin-left: 2px;
}

.design-dedomeno-tv .dedomeno-post-excerpt {
    display: none;
}

@media (max-width: 768px) {
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        margin: 0 !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-card {
        position: relative !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 13px !important;
        width: auto !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 13px 0 !important;
        background: transparent !important;
        border: 0 !important;
        border-bottom: 1px solid var(--color-border, #e4e4e7) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        grid-column: auto !important;
        grid-row: auto !important;
        transform: none !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-card:last-child {
        border-bottom: 0 !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-card::before,
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-card::after {
        display: none !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-image-link {
        position: relative !important;
        inset: auto !important;
        flex: 0 0 118px !important;
        width: 118px !important;
        height: auto !important;
        aspect-ratio: 16 / 11 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        display: block !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-image {
        display: block !important;
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 11 !important;
        object-fit: cover !important;
        opacity: 1 !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-content {
        position: relative !important;
        inset: auto !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        background: none !important;
        color: var(--color-ink, #111) !important;
        display: block !important;
        text-align: left !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-title {
        font-size: 14.5px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        margin: 0 0 5px !important;
        color: var(--color-ink, #111) !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-title a {
        color: var(--color-ink, #111) !important;
        box-shadow: none !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-excerpt {
        display: none !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-meta {
        display: flex !important;
        justify-content: flex-start !important;
        text-align: left !important;
        margin: 0 !important;
        order: 0 !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-date {
        font-size: 11.5px !important;
        color: var(--color-meta, #717176) !important;
        font-weight: 600 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
    }

    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-card:first-child {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 0 0 15px !important;
        margin-bottom: 3px !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-card:first-child .dedomeno-post-image-link {
        flex: none !important;
        width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        border-radius: 10px !important;
        margin-bottom: 12px !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-card:first-child .dedomeno-post-image {
        aspect-ratio: 16 / 9 !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-card:first-child .dedomeno-post-title {
        font-size: 21px !important;
        font-weight: 900 !important;
        line-height: 1.22 !important;
        margin-bottom: 8px !important;
        -webkit-line-clamp: 4 !important;
    }
    .dedomeno-style-group:not(.design-dedomeno-autokinito):not(.design-dedomeno-viral) .dedomeno-posts-grid .dedomeno-post-card:first-child .dedomeno-post-excerpt {
        display: block !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        color: var(--color-text, #1a1a1a) !important;
        margin: 0 0 9px !important;
    }
}

@media (max-width: 768px) {
	.design-dedomeno-autokinito .dedomeno-post-date,
	.design-dedomeno-viral .dedomeno-post-date {
		text-transform: none;
		letter-spacing: 0;
	}
}
.dedomeno-style-group .dedomeno-post-date,
.design-media-grid .dedomeno-post-date,
.design-dedomeno-tv .dedomeno-post-date {
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
