.fp-container-bbfedc04 {
    display: grid;
}

.fp-container-bbfedc04.fp-masonry-bbfedc04 {
    display: block; /* Masonry uses JS absolute positioning */
}

/* List Skin Container - Always Grid based now based on columns */

.fp-item-bbfedc04 {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border-style: solid;
	border-width: 0;
	border-color: transparent;
	overflow: hidden;
}

/* List Skin Item Override - Side by Side */
.skin-list .fp-item-bbfedc04 {
	flex-direction: row;
	align-items: center;
}

.fp-masonry-bbfedc04 .fp-item-bbfedc04 {
    float: left;
}

.fp-img-wrapper-bbfedc04 {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Skin Cards base styles */
.skin-cards .fp-item-bbfedc04 {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.skin-cards .fp-img-wrapper-bbfedc04 {
	margin-bottom: 0;
}
.skin-cards .fp-content-bbfedc04 {
	padding: 20px;
}

/* List Skin Image Width */
.skin-list .fp-img-wrapper-bbfedc04 {
	width: 32px;
	height: auto;
	flex-shrink: 0;
}

.fp-img-bbfedc04 {
    width: 100%;
    height: auto;
    object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.fp-img-placeholder-bbfedc04 {
    width: 100%;
    padding-bottom: 66.66%; /* Default aspect ratio */
    background-color: #eee;
}

/* List skin placeholder shouldn't rely on padding bottom */
.skin-list .fp-img-placeholder-bbfedc04 {
	padding-bottom: 100%;
}

/* Image Hover Effects */
.fp-hover-zoom-in-bbfedc04 .fp-img-bbfedc04 {
    transition: transform 0.3s ease;
}
.fp-item-bbfedc04:hover .fp-hover-zoom-in-bbfedc04 .fp-img-bbfedc04 {
	transform: scale(1.05);
}

.fp-content-bbfedc04 {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.fp-title-bbfedc04 {
    margin: 0;
    line-height: 1.2;
}

.fp-title-bbfedc04 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.fp-excerpt-bbfedc04 {
	line-height: 1.5;
}

.fp-read-more-bbfedc04 {
	display: inline-block;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}