.pc-5789-header {
	margin-bottom: 30px;
	text-align: left;
}
.pc-5789-subheading {
	color: #61CE70; /* Using your accent color */
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
}
.pc-5789-heading {
	margin-top: 0;
	font-size: 32px;
	color: #fff; /* Dark theme text */
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
}
.pc-5789-wrapper {
	padding-bottom: 40px; /* space for pagination */
}
.pc-5789-slide {
	background: #2a2a2a; /* Darker background for dark theme */
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.4);
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	overflow: hidden; /* Important for consistent height */
	height: 450px; /* Default height, can be overridden */
	position: relative;
}

/* Custom Drag Cursor */
.swiper-wrapper:active {
	cursor: grabbing;
}
.pc-5789-slide:hover {
	/* SVG for left/right arrow circle */
	cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="18" fill="rgba(255,255,255,0.9)"/><path d="M12 20l5-5v3h6v-3l5 5-5 5v-3h-6v3z" fill="%23333"/></svg>') 20 20, auto;
}


/* --- STANDARD STYLE --- */
.pc-5789-is-portfolio-no a.pc-5789-slide:hover {
	transform: translateY(-5px);
	transition: transform 0.3s ease;
	box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}
.pc-5789-image {
	flex-shrink: 0;
}
.pc-5789-image img {
	width: 100%;
	height: 220px; /* Default height */
	display: block;
	object-fit: cover !important;
	object-position: center !important;
}

/* Image Position Modifiers */
.pc-5789-image-pos-left .pc-5789-slide {
	flex-direction: row;
}
.pc-5789-image-pos-left .pc-5789-image img {
	height: 100%;
}
.pc-5789-image-pos-right .pc-5789-slide {
	flex-direction: row-reverse;
}
.pc-5789-image-pos-right .pc-5789-image img {
	height: 100%;
}

.pc-5789-content-wrapper {
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	flex-grow: 1; /* Fills remaining space */
}

.pc-5789-title {
	margin: 0;
	font-size: 22px;
	color: #fff;
	line-height: 1.3;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
}
.pc-5789-title a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}
.pc-5789-title a:hover {
	color: #61CE70;
}
.pc-5789-excerpt {
	color: #bbb;
	font-size: 15px;
	line-height: 1.6;
	font-family: 'Roboto', sans-serif;
}


/* --- PORTFOLIO STYLE (Nils Theme mimic) --- */
.pc-5789-portfolio-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
}

.pc-5789-portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: flex-end;
	padding: 30px;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.pc-5789-slide:hover .pc-5789-portfolio-bg {
	transform: scale(1.05);
}

.pc-5789-slide:hover .pc-5789-portfolio-overlay {
	opacity: 1;
}

.pc-5789-portfolio-content {
	transform: translateY(20px);
	transition: transform 0.4s ease;
}

.pc-5789-slide:hover .pc-5789-portfolio-content {
	transform: translateY(0);
}

.pc-5789-portfolio-cat {
	display: inline-block;
	color: #61CE70;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
	font-weight: 500;
}

.pc-5789-portfolio-title {
	margin: 0;
	font-size: 26px;
	color: #ffffff;
	font-weight: 600;
	line-height: 1.2;
}
.pc-5789-portfolio-title a {
	color: #fff;
	text-decoration: none;
}


/* Pagination */
.swiper-pagination-bullet {
	background: #fff;
	opacity: 0.5;
}
.swiper-pagination-bullet-active {
	background: #61CE70;
	opacity: 1;
}

.pc-5789-editor-preview {
	padding: 20px;
	background: #333;
	color: #fff;
	text-align: center;
	border: 1px dashed #666;
}