.fbp-7673abee-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: sans-serif; /* Fallback */
}

/* Base Card Styles */
.fbp-7673abee-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.fbp-7673abee-title a {
    text-decoration: none;
    color: inherit;
}
.fbp-7673abee-title {
    margin: 10px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Featured Badge (Top Left) */
.fbp-7673abee-badge-featured {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f39c12;
    color: #fff;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
    border-radius: 4px;
}

/* Category Badge */
.fbp-7673abee-badge-category {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

/* Meta Data */
.fbp-7673abee-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}
.fbp-7673abee-meta-separator {
    margin: 0 5px;
    opacity: 0.5;
}

/* --- Featured Post (Top) --- */
.fbp-7673abee-featured {
    width: 100%;
}
.fbp-7673abee-featured-inner {
    display: flex;
    flex-direction: row;
    min-height: 350px;
}
.fbp-7673abee-img-bg {
    background-color: #f5f5f5; /* fallback color */
}
.fbp-7673abee-featured-img {
    flex: 1 1 50%;
    min-height: 350px;
}
.fbp-7673abee-featured-content {
    flex: 1 1 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.fbp-7673abee-featured .fbp-7673abee-badge-category {
    background: #5b9bd5;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.fbp-7673abee-excerpt {
    margin-bottom: 25px;
    line-height: 1.5;
}
.fbp-7673abee-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #f39c12;
    color: #8a6d3b;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.fbp-7673abee-btn:hover {
    background: #f39c12;
    color: #fff;
}

/* --- Standard Posts (Grid Below) --- */
.fbp-7673abee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.fbp-7673abee-standard-img {
    height: 200px;
    width: 100%;
}
.fbp-7673abee-standard-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.fbp-7673abee-standard .fbp-7673abee-badge-category {
    color: #f39c12;
    margin-bottom: 5px;
}
.fbp-7673abee-standard .fbp-7673abee-excerpt {
    margin-bottom: 0;
}

/* --- Pagination --- */
.fbp-7673abee-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.fbp-7673abee-pagination .page-numbers {
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}
.fbp-7673abee-pagination .page-numbers:hover,
.fbp-7673abee-pagination .page-numbers.current {
    background: #f5f5f5;
    border-color: #999;
}

/* Responsive fixes for mobile layout */
@media (max-width: 992px) {
    .fbp-7673abee-featured-inner {
        flex-direction: column;
    }
    .fbp-7673abee-featured-img {
        width: 100%;
        min-height: 250px;
        /* Reset border radius for mobile stack */
        border-radius: 8px 8px 0 0 !important;
    }
    .fbp-7673abee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .fbp-7673abee-grid {
        grid-template-columns: 1fr;
    }
    .fbp-7673abee-featured-content,
    .fbp-7673abee-standard-content {
        padding: 20px; /* Force consistent padding on mobile */
    }
}