/* =========================
   POSTS – CASE STUDIES
========================= */


/* TABS */
.learning-tabs {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.learning-tab {
	padding: 10px 22px;
	background: transparent;
	border: 1px solid #444;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.learning-tab.active,
.learning-tab:hover {
	background: #fff;
	color: #000;
}

/* GRID */
.post-case-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem 2rem;
}

/* IMAGE */
.post-case-thumb img {
	width: 100%;
	height: 47rem;
	object-fit: cover;
	display: block;
}

/* TITLE */
.post-case-title {
	margin: 2.4rem 0 0;
	color: #FFF;
	font-family: Orbitron;
	font-size: 3.2rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

/* EXCERPT */
.post-case-excerpt {
	color: #DBDBDB;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
	padding: 1.9rem 0;
}

/* BUTTON */
.case-study-btn {
	display: inline-block;
	padding: 1.6rem 3.2rem;
	border: 1px solid #1EAE9E;
	color: #fff;
	text-decoration: none;
	font-size: 1.8rem;
	font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6; 
	transition: all 0.3s ease;
	border-radius: 5rem;
}

.case-study-btn:hover {
	background: #fff;
	color: #000;
}
.case-study-btn:hover svg {
	filter: invert(1);
}
/* LOAD MORE */
.learning-load-more[data-type="post"] {
	margin: 6rem auto 0;
	display: block;
	padding: 1.6rem;
	background: #1F1F1F !important;
	color: #fff !important;
	border: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	border-radius: 0 !important;
	font-family: Orbitron;
	font-size: 1.8rem !important;
}



/* RESPONSIVE */
@media (max-width: 768px) {
	.post-case-grid {
		grid-template-columns: 1fr;
	}
}