.pcf-wrapper {
    max-width: 1200px;
    margin: auto;
}

#pcf-filter {
    margin-bottom: 20px;
    padding: 8px;
}

/* Grid */
.pcf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Card */
.pcf-card {
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Image */
.pcf-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Tag badge */
.pcf-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* Content */
.pcf-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}

/* Meta */
.pcf-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.pcf-meta span {
    margin-right: 10px;
}

/* Title */
.pcf-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
        color: #1c2252;

}

/* Excerpt */
.pcf-content p {
    font-size: 14px;
    color: #555;
}

/* Read more pinned to bottom */
.pcf-content a {
    margin-top: auto;
    color: #1c2252;
    text-decoration: none;
    font-weight: 500;
}