/* ============================================================
   Nefesat Eğitim Kartı
   ============================================================ */

/* --- Wrapper --- */
.nefesat-es {
	position: relative;
	padding: 60px 0;
	--nefesat-es-accent: #96ae6e;
}

/* --- Section Başlık --- */
.nefesat-es .nefesat-es__section-title,
.nefesat-es h2.nefesat-es__section-title {
	font-size: clamp(22px, 2.5vw, 32px) !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	text-align: center;
	margin: 0 0 36px !important;
	color: #1a1a2e;
}

/* --- Kart Grid --- */
.nefesat-es__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 680px), 1fr));
	gap: 28px;
	max-width: 1200px;
	margin: 0 auto;
}

/* --- Kart --- */
.nefesat-es__card {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	background: #fff;
	border: 0.5px solid #e0e0e0;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* --- Top Bar --- */
.nefesat-es__topbar {
	padding: 10px 28px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--nefesat-es-accent, #96ae6e);
}
.nefesat-es__badge {
	background: rgba(255,255,255,.22);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	padding: 3px 12px;
	border-radius: 20px;
	letter-spacing: .04em;
	white-space: nowrap;
}
.nefesat-es__topbar-title {
	color: #fff;
	font-size: 13px;
	opacity: .85;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* --- Body (iki panel) --- */
.nefesat-es__body {
	display: flex;
	flex: 1;
}

/* --- Sol Panel --- */
.nefesat-es__left {
	width: 42%;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-right: .5px solid #eee;
}
.nefesat-es__label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: var(--nefesat-es-accent, #96ae6e);
}
.nefesat-es .nefesat-es__title,
.nefesat-es h3.nefesat-es__title {
	font-size: 24px !important;
	font-weight: 500 !important;
	line-height: 1.25 !important;
	margin: 0 0 8px !important;
	color: #1a1a2e !important;
}
.nefesat-es__desc {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
}
.nefesat-es__left-list {
	margin-top: 14px;
	font-size: 14px;
	color: #444;
	line-height: 1.6;
}
.nefesat-es__left-list ul,
.nefesat-es__left-list ol {
	margin: 0;
	padding-left: 1.2em;
}
.nefesat-es__left-list li {
	margin-bottom: 6px;
}
.nefesat-es__left-list li::marker {
	color: var(--nefesat-es-accent, #96ae6e);
}
.nefesat-es__left-list p {
	margin: 0 0 8px;
}
.nefesat-es__left-list p:last-child {
	margin-bottom: 0;
}
.nefesat-es__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	flex-shrink: 0;
	background: color-mix(in srgb, var(--nefesat-es-accent, #96ae6e) 10%, transparent);
	border: 2px solid var(--nefesat-es-accent, #96ae6e);
}

/* --- Sağ Panel --- */
.nefesat-es__right {
	flex: 1;
	padding: 24px 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* --- Bilgi Bloğu --- */
.nefesat-es__info {
	border-left: 3px solid var(--nefesat-es-accent, #96ae6e);
	border-radius: 0 8px 8px 0;
	padding: 12px 16px;
	background: color-mix(in srgb, var(--nefesat-es-accent, #96ae6e) 10%, transparent);
}
.nefesat-es__info-title {
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 4px;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--nefesat-es-accent, #96ae6e);
}
.nefesat-es__info-text {
	font-size: 13px;
	color: #555;
	line-height: 1.55;
}
.nefesat-es__info-text strong {
	font-weight: 500;
}

/* --- Konu Listesi --- */
.nefesat-es__topics-label {
	font-size: 12px;
	font-weight: 500;
	color: #777;
	margin-bottom: 8px;
	letter-spacing: .05em;
	text-transform: uppercase;
}
.nefesat-es__topic {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 0;
	border-bottom: .5px solid #eee;
}
.nefesat-es__topic:last-child {
	border-bottom: none;
}
.nefesat-es__topic-num {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: var(--nefesat-es-accent, #96ae6e);
}
.nefesat-es__topic-text {
	font-size: 13px;
	color: #1a1a2e;
}
.nefesat-es__topic-dots {
	flex: 1;
	height: 1px;
	border-top: 1.5px dashed var(--nefesat-es-accent, #96ae6e);
	opacity: .4;
}
.nefesat-es__topic--faded {
	opacity: .4;
}

/* --- Aksiyon Butonları --- */
.nefesat-es__actions {
	display: flex;
	gap: 10px;
	padding: 0 24px 20px;
	margin-top: auto;
}
.nefesat-es__btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 16px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border: 1.5px solid;
	cursor: pointer;
	transition: background .2s, border-color .2s, color .2s;
	text-align: center;
	line-height: 1.3;
}
.nefesat-es__btn--detail {
	background: transparent;
	color: #1a1a2e;
	border-color: #d0d0d0;
}
.nefesat-es__btn--detail:hover {
	background: #f5f5f5;
	border-color: #b0b0b0;
}
.nefesat-es__btn--buy {
	color: #fff;
	border-color: transparent;
	background: var(--nefesat-es-accent, #96ae6e);
}
.nefesat-es__btn--buy:hover {
	opacity: .9;
}

/* --- Responsive --- */
@media (max-width: 767px) {
	.nefesat-es__grid {
		gap: 20px;
	}
	.nefesat-es__body {
		flex-direction: column;
	}
	.nefesat-es__left {
		width: 100%;
		border-right: none;
		border-bottom: .5px solid #eee;
		padding: 20px 20px 16px;
	}
	.nefesat-es__right {
		padding: 16px 20px;
	}
	.nefesat-es__topbar {
		padding: 10px 20px;
	}
	.nefesat-es__actions {
		padding: 0 20px 16px;
		flex-direction: column;
	}
	.nefesat-es .nefesat-es__title,
	.nefesat-es h3.nefesat-es__title {
		font-size: 20px !important;
	}
	.nefesat-es__icon {
		display: none;
	}
}
