/* Idex Engine — section pages & single-post designs (per SDC mockups)
   Design tokens: dark #23231c / olive #5A6138 / cream #F2EFE9 / gold #C8A661 */

/* ================= generic page hero ================= */
.idexw-phero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 320px;
	background: #23231c center/cover no-repeat;
	border-radius: 0;
	overflow: hidden;
	color: #fff;
}
.idexw-phero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to left, rgba(20, 18, 12, 0.92), rgba(20, 18, 12, 0.35));
	opacity: 0.55;
}
.idexw-phero-body {
	position: relative;
	z-index: 2;
	padding: 40px clamp(20px, 6vw, 80px);
	max-width: 640px;
}
.idexw-phero h1 {
	margin: 0 0 14px;
	font-size: clamp(28px, 4vw, 44px);
	color: #fff;
}
.idexw-phero p {
	margin: 0;
	font-size: 14px;
	line-height: 2.1;
	color: rgba(242, 239, 233, 0.88);
}

/* ================= TV hero ================= */
.idexw-tvhero {
	display: grid;
	grid-template-columns: minmax(300px, 44%) 1fr;
	min-height: 520px;
	background: #16150f;
	color: #fff;
	overflow: hidden;
}
.idexw-tvhero-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(24px, 5vw, 70px);
}
.idexw-tvhero-kicker {
	color: #c8a661;
	letter-spacing: 3px;
	font-size: 13px;
	margin-bottom: 18px;
}
.idexw-tvhero h1 {
	margin: 0 0 18px;
	font-size: clamp(30px, 4.4vw, 52px);
	line-height: 1.5;
	color: #fff;
}
.idexw-tvhero-text {
	font-size: 13.5px;
	line-height: 2.2;
	color: rgba(242, 239, 233, 0.8);
	margin: 0 0 26px;
	max-width: 420px;
}
.idexw-tvhero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.idexw-tvhero-btn1 {
	background: #5a6138;
}
.idexw-tvhero-btn2 {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}
.idexw-tvhero-playdot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	margin-inline-end: 8px;
}
.idexw-tvhero-playdot.is-ghost {
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: transparent;
}
.idexw-tvhero-playdot img {
	width: 11px;
	filter: invert(1);
}
.idexw-tvhero-media {
	position: relative;
	background: #23231c center/cover no-repeat;
	min-height: 320px;
}
.idexw-tvhero-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to left, rgba(16, 14, 9, 0.05), rgba(16, 14, 9, 0.55));
}
.idexw-tvhero-featured {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	inset-inline-end: clamp(16px, 4vw, 60px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	max-width: 260px;
}
.idexw-tvhero-flabel {
	color: #c8a661;
	letter-spacing: 2px;
	font-size: 11px;
}
.idexw-tvhero-fnum {
	font-size: 44px;
	color: #b8bd8f;
	line-height: 1;
}
.idexw-tvhero-featured em {
	font-style: normal;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}
.idexw-tvhero-featured i {
	font-style: normal;
	font-size: 12px;
	color: rgba(242, 239, 233, 0.75);
}
.idexw-tvhero-featured .idexf-btn {
	margin-top: 10px;
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

/* ================= TV category cards ================= */
.idexw-tvcat {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 150px;
	border-radius: 12px;
	overflow: hidden;
	background: #23231c center/cover no-repeat;
	text-decoration: none !important;
	color: #fff;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.idexw-tvcat:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 30px rgba(10, 9, 5, 0.4);
}
.idexw-tvcat::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(14, 12, 8, 0.95), rgba(14, 12, 8, 0.2));
	opacity: 0.55;
}
.idexw-tvcat-body {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	padding: 14px;
}
.idexw-tvcat-body strong {
	font-size: 13.5px;
	line-height: 1.8;
}
.idexw-tvcat-icon {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.idexw-tvcat-icon img {
	width: 16px;
	filter: invert(1);
}

/* ================= quick access ================= */
.idexw-qa-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.idexw-qa-head h3 {
	margin: 0;
	font-size: 20px;
	color: var(--idexf-primary, #3f4224);
}
.idexw-qa-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.idexw-qa-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 190px;
	border-radius: 14px;
	overflow: hidden;
	background: #d8d2c2 center/cover no-repeat;
	text-decoration: none !important;
	color: #2b2b26;
	padding: 18px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.idexw-qa-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 34px rgba(30, 26, 14, 0.18);
}
.idexw-qa-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(242, 239, 233, 0.92) 20%, rgba(242, 239, 233, 0) 70%);
}
.idexw-qa-txt,
.idexw-qa-arrow {
	position: relative;
	z-index: 2;
}
.idexw-qa-txt strong {
	display: block;
	font-size: 17px;
	margin-bottom: 4px;
}
.idexw-qa-txt em {
	font-style: normal;
	font-size: 12px;
	color: #6c695e;
	line-height: 1.9;
}
.idexw-qa-arrow {
	margin-top: 10px;
}
.idexw-qa-arrow img {
	width: 22px;
	transform: scaleX(-1);
}

/* ================= shared pieces (singles + archives) ================= */
.idexp-cols {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 28px;
	align-items: start;
	margin-top: 18px;
}
.idexp-chip {
	display: inline-block;
	background: var(--idexf-accent, #5a6138);
	color: #fff;
	border-radius: 8px;
	padding: 5px 14px;
	font-size: 11.5px;
}
.idexp-meta-i {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	color: #6c695e;
}
.idexp-meta-i img {
	width: 15px;
	height: 15px;
	opacity: 0.75;
}
.idexp-h3 {
	font-size: 18px;
	color: var(--idexf-primary, #3f4224);
	margin: 0 0 14px;
}
.idexp-sec {
	margin: 26px 0;
}
.idexp-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 16px 0;
	padding-bottom: 18px;
	border-bottom: 1px solid #e7e3d8;
}
.idexp-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #ddd8cb;
	background: #fff;
	border-radius: 50px;
	padding: 9px 18px;
	font-size: 12.5px;
	color: #2b2b26;
	cursor: pointer;
	font-family: inherit;
	transition: 0.2s;
}
.idexp-action img {
	width: 16px;
	height: 16px;
}
.idexp-action:hover,
.idexp-action.is-active {
	border-color: var(--idexf-accent, #5a6138);
	background: #eef0e4;
}
.idexp-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.idexp-tag {
	border: 1px solid #ddd8cb;
	background: #fff;
	border-radius: 8px;
	padding: 7px 14px;
	font-size: 12px;
	color: #4b4a3f;
}
.idexp-sidebox {
	background: #fff;
	border: 1px solid #e7e3d8;
	border-radius: 14px;
	padding: 18px;
	margin-bottom: 18px;
}
.idexp-sidebox h4 {
	margin: 0 0 12px;
	font-size: 14.5px;
	color: var(--idexf-primary, #3f4224);
	padding-bottom: 10px;
	border-bottom: 2px solid #c8a661;
	display: inline-block;
}
.idexp-cats {
	list-style: none;
	margin: 0;
	padding: 0;
}
.idexp-cats li + li {
	border-top: 1px dashed #eeeadf;
}
.idexp-cats a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 4px;
	font-size: 13px;
	color: #4b4a3f;
	text-decoration: none !important;
	border-radius: 8px;
	transition: 0.15s;
}
.idexp-cats a:hover {
	color: var(--idexf-primary, #3f4224);
}
.idexp-cats a.is-active {
	background: #eef0e4;
	padding-inline: 10px;
	color: var(--idexf-primary, #3f4224);
	font-weight: 700;
}
.idexp-cats i {
	font-style: normal;
	font-size: 11px;
	color: #8b887c;
}
.idexp-whens {
	list-style: none;
	margin: 0;
	padding: 0;
}
.idexp-whens a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 2px;
	font-size: 13px;
	color: #4b4a3f;
	text-decoration: none !important;
}
.idexp-whens a i {
	width: 14px;
	height: 14px;
	border: 1.5px solid #bbb5a4;
	border-radius: 50%;
	display: inline-block;
}
.idexp-whens a.is-active i {
	border-color: var(--idexf-accent, #5a6138);
	background: radial-gradient(circle at center, var(--idexf-accent, #5a6138) 45%, transparent 50%);
}
.idexp-side-videos {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 12px;
}
.idexp-side-video {
	display: flex;
	gap: 10px;
	align-items: center;
	text-decoration: none !important;
}
.idexp-side-vimg {
	position: relative;
	flex: 0 0 74px;
	width: 74px;
	height: 58px;
	border-radius: 10px;
	overflow: hidden;
	background: #eeeadf;
}
.idexp-side-vimg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.idexp-side-vimg i {
	position: absolute;
	bottom: 4px;
	inset-inline-start: 4px;
	background: rgba(12, 12, 6, 0.75);
	color: #fff;
	font-size: 9.5px;
	font-style: normal;
	border-radius: 5px;
	padding: 1px 5px;
}
.idexp-side-vtxt {
	min-width: 0;
}
.idexp-side-vtxt strong {
	display: block;
	font-size: 12.5px;
	color: #2b2b26;
	line-height: 1.8;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.idexp-side-vtxt em {
	font-style: normal;
	font-size: 11px;
	color: #8b887c;
}
.idexp-newsletter {
	background: var(--idexf-primary, #3f4224);
	border-radius: 14px;
	padding: 22px;
	color: #f2efe9;
	text-align: center;
	margin-bottom: 18px;
}
.idexp-newsletter-icon {
	display: inline-flex;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.idexp-newsletter-icon img {
	width: 18px;
	filter: invert(1);
}
.idexp-newsletter h4 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 15px;
}
.idexp-newsletter p {
	margin: 0 0 14px;
	font-size: 12px;
	line-height: 2;
	color: rgba(242, 239, 233, 0.8);
}
.idexp-newsletter input[type='email'] {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50px;
	padding: 10px 16px;
	color: #fff;
	font-family: inherit;
	font-size: 12.5px;
	margin-bottom: 10px;
	outline: none;
	box-sizing: border-box;
}
.idexp-newsletter input[type='email']::placeholder {
	color: rgba(242, 239, 233, 0.55);
}
.idexp-newsletter .idexf-btn {
	background: #c8a661;
	color: #23231c;
}
.idexp-newsletter-ok {
	font-size: 12.5px;
	color: #cfe3b0;
}

/* ================= video single ================= */
.idexp-player {
	border-radius: 16px;
	overflow: hidden;
	background: #16150f;
}
.idexp-player video,
.idexp-player img {
	width: 100%;
	display: block;
}
.idexp-player .idexp-embed {
	position: relative;
	min-height: 320px;
}
.idexp-vtitle {
	margin: 20px 0 6px;
	font-size: clamp(20px, 3vw, 28px);
	color: var(--idexf-primary, #3f4224);
}
.idexp-vsub {
	margin: 0 0 14px;
	font-size: 13.5px;
	color: #6c695e;
}
.idexp-vmeta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.idexp-guest {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #efece3;
	border-radius: 14px;
	padding: 18px 20px;
	margin: 22px 0;
}
.idexp-guest-photo {
	flex: 0 0 74px;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	overflow: hidden;
}
.idexp-guest-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.idexp-guest-txt h4 {
	margin: 0 0 4px;
	font-size: 12px;
	color: #8b887c;
	font-weight: 500;
}
.idexp-guest-txt strong {
	display: block;
	font-size: 15.5px;
	color: var(--idexf-primary, #3f4224);
	margin-bottom: 4px;
}
.idexp-guest-txt p {
	margin: 0;
	font-size: 12.5px;
	line-height: 2;
	color: #6c695e;
}
.idexp-qa {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.idexp-qa-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4px;
	border: 1px solid #e7e3d8;
	background: #fff;
	border-radius: 14px;
	padding: 16px;
	text-decoration: none !important;
	transition: 0.2s;
}
.idexp-qa-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 26px rgba(30, 26, 14, 0.12);
}
.idexp-qa-card strong {
	font-size: 14px;
	color: #2b2b26;
}
.idexp-qa-card em {
	font-style: normal;
	font-size: 11.5px;
	color: #8b887c;
	line-height: 1.9;
}
.idexp-qa-card i {
	margin-top: 6px;
}
.idexp-qa-card i img {
	width: 18px;
	transform: scaleX(-1);
	opacity: 0.7;
}
.idexp-vgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.idexp-vcard {
	text-decoration: none !important;
	display: flex;
	flex-direction: column;
	gap: 4px;
	transition: transform 0.25s ease;
}
.idexp-vcard:hover {
	transform: translateY(-4px);
}
.idexp-vcard-img {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 16/10;
	background: #eeeadf;
	margin-bottom: 6px;
}
.idexp-vcard-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.idexp-vcard-img i {
	position: absolute;
	top: 8px;
	inset-inline-start: 8px;
	background: rgba(12, 12, 6, 0.75);
	color: #fff;
	font-style: normal;
	font-size: 10px;
	border-radius: 6px;
	padding: 2px 7px;
}
.idexp-vcard strong {
	font-size: 13px;
	color: #2b2b26;
	line-height: 1.8;
}
.idexp-vcard em {
	font-style: normal;
	font-size: 11px;
	color: #8b887c;
}

/* ================= articles archive ================= */
.idexp-arch {
	display: grid;
	grid-template-columns: 250px 1fr 250px;
	gap: 24px;
	align-items: start;
	padding: 28px 0;
}
.idexp-toolbar {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}
.idexp-toolbar-count {
	font-size: 13px;
	color: #6c695e;
	margin-inline-end: auto;
}
.idexp-toolbar-sort select {
	border: 1px solid #ddd8cb;
	border-radius: 50px;
	padding: 8px 16px;
	font-size: 12.5px;
	background: #fff;
	font-family: inherit;
}
.idexp-viewtoggle button {
	border: 1px solid #ddd8cb;
	background: #fff;
	border-radius: 8px;
	width: 34px;
	height: 34px;
	cursor: pointer;
	color: #8b887c;
}
.idexp-viewtoggle button.is-active {
	background: var(--idexf-primary, #3f4224);
	color: #fff;
	border-color: transparent;
}
.idexp-arch-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.idexp-arch-main.is-list .idexp-arch-grid {
	grid-template-columns: 1fr;
}
.idexp-acard {
	position: relative;
	background: #fff;
	border: 1px solid #e7e3d8;
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.idexp-acard:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 34px rgba(30, 26, 14, 0.12);
}
.idexp-acard-img {
	display: block;
	aspect-ratio: 16/11;
	background: #eeeadf;
}
.idexp-acard-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.idexp-acard-save {
	position: absolute;
	top: 10px;
	inset-inline-start: 10px;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	border: 0;
	background: rgba(255, 255, 255, 0.9);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.idexp-acard-save img {
	width: 15px;
}
.idexp-acard-save.is-active {
	background: var(--idexf-accent, #5a6138);
}
.idexp-acard-save.is-active img {
	filter: invert(1);
}
.idexp-acard-body {
	padding: 14px 16px 16px;
}
.idexp-acard-cat {
	display: block;
	font-size: 11px;
	color: var(--idexf-accent, #5a6138);
	margin-bottom: 6px;
}
.idexp-acard h3 {
	margin: 0 0 8px;
	font-size: 14.5px;
	line-height: 1.9;
}
.idexp-acard h3 a {
	color: #2b2b26;
	text-decoration: none !important;
}
.idexp-acard-author {
	display: block;
	font-size: 12px;
	color: #6c695e;
	margin-bottom: 8px;
}
.idexp-acard-meta {
	display: flex;
	gap: 12px;
	border-top: 1px dashed #eeeadf;
	padding-top: 9px;
}
.idexp-acard-meta em {
	font-style: normal;
	font-size: 11px;
	color: #8b887c;
}
.idexp-paging {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 26px;
}
.idexp-paging a,
.idexp-paging span {
	min-width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid #ddd8cb;
	background: #fff;
	color: #4b4a3f;
	font-size: 13px;
	text-decoration: none !important;
}
.idexp-paging .is-current {
	background: var(--idexf-primary, #3f4224);
	color: #fff;
	border-color: transparent;
}
.idexp-quick {
	list-style: none;
	margin: 0;
	padding: 0;
}
.idexp-quick li + li {
	border-top: 1px dashed #eeeadf;
}
.idexp-quick a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 2px;
	font-size: 13px;
	color: #4b4a3f;
	text-decoration: none !important;
}
.idexp-quick img {
	width: 16px;
	transform: scaleX(-1);
	opacity: 0.6;
}

/* ================= article single ================= */
.idexp-ahero {
	position: relative;
	background: #23231c center/cover no-repeat;
	color: #fff;
	padding: 46px 0 40px;
}
.idexp-ahero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to left, rgba(18, 16, 10, 0.94), rgba(18, 16, 10, 0.45));
}
.idexp-ahero .idexf-container {
	position: relative;
	z-index: 2;
}
.idexp-ahero-crumb {
	color: rgba(242, 239, 233, 0.7);
	margin-bottom: 18px;
}
.idexp-ahero-crumb a {
	color: rgba(242, 239, 233, 0.7);
}
.idexp-ahero .idexp-chip {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.25);
	margin-bottom: 14px;
}
.idexp-ahero h1 {
	margin: 10px 0 14px;
	max-width: 560px;
	font-size: clamp(24px, 3.6vw, 38px);
	line-height: 1.6;
	color: #fff;
}
.idexp-ahero-lead {
	max-width: 540px;
	margin: 0 0 22px;
	font-size: 13.5px;
	line-height: 2.2;
	color: rgba(242, 239, 233, 0.85);
}
.idexp-ahero-meta {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}
.idexp-ahero-meta .idexp-meta-i {
	color: rgba(242, 239, 233, 0.8);
}
.idexp-ahero-meta .idexp-meta-i img {
	filter: invert(1);
}
.idexp-ahero-author {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.idexp-ahero-author img {
	border-radius: 50%;
}
.idexp-ahero-author strong {
	display: block;
	font-size: 13px;
	color: #fff;
}
.idexp-ahero-author em {
	font-style: normal;
	font-size: 11px;
	color: rgba(242, 239, 233, 0.7);
}
.idexp-article-cols {
	display: grid;
	grid-template-columns: 240px 1fr 280px;
	gap: 26px;
	align-items: start;
	padding: 30px 0 10px;
}
.idexp-article-content {
	background: #fff;
	border: 1px solid #e7e3d8;
	border-radius: 16px;
	padding: clamp(18px, 3vw, 34px);
}
.idexp-article-content blockquote {
	background: #efece3;
	border-inline-start: 3px solid #c8a661;
	border-radius: 12px;
	margin: 22px 0;
	padding: 18px 22px;
	font-size: 13.5px;
	line-height: 2.2;
	color: #4b4a3f;
}
.idexp-refcta {
	position: relative;
	background: var(--idexf-primary, #3f4224);
	border-radius: 14px;
	padding: 22px;
	color: #f2efe9;
}
.idexp-refcta h4 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 15px;
}
.idexp-refcta p {
	margin: 0 0 16px;
	font-size: 12px;
	line-height: 2;
	color: rgba(242, 239, 233, 0.8);
}
.idexp-article-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	border-top: 1px solid #e7e3d8;
	margin-top: 26px;
	padding-top: 22px;
}
.idexp-article-bar .idexp-h3 {
	margin: 0;
}
.idexp-article-bar-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.idexp-suggest-grid {
	grid-template-columns: repeat(4, 1fr);
	margin-top: 18px;
}
.idexp-event-cols {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 26px;
	align-items: start;
	padding: 30px 0 10px;
}

/* ================= design source single (per «داخل متریال های شو کیس») ================= */
.idexp-mat-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 26px;
	align-items: start;
}
.idexp-mat-brandbox {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
}
.idexp-mat-blogo {
	display: block;
	max-width: 170px;
	margin: 6px auto 4px;
}
.idexp-mat-blogo img {
	width: 100%;
	object-fit: contain;
	max-height: 90px;
}
.idexp-mat-bname {
	font-size: 16px;
	color: var(--idexf-primary, #3f4224);
}
.idexp-mat-bslogan {
	font-style: normal;
	font-size: 11.5px;
	color: #8b887c;
}
.idexp-mat-bsite {
	font-size: 12px;
	color: #4b4a3f;
	text-decoration: none !important;
	margin-bottom: 8px;
}
.idexp-mat-brandbox .idexf-btn {
	margin-top: 4px;
}
.idexp-mat-metalist {
	margin: 0 0 14px;
}
.idexp-mat-share {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-top: 1px dashed #eae6da;
	padding-top: 12px;
	font-size: 12.5px;
	color: #6c695e;
}
.idexp-mat-share-btns {
	display: inline-flex;
	gap: 6px;
}
.idexp-mat-share .idexp-action {
	padding: 8px;
	border-radius: 10px;
}
.idexp-mat-head {
	display: grid;
	grid-template-columns: minmax(280px, 44%) 1fr;
	gap: 24px;
	align-items: start;
}
.idexp-mat-titles h1 {
	margin: 0 0 6px;
	font-size: clamp(22px, 3vw, 32px);
	color: #23231c;
}
.idexp-mat-brandlink {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 1px;
	color: var(--idexf-accent, #5a6138);
	text-decoration: none !important;
	margin-bottom: 12px;
}
.idexp-mat-fa {
	margin: 0 0 10px;
	font-size: 17px;
	color: var(--idexf-primary, #3f4224);
}
.idexp-mat-sub {
	margin: 0 0 16px;
	font-size: 13px;
	line-height: 2.2;
	color: #6c695e;
}
.idexp-mat-feats {
	margin-top: 6px;
}
.idexp-mat-media {
	position: relative;
}
.idexp-mat-mainimg {
	position: relative;
	display: block;
	border-radius: 14px;
	overflow: hidden;
	background: #eee9dd;
}
.idexp-mat-mainimg img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	display: block;
}
.idexp-mat-counter {
	position: absolute;
	top: 10px;
	inset-inline-end: 10px;
	background: rgba(20, 18, 12, 0.75);
	color: #fff;
	border-radius: 8px;
	padding: 3px 10px;
	font-size: 11px;
	font-style: normal;
}
.idexp-mat-thumbs {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	margin: 14px 0 22px;
}
.idexp-mat-thumb {
	position: relative;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	padding: 0;
	background: #eee9dd;
	cursor: pointer;
	aspect-ratio: 16/10;
}
.idexp-mat-thumb.is-active {
	border-color: var(--idexf-accent, #5a6138);
}
.idexp-mat-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.idexp-mat-more {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 18, 12, 0.65);
	color: #fff;
	font-size: 15px;
}
.idexp-mat-cols {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 20px;
	align-items: start;
	margin-top: 8px;
}
.idexp-mat-desc {
	background: #fff;
	border: 1px solid #e7e3d8;
	border-radius: 14px;
	padding: 22px;
}
.idexp-mat-bullets {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.idexp-mat-bullets li {
	position: relative;
	padding-inline-start: 16px;
	font-size: 12.5px;
	color: #4b4a3f;
}
.idexp-mat-bullets li::before {
	content: '•';
	position: absolute;
	inset-inline-start: 0;
	color: var(--idexf-accent, #5a6138);
}
.idexp-mat-specs {
	background: var(--idexf-primary, #3f4224);
	border-radius: 14px;
	padding: 22px;
	color: #f2efe9;
}
.idexp-mat-specs h3 {
	margin: 0 0 14px;
	font-size: 15px;
	color: #fff;
}
.idexp-mat-specs .idexf-specs li {
	border-color: rgba(255, 255, 255, 0.14);
	color: #f2efe9;
}
.idexp-mat-specs .idexf-specs span {
	color: rgba(242, 239, 233, 0.65);
}
.idexp-mat-specs .idexf-specs strong {
	color: #fff;
}

/* ================= responsive ================= */
@media (max-width: 1100px) {
	.idexp-arch {
		grid-template-columns: 230px 1fr;
	}
	.idexp-arch-rail {
		display: none;
	}
	.idexp-article-cols {
		grid-template-columns: 1fr 260px;
	}
	.idexp-article-cols .idexp-arch-side {
		display: none;
	}
	.idexp-suggest-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.idexp-vgrid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 1024px) {
	.idexp-mat-layout {
		grid-template-columns: 1fr;
	}
	.idexp-mat-head {
		grid-template-columns: 1fr;
	}
	.idexp-mat-cols {
		grid-template-columns: 1fr;
	}
	.idexp-mat-thumbs {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 860px) {
	.idexw-tvhero {
		grid-template-columns: 1fr;
	}
	.idexp-cols,
	.idexp-event-cols,
	.idexp-article-cols {
		grid-template-columns: 1fr;
	}
	.idexp-arch {
		grid-template-columns: 1fr;
	}
	.idexp-arch-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.idexw-qa-grid {
		grid-template-columns: 1fr;
	}
	.idexp-qa {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 560px) {
	.idexp-arch-grid,
	.idexp-vgrid,
	.idexp-suggest-grid {
		grid-template-columns: 1fr;
	}
	.idexp-mat-mainimg img {
		height: 220px;
	}
	.idexp-mat-thumbs {
		grid-template-columns: repeat(3, 1fr);
	}
	.idexp-mat-head {
		gap: 16px;
	}
	.idexw-tvhero-featured {
		position: static;
		transform: none;
		max-width: none;
		padding: 20px;
	}
	.idexw-qa-grid {
		grid-template-columns: 1fr;
	}
	.idexp-toolbar {
		flex-wrap: wrap;
	}
}
