/* Layouts */
.abp-grid-container {
	display: grid;
	gap: 20px;
}

.abp-list-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.abp-list-container .abp-post-card .abp-card-link {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.abp-list-container .abp-image-wrapper {
	width: 40%;
	flex-shrink: 0;
}

.abp-list-container .abp-post-content {
	width: 60%;
	padding: 20px;
}

/* Masonry Fallback CSS */
.abp-masonry-container {
	column-count: 3;
	column-gap: 20px;
}
.abp-masonry-container .abp-post-card {
	break-inside: avoid;
	margin-bottom: 20px;
	display: block;
}

/* Base Card Styles */
.abp-post-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
}

.abp-post-card:hover {
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.abp-card-link {
	text-decoration: none !important;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.abp-image-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.abp-post-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.abp-post-card:hover .abp-post-image {
	transform: scale(1.05);
}

/* Shine Effect */
.abp-shine-effect {
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-20deg);
	z-index: 2;
	pointer-events: none;
	animation: abp-shine-sweep 3s infinite linear;
}

@keyframes abp-shine-sweep {
	0% { left: -100%; }
	100% { left: 200%; }
}

/* Content */
.abp-post-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.abp-post-title {
	margin: 0 0 10px 0;
	font-size: 1.25rem;
	line-height: 1.4;
	color: #333;
}

.abp-post-meta {
	font-size: 0.85rem;
	color: #777;
	margin-bottom: 15px;
}

.abp-post-excerpt {
	color: #555;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-top: auto;
}

/* Load More */
.abp-load-more-wrapper {
	text-align: center;
	margin-top: 30px;
}

.abp-load-more-btn {
	background: #333;
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s;
}

.abp-load-more-btn:hover {
	background: #555;
}

.abp-load-more-btn.loading {
	opacity: 0.7;
	cursor: not-allowed;
}

@media (max-width: 767px) {
	.abp-list-container .abp-post-card .abp-card-link {
		flex-direction: column;
	}
	.abp-list-container .abp-image-wrapper,
	.abp-list-container .abp-post-content {
		width: 100%;
	}
	.abp-masonry-container {
		column-count: 1 !important;
	}
}
