/* extra.css — дополнительные стили темы NEFT Casino */

/* === neft-page-wrap === */
.neft-page-wrap {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: calc(100vh - var(--header-height));
}

/* === КАРТОЧКИ ЗАПИСЕЙ === */
.neft-post-card {
	display: flex;
	gap: 16px;
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 16px;
	transition: border-color .15s;
}
.neft-post-card:hover {
	border-color: rgba(255,255,255,.2);
}
.neft-post-card__thumb {
	flex-shrink: 0;
	width: 180px;
	display: block;
	overflow: hidden;
}
.neft-post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}
.neft-post-card__body {
	flex: 1;
	padding: 16px 20px 16px 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.neft-post-card__title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0;
}
.neft-post-card__title a {
	color: #fff !important;
}
.neft-post-card__title a:hover {
	color: var(--color-link) !important;
}
.neft-post-card__excerpt {
	color: var(--color-text);
	font-size: .9375rem;
	line-height: 1.6;
}
.neft-post-card__meta {
	color: var(--color-text-muted);
	font-size: .8125rem;
}

/* === POST CONTENT === */
.neft-post-thumb {
	margin-bottom: 20px;
}
.neft-post-thumb img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
}
.neft-post-content {
	font-size: 1rem;
	line-height: 1.7;
}
.neft-post-meta {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--color-border);
	color: var(--color-text-muted);
	font-size: .875rem;
}

/* === ВИДЖЕТЫ === */
.neft-widget {
	margin-bottom: 24px;
}
.neft-widget__title {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--color-border);
}

/* === ХЛЕБНЫЕ КРОШКИ === */
.neft-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
	font-size: .875rem;
	color: var(--color-text-muted);
}
.neft-breadcrumbs a {
	color: var(--color-text-muted) !important;
}
.neft-breadcrumbs a:hover {
	color: var(--color-link) !important;
}
.neft-breadcrumbs__sep {
	opacity: .4;
}

/* === ПОИСК === */
.search-form {
	display: flex;
	gap: 8px;
}
.search-form label { flex: 1; }
.search-form input[type="search"] {
	width: 100%;
}

/* === 404 === */
.neft-404 {
	text-align: center;
	padding: 60px 24px;
}
.neft-404 h1 {
	font-size: 6rem;
	font-weight: 900;
	color: var(--color-accent);
	line-height: 1;
}
.neft-404 p { color: var(--color-text); }

/* === АДАПТИВ КАРТОЧЕК === */
@media (max-width: 508px) {
	.neft-post-card {
		flex-direction: column;
	}
	.neft-post-card__thumb {
		width: 100%;
		height: 180px;
	}
	.neft-post-card__body {
		padding: 12px 16px 16px;
	}
}
