.angie-post-banner-111cde03 {
	display: flex;
	width: 100%;
	height: 400px;
	gap: 0;
	overflow: hidden;
}

.angie-post-banner-111cde03 .swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.angie-post-banner-item-111cde03 {
	flex: 1 1 33.333%;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: flex 0.5s ease;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	text-decoration: none !important;
}

/* Ensure flex expansion works correctly when container is hovered */
.angie-post-banner-111cde03:hover .angie-post-banner-item-111cde03 {
	flex: 1 1 25%;
}

.angie-post-banner-111cde03 .angie-post-banner-item-111cde03:hover {
	flex: 1 1 50%;
}

.angie-pb-overlay-111cde03 {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
	z-index: 1;
	transition: background 0.3s;
}

.angie-post-banner-item-111cde03:hover .angie-pb-overlay-111cde03 {
	background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 100%);
}

.angie-pb-content-111cde03 {
	position: relative;
	z-index: 2;
	padding: 30px;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.angie-pb-category-111cde03 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	color: #ffaa00;
	display: inline-block;
	font-weight: 600;
}

.angie-pb-title-111cde03 {
	font-size: 24px;
	margin: 0;
	color: #ffffff;
	line-height: 1.2;
	font-weight: bold;
}

.angie-pb-excerpt-wrap-111cde03 {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.5s ease;
}

.angie-post-banner-item-111cde03:hover .angie-pb-excerpt-wrap-111cde03 {
	max-height: 200px;
	opacity: 1;
	margin-top: 15px;
}

.angie-pb-excerpt-111cde03 {
	font-size: 14px;
	line-height: 1.5;
	color: #eeeeee;
	margin: 0;
}

/* Hide controls on desktop */
.swiper-button-prev, .swiper-button-next {
    display: none !important;
}

/* Tablet / Mobile Swiper Styles */
@media (max-width: 1024px) {
	.angie-post-banner-111cde03 {
		display: block; /* Swiper needs block, not flex */
        position: relative;
	}
    
    .angie-post-banner-111cde03 .swiper-wrapper {
        display: flex;
        flex-direction: row;
        height: 100%;
    }
    
    .angie-post-banner-111cde03 .swiper-slide {
        flex: 0 0 auto !important; /* Swiper handles width */
        width: 100%; /* Default width before Swiper initializes */
        height: 100%;
    }

	.angie-post-banner-item-111cde03:hover .angie-pb-excerpt-wrap-111cde03 {
        /* Always show excerpt on mobile/tablet or adjust hover if touch */
		max-height: 200px;
		opacity: 1;
		margin-top: 15px;
	}
    
    /* Disable flex changes on hover for touch devices / smaller screens */
    .angie-post-banner-111cde03:hover .angie-post-banner-item-111cde03,
    .angie-post-banner-111cde03 .angie-post-banner-item-111cde03:hover {
        flex: 0 0 auto !important;
    }

    /* Show controls on tablet */
    .swiper-button-next, .swiper-button-prev {
        display: flex !important;
        color: var(--swiper-nav-color, #fff);
    }
    
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: var(--swiper-nav-size, 44px) !important;
    }
}