.apf-grid {
    display: flex;
    gap: 20px;
}
.apf-left {
    width: 30%;
}
.apf-right {
    width: 70%;
}
.apf-filters {
    margin-top: 10px;
}
.apf-taxonomy-group {
    margin-bottom: 20px;
}
.apf-taxonomy-group strong {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.apf-post {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.apf-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.apf-post {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.apf-post-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.apf-post-title a {
    color: #0073aa;
    text-decoration: none;
}

.apf-post-title a:hover {
    text-decoration: underline;
}

.apf-post-excerpt {
    color: #555;
    font-size: 0.95rem;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .apf-grid {
        flex-direction: column;
    }
    .apf-left, .apf-right {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* Basic styling for Show More link */
.apf-show-more {
    display: inline-block;
    margin-top: 5px;
    color: #0073aa;
    cursor: pointer;
    font-size: 0.9em;
}

.apf-show-more:hover {
    text-decoration: underline;
}