/**
 * Netra Tarpanam V7 — base layout styles.
 *
 * Visual styles (colors, fonts, sizes) are driven by Elementor controls and
 * injected as selector rules. This file is layout-only — no colors, no fonts —
 * so it never overrides the per-widget design settings.
 */

.ntv7-card {
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.ntv7-img-wrap {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.ntv7-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.ntv7-img-wrap:hover img {
	transform: scale(1.03);
}

.ntv7-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 26px 14px;
}

.ntv7-title-blk {
	flex: 1 1 auto;
	min-width: 0;
}

.ntv7-title {
	margin: 0;
	line-height: 1.1;
}

.ntv7-underline {
	display: block;
	height: 2px;
	width: 60px;
	margin-top: 7px;
}

.ntv7-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	flex-shrink: 0;
	gap: 2px;
}

.ntv7-price {
	margin: 0;
	line-height: 1;
}

.ntv7-divline {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
	margin: 4px 0;
}

.ntv7-divline::before,
.ntv7-divline::after {
	content: '';
	display: block;
	height: 1px;
	width: 22px;
	opacity: 0.6;
}

.ntv7-divdot {
	font-size: 0.4rem;
	line-height: 1;
}

.ntv7-duration {
	margin: 0;
	text-align: right;
}

.ntv7-body {
	padding: 0 26px 18px;
	position: relative;
}

.ntv7-desc {
	margin: 0 0 16px;
}

.ntv7-sep {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, 0.09);
	margin: 0 0 14px;
}

.ntv7-features {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.ntv7-feat {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 var(--ntv7-basis-d, 33.3333%);
	padding: 0 14px 10px 0;
	position: relative;
}

.ntv7-features.has-dividers .ntv7-feat:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 7px;
	top: 10%;
	bottom: 10%;
	width: 1px;
}

.ntv7-feat-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ntv7-feat-icon img,
.ntv7-feat-icon svg {
	display: block;
	object-fit: contain;
}

.ntv7-feat-label {
	line-height: 1.35;
}

.ntv7-deco {
	position: absolute;
	pointer-events: none;
	display: block;
	z-index: 0;
}

.ntv7-btn-wrap {
	padding: 12px 26px 18px;
}

.ntv7-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: none;
	padding: 10px 22px;
	cursor: pointer;
	transition: background-color 0.25s, color 0.25s;
}

.ntv7-btn .ntv7-btn-chev {
	transition: transform 0.35s;
	flex-shrink: 0;
}

.ntv7-btn.open .ntv7-btn-chev {
	transform: rotate(180deg);
}

.ntv7-details-wrap {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ntv7-details-wrap.open {
	max-height: 3000px;
}

.ntv7-details-inner {
	padding: 20px 26px 26px;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.ntv7-details-inner h1,
.ntv7-details-inner h2,
.ntv7-details-inner h3,
.ntv7-details-inner h4,
.ntv7-details-inner h5 {
	margin: 0 0 8px;
}

.ntv7-details-inner p {
	margin: 0 0 12px;
	line-height: 1.8;
}

.ntv7-details-inner ul {
	padding-left: 18px;
	margin: 0 0 12px;
}

.ntv7-details-inner li {
	margin-bottom: 4px;
	line-height: 1.8;
}

@media (max-width: 768px) {
	.ntv7-header {
		padding: 16px 16px 10px;
	}
	.ntv7-body {
		padding: 0 16px 14px;
	}
	.ntv7-btn-wrap {
		padding: 8px 16px 14px;
	}
	.ntv7-details-inner {
		padding: 16px 16px 20px;
	}
	.ntv7-feat {
		flex: 0 0 var(--ntv7-basis-m, 33.3333%);
	}
}

@media (max-width: 480px) {
	.ntv7-header {
		gap: 8px;
		padding: 12px 12px 8px;
	}
}
