.ne-accordion-wrapper {
	display: flex;
	width: 100%;
	height: 400px;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ne-acc-panel {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100%;
	flex: 1;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	cursor: pointer;
	overflow: hidden;
	border-right: 2px solid rgba(255,255,255,0.2);
}

.ne-acc-panel:last-child {
	border-right: none;
}

.ne-acc-panel::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
	opacity: 0.5;
	transition: opacity 0.6s ease;
}

.ne-acc-panel.active {
	flex: 5;
}

.ne-acc-panel.active::after {
	opacity: 1;
}

.ne-acc-title-vertical {
	position: absolute;
	bottom: 30px;
	left: 20px;
	color: #fff;
	font-weight: 600;
	font-size: 1.2rem;
	white-space: nowrap;
	transform-origin: left bottom;
	transform: rotate(-90deg) translate(-20px, 0);
	opacity: 1;
	transition: all 0.4s ease;
	z-index: 2;
}

.ne-acc-panel.active .ne-acc-title-vertical {
	opacity: 0;
	transform: rotate(-90deg) translate(-50px, 0);
	pointer-events: none;
}

.ne-acc-content {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	color: #fff;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease 0.1s;
	z-index: 3;
	pointer-events: none;
}

.ne-acc-panel.active .ne-acc-content {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.ne-acc-date {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	color: #f1f1f1;
}

.ne-acc-content h3 {
	margin: 0 0 15px 0;
	font-size: 1.8rem;
	line-height: 1.2;
}

.ne-acc-content h3 a {
	color: #fff;
	text-decoration: none;
}

.ne-acc-content h3 a:hover {
	text-decoration: underline;
}

.ne-acc-btn {
	display: inline-block;
	background: #e53935;
	color: #fff;
	padding: 8px 18px;
	border-radius: 4px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s ease;
}

.ne-acc-btn:hover {
	background: #c62828;
}

@media (max-width: 767px) {
	.ne-accordion-wrapper {
		flex-direction: column;
		height: 600px;
	}
	.ne-acc-panel {
		border-right: none;
		border-bottom: 2px solid rgba(255,255,255,0.2);
	}
	.ne-acc-title-vertical {
		transform: none;
		bottom: auto;
		top: 50%;
		left: 20px;
		transform: translateY(-50%);
	}
	.ne-acc-panel.active .ne-acc-title-vertical {
		transform: translateY(-50%) translateX(-20px);
	}
	.ne-acc-content {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}
	.ne-acc-content h3 {
		font-size: 1.4rem;
	}
}
