/*EXTERNAL*/

/* Magazine wrapper */
.cs-magazine-wrap {
	width: 100%;
}

.cs-section-head {
	margin-bottom: 30px;
}

.cs-section-title {
	font-size: 34px;
	line-height: 1.15;
	margin-bottom: 10px;
	color: #111111;
	font-weight: 700;
}

.cs-section-subtitle {
	font-size: 16px;
	line-height: 1.7;
	color: #6b7280;
	max-width: 780px;
	margin: 0;
}

/* Grid */
.cs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}

/* Card */
.cs-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.cs-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.cs-image-link {
	display: block;
	text-decoration: none;
}

.cs-image {
	height: 210px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
}

.cs-content {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.cs-source-label {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #2060df;
	background: rgba(32, 96, 223, 0.08);
	padding: 6px 10px;
	border-radius: 999px;
	width: fit-content;
}

.cs-post-title {
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 12px;
	font-weight: 700;
}

.cs-post-title a {
	color: #111111;
	text-decoration: none;
}

.cs-post-title a:hover {
	color: #2060df;
}

.cs-content p {
	font-size: 15px;
	color: #5f6673;
	line-height: 1.7;
	margin-bottom: 18px;
	flex-grow: 1;
}

.cs-btn {
	display: inline-block;
	align-self: flex-start;
	margin-top: auto;
	background: #2060df;
	color: #ffffff;
	padding: 12px 22px;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}

.cs-btn:hover {
	text-decoration: none;
	opacity: 0.92;
	color: #ffffff;
}

/* Variante personalizzabile */
.kaizen-btn-alt {
	background: #111111;
	color: #ffffff;
	border-radius: 999px;
	padding: 12px 24px;
}

.kaizen-btn-alt:hover {
	color: #ffffff;
	opacity: 0.9;
}

/* Responsive */
@media (max-width: 767px) {
	.cs-section-title {
		font-size: 28px;
	}

	.cs-image {
		height: 190px;
	}
}

/*INTERNAL*/