/* Wrapper */
.frieblpo-wrapper {
    margin: 20px 0;
}

/* Filter dropdown */
#frieblpo-filter {
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Grid layout */
.frieblpo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Card */
.frieblpo-card {
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

/* Image area */
.frieblpo-image {
    position: relative;
    height: 180px;
    background-color: #f5f5f5;
}

.frieblpo-category {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 3px;
}

/* Content area */
.frieblpo-content {
    padding: 15px;
}

/* Meta info */
.frieblpo-meta {
    font-size: 12px;
    color: var(--frieblpo-meta-color);
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
}

/* Title */
.frieblpo-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.frieblpo-content h3 a {
    color: var(--frieblpo-title-color);
    text-decoration: none;
}

.frieblpo-content h3 a:hover {
    text-decoration: underline;
}

/* Description */
.frieblpo-content p {
    color: var(--frieblpo-desc-color);
    font-size: 14px;
    margin: 0 0 10px;
}

/* Read more link */
.frieblpo-content a.read-more {
    color: var(--frieblpo-link-color);
    font-weight: bold;
    text-decoration: none;
}

.frieblpo-content a.read-more:hover {
    text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .frieblpo-grid {
        grid-template-columns: 1fr;
    }
}
