html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } a:hover { border: 0; } body, input, button, textarea,* {font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;} input { -webkit-appearance: none; -moz-appearance: none; appearance: none; }
body a { color: #fff; text-decoration:none;}*, *:before, *:after {box-sizing: border-box;}
body {background:#101010; font-size:14px; color:#585858;}
:root {
	--card-bg: #1b1b1d;
	--card-bg-hover: #202024;
	--card-border: rgba(255,255,255,.12);
	--card-border-hover: rgba(255,138,38,.48);
	--card-text: #f4f4f5;
	--card-muted: #c7c7cb;
	--action-bg: #ff7b1a;
	--action-bg-hover: #ff8b2c;
	--action-bg-dark: #d85b08;
	--action-icon-bg: #080808;
	--action-text: #ffffff;
	--shadow-card: 0 18px 46px rgba(0,0,0,.32);
	--shadow-card-hover: 0 24px 60px rgba(0,0,0,.42);
	--radius-card: 10px;
	--radius-action: 999px;
}
.header__container {padding:10px;}
.site__brand {display:flex; align-items:center; gap:10px;    justify-content: center; border-bottom:1px solid rgba(255,255,255,.1);}
.site__brand img {vertical-align:bottom; max-width:60px;}
.site__brand span {font-weight:500; font-size:20px;}
.main__wrapper {max-width:1360px; margin:0 auto;}
	.container__header {}
	.container__header h1 {}
	.grid__offers-list {display:flex; flex-flow:column; gap:14px; margin-bottom:40px;}
	.grid__item-ellemet {}
		.item__body {position:relative;padding:1px;}
		.item__body:before {content: ""; display: block; position: absolute; inset: 0; border-radius: 10px; padding: 1px; background: linear-gradient(131.97deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.03) 49.85%, rgba(255, 255, 255, 0.2) 100%); -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;}
		.item__body a {padding:15px; display:flex; align-items:center; }
			.offer__body {background:#1d1d1d; position:relative; z-index:10; border-radius:10px;}
				.offer__media-pic {position:relative; overflow:hidden; width:120px; height:60px; border-radius:8px; border:1px solid rgba(255,255,255,.1);}
				.offer__media-pic img {position:absolute; left:0; top:0; width:100%; height:100%; object-fit:cover;}
 
.main__wrapper {
	padding: 22px 16px 60px;
}

.container__header {
	margin: 0 0 20px;
	text-align: center;
}

.container__header h1 {
	max-width: 940px;
	margin: 0 auto;
	color: var(--card-text);
	font-size: clamp(30px, 5vw, 58px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

.grid__offers-list {
	max-width: 1080px;
	margin: 0 auto;
}

.grid__item-ellemet {
	border-radius: var(--radius-card);
}

.item__body {
	border-radius: var(--radius-card);
	background: linear-gradient(180deg, var(--card-bg-hover), var(--card-bg));
	box-shadow: var(--shadow-card);
	transition: transform .24s ease, box-shadow .24s ease;
}

.item__body:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-card-hover);
}

.item__body:before {
	border-radius: var(--radius-card);
	background: linear-gradient(131.97deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.035) 48%, var(--card-border-hover) 100%);
	opacity: .95;
	transition: opacity .24s ease;
}

.item__body:hover:before {
	opacity: 1;
}

.item__body a {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	min-height: 116px;
	padding: 16px;
	border-radius: var(--radius-card);
	background:
		linear-gradient(135deg, rgba(255,255,255,.055), transparent 34%),
		linear-gradient(180deg, var(--card-bg-hover), var(--card-bg));
	color: var(--card-text);
	overflow: hidden;
	transition: background .24s ease;
}

.item__body a:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255,138,38,.08), transparent);
	opacity: 0;
	transform: translateX(-35%);
	transition: opacity .24s ease, transform .56s ease;
	pointer-events: none;
}

.item__body:hover a {
	background:
		linear-gradient(135deg, rgba(255,255,255,.07), transparent 34%),
		linear-gradient(180deg, #242428, var(--card-bg));
}

.item__body:hover a:after {
	opacity: 1;
	transform: translateX(35%);
}

.offer__media-pic {
	width: 140px;
	height: 78px;
	background: #111113;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
 
 
.offer__details {
	position: relative;
	z-index: 2;
	max-width: 620px;
	color: var(--card-muted);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.offer__action {
	position: relative;
	z-index: 2;
	min-width: 158px;
	min-height: 62px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 8px  8px;
	border-radius:10px;
	background: linear-gradient(180deg, var(--action-bg-hover), var(--action-bg));
	color: var(--action-text);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	box-shadow: inset 0 -3px 0 var(--action-bg-dark), inset 0 1px 0 rgba(255,255,255,.28);
	overflow: hidden;
	transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}
 
.offer__action:after {
	content: "";
	position: absolute;
	top: -70%;
	bottom: -70%;
	left: -42%;
	width: 30%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
	transform: rotate(18deg);
	opacity: 0;
}

.offer__action span {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	white-space: nowrap;
}

.offer__action span:after {
	content: "";
	width: 18px;
	height: 18px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7 6.3a1 1 0 0 1 1.4 0l4.9 4.9a1 1 0 0 1 0 1.4l-4.9 4.9a1 1 0 1 1-1.4-1.4l3.2-3.2H5a1 1 0 1 1 0-2h11.9l-3.2-3.2a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7 6.3a1 1 0 0 1 1.4 0l4.9 4.9a1 1 0 0 1 0 1.4l-4.9 4.9a1 1 0 1 1-1.4-1.4l3.2-3.2H5a1 1 0 1 1 0-2h11.9l-3.2-3.2a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: transform .24s ease;
}

.item__body:hover .offer__action {
	transform: translateY(-1px);
	background: linear-gradient(180deg, #ff963d, var(--action-bg-hover));
	box-shadow: inset 0 -3px 0 var(--action-bg-dark), inset 0 1px 0 rgba(255,255,255,.32);
}

.item__body:hover .offer__action:after {
	animation: action-shine .78s ease forwards;
	opacity: 1;
}

.item__body:hover .offer__action span:after {
	transform: translateX(4px);
}

@keyframes action-shine {
	from { left: -42%; }
	to { left: 118%; }
}

@media (max-width: 760px) {
	.item__body a {
		grid-template-columns: 112px minmax(0, 1fr);
		gap: 14px;
	}

	.offer__media-pic {
		width: 112px;
		height: 70px;
	}

	.offer__action {
		grid-column: 1 / 3;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.item__body a {
		grid-template-columns: 1fr;
	}

	.offer__media-pic {
		width: 100%;
		height: 92px;
	}

	.offer__action {
		grid-column: auto;
	}
}

body, input, button, textarea, * {
	font-family: -apple-system, BlinkMacSystemFont, Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.grid__item-ellemet {
	position: relative;
}

.grid__item-ellemet:before {
	content: attr(data-offer-count);
	position: absolute;
	left: 13px;
	top: 13px;
	z-index: 5;
	min-width: 42px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 9px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 8px;
	background: rgba(8,8,8,.82);
	color: #ff8b2c;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
	pointer-events: none;
}

.offer__media-pic {
	position: relative;
	isolation: isolate;
}

.offer__media-pic:before {
	content: "";
	position: absolute;
	top: -60%;
	bottom: -60%;
	left: -55%;
	z-index: 3;
	width: 36%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
	transform: rotate(18deg);
	opacity: 0;
	pointer-events: none;
}

.item__body:hover .offer__media-pic:before {
	animation: media-shine .9s ease forwards;
	opacity: 1;
}

.offer__media-pic--text {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	background:
		radial-gradient(circle at 18% 12%, rgba(255,255,255,.28), transparent 32%),
		linear-gradient(135deg, #ff8b2c, #ffb04f);
	color: #111113;
	text-align: center;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.08;
}

.offer__media-pic--text span {
	position: relative;
	z-index: 2;
	display: block;
}

.offer__action span:after {
	width: 20px;
	height: 20px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M15.6315 12L10.8838 3.03212L9.11622 3.9679L13.3685 12L9.11622 20.0321L10.8838 20.9679L15.6315 12Z'%3E%3C/path%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M15.6315 12L10.8838 3.03212L9.11622 3.9679L13.3685 12L9.11622 20.0321L10.8838 20.9679L15.6315 12Z'%3E%3C/path%3E%3C/svg%3E") center / contain no-repeat;
}

@keyframes media-shine {
	from { left: -55%; }
	to { left: 125%; }
}
 
body {
	background:
		radial-gradient(circle at 50% -140px, rgba(255,139,44,.16), transparent 360px),
		#101010;
	color: var(--card-muted);
}

.main__wrapper {
	max-width: 1360px;
	padding: 28px 16px 48px;
}

.container__header {
	max-width: 1080px;
	margin: 0 auto 30px;
	text-align: center;
}

.container__header h1 {
	max-width: 680px;
	color: var(--card-text);
	font-size: clamp(22px, 2.55vw, 34px);
	font-weight: 650;
	line-height: 1.22;
	letter-spacing: 0;
}

.grid__offers-list {
	max-width: 1080px;
	gap: 12px;
}

.grid__item-ellemet:before {
	left: -6px;
	top: 15px;
	width: 44px;
	height: 28px;
	min-width: 44px;
	padding: 0 8px;
	border-color: rgba(255,139,44,.34);
	border-radius: 0 8px 8px 0;
	background:
		linear-gradient(90deg, rgba(255,139,44,.22), rgba(255,255,255,.035)),
		#121214;
	color: var(--action-bg-hover);
	font-size: 14px;
	font-weight: 800;
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,.04),
		0 10px 24px rgba(0,0,0,.32);
}

.item__body a {
	grid-template-columns: 140px minmax(0, 1fr) auto;
	gap: 16px;
	min-height: 112px;
	padding: 15px 15px 15px 26px;
}

.offer__media-pic {
	grid-column: 1;
	width: 140px;
	height: 78px;
	border-radius: 9px;
	border-color: rgba(255,255,255,.1);
}

.offer__details {
	grid-column: 2;
	max-width: 620px;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.42;
}

.offer__action {
	grid-column: 3;
	min-width: 150px;
	min-height: 58px;
	padding: 8px 10px;
	font-size: 17px;
}

.article__details {
	max-width: 1080px;
	margin: 18px auto 0;
	padding: 20px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--radius-card);
	background: rgba(255,255,255,.035);
	color: var(--card-muted);
	line-height: 1.55;
}

footer {
	max-width: 1080px;
	margin: 0 auto 28px;
	padding: 18px 20px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--radius-card);
	background:
		linear-gradient(135deg, rgba(255,255,255,.05), transparent 42%),
		#151516;
	color: rgba(255,255,255,.56);
	font-size: 13px;
	line-height: 1.55;
	box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

@media (max-width: 1100px) {
	footer {margin-left: 10px; padding-right: 10px; width: auto; max-width: calc(100% - 28px); text-align:center;}
}
@media (max-width: 900px) {
	.grid__item-ellemet:before {
		left: -6px;
	}

	.item__body a {
		grid-template-columns: 112px minmax(0, 1fr);
	}

	.offer__media-pic {
		width: 112px;
		height: 70px;
	}

	.offer__action {
		grid-column: 1 / 3;
		width: 100%;
	}
}

@media (max-width: 560px) {
	.container__header h1 {
		font-size: 21px;
	}

	.grid__item-ellemet:before {
		left: 16px;
		top: 16px;
		transform: none;
	}

	.item__body a {
		grid-template-columns: 1fr;
	}

	.offer__media-pic,
	.offer__details,
	.offer__action {
		grid-column: auto;
	}

	.offer__media-pic {width: 100%; height: 96px; margin: 0 auto; max-width: 200px;	}
	.grid__item-ellemet:before {left:0;}
}
 
.article__details {
	display: flow-root;
	padding: clamp(20px, 3.2vw, 34px);
	background:
		linear-gradient(135deg, rgba(255,255,255,.055), transparent 38%),
		linear-gradient(180deg, #1b1b1d, #151516);
	color: rgba(255,255,255,.72);
	font-size: 16px;
	line-height: 1.72;
}

.article__details > *:first-child {
	margin-top: 0;
}

.article__details > *:last-child {
	margin-bottom: 0;
}

.article__details h1,
.article__details h2,
.article__details h3,
.article__details h4,
.article__details h5,
.article__details h6,
.article__details .h2 {
	max-width: 880px;
	margin: 34px 0 14px;
	color: var(--card-text);
	font-weight: 750;
	line-height: 1.18;
	letter-spacing: 0;
}

.article__details h1 {
	margin-top: 0;
	font-size: clamp(26px, 3.4vw, 42px);
}

.article__details h2,
.article__details .h2 {
	font-size: clamp(23px, 2.7vw, 34px);
}

.article__details h3 {
	font-size: clamp(20px, 2.2vw, 28px);
}

.article__details h4,
.article__details h5,
.article__details h6 {
	font-size: clamp(18px, 1.8vw, 22px);
}

.article__details p {
	max-width: 920px;
	margin: 14px 0;
	color: rgba(255,255,255,.72);
	font-size: 16px;
	line-height: 1.72;
}

.article__details a {
	color: var(--action-bg-hover);
	font-weight: 750;
	border-bottom: 1px solid rgba(255,139,44,.42);
	transition: color .2s ease, border-color .2s ease;
}

.article__details a:hover {
	color: #ffb04f;
	border-color: #ffb04f;
}

.article__details strong,
.article__details b {
	color: var(--card-text);
	font-weight: 850;
}

.article__details em,
.article__details i {
	color: rgba(255,255,255,.82);
	font-style: italic;
}

.article__details blockquote {
	position: relative;
	max-width: 920px;
	margin: 22px 0;
	padding: 20px 22px 20px 24px;
	border: 1px solid rgba(255,139,44,.24);
	border-left: 4px solid var(--action-bg-hover);
	border-radius: var(--radius-card);
	background:
		linear-gradient(135deg, rgba(255,139,44,.12), rgba(255,255,255,.035)),
		rgba(255,255,255,.035);
	color: var(--card-text);
}

.article__details blockquote p {
	margin: 0;
	color: rgba(255,255,255,.82);
	font-weight: 650;
}

.article__details q {
	color: var(--card-text);
	font-weight: 750;
}

.article__details ul,
.article__details ol {
	display: grid;
	gap: 9px;
	max-width: 920px;
	margin: 18px 0 22px;
	padding: 0;
	list-style: none;
	counter-reset: article-list;
}

.article__details li {
	position: relative;
	min-height: 42px;
	padding: 11px 14px 11px 48px;
	border: 1px solid rgba(255,255,255,.075);
	border-radius: 9px;
	background: rgba(255,255,255,.035);
	color: rgba(255,255,255,.74);
	line-height: 1.5;
}

.article__details ul li:before {
	content: "";
	position: absolute;
	left: 18px;
	top: 19px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--action-bg-hover);
	box-shadow: 0 0 16px rgba(255,139,44,.38);
}

.article__details ol li {
	counter-increment: article-list;
}

.article__details ol li:before {
	content: counter(article-list, decimal-leading-zero);
	position: absolute;
	left: 12px;
	top: 10px;
	min-width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	background: linear-gradient(180deg, var(--action-bg-hover), var(--action-bg));
	color: #111113;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
}

.article__details figure {
	width: min(100%, 620px);
	max-width: 100%;
	margin: 26px auto;
	padding: 10px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--radius-card);
	background: rgba(255,255,255,.035);
	text-align: center;
}

.article__details figure img,
.article__details img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.article__details figure img {
	margin: 0 auto;
}

.article__details figcaption,
.article__details .wp-caption-text {
	margin-top: 10px;
	color: rgba(255,255,255,.56);
	font-size: 13px;
	line-height: 1.45;
}

.article__details table {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 22px 0;
	overflow-x: auto;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--radius-card);
	background: #111113;
	border-collapse: separate;
	border-spacing: 0;
}

.article__details thead,
.article__details tbody,
.article__details tr {
	min-width: 760px;
}

.article__details tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.article__details th,
.article__details td {
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255,255,255,.075);
	color: rgba(255,255,255,.72);
	text-align: left;
	vertical-align: top;
	line-height: 1.45;
}

.article__details th,
.article__details tr:first-child td:has(strong) {
	background: rgba(255,255,255,.055);
	color: var(--card-text);
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
}

.article__details tr:last-child td {
	border-bottom: 0;
}

.article__details .status,
.article__details .online {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(58, 210, 91, .12);
	color: #6df289;
	font-size: 12px;
	font-weight: 850;
}

.article__details .mr {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(180deg, var(--action-bg-hover), var(--action-bg));
	color: #111113;
	font-size: 13px;
	font-weight: 850;
}

@media (max-width: 560px) {
	.offer__details {text-align:center;}
	.article__details {
		padding: 18px;
		font-size: 15px;
	}

	.article__details p,
	.article__details li {
		font-size: 15px;
	}

	.article__details h1 {
		font-size: 25px;
	}

	.article__details h2,
	.article__details .h2 {
		font-size: 22px;
	}
}

.grid__offers-list {
	margin-bottom:20px;
	counter-reset: offer-card;
}

.grid__item-ellemet {
	counter-increment: offer-card;
}

.grid__item-ellemet:before {
	content: counter(offer-card, decimal-leading-zero) ".";
}
 
