.ospf-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ospf-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.ospf-search,
.ospf-category,
.ospf-date-from,
.ospf-date-to {
    padding: 10px;
    font-size: 14px;
}

.ospf-post {
    display: flex;
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
}

.ospf-post img {
    width: 160px;
    max-width: 160px;
    height: auto;
    object-fit: cover;
}

.ospf-content {
    flex: 1;
}

.ospf-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

.ospf-title a {
    text-decoration: none;
    color: inherit;
}

.ospf-meta {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: #666;
}

.ospf-pagination {
    text-align: center;
    margin-top: 25px;
}

.ospf-pagination button {
    padding: 6px 12px;
    margin: 0 4px;
    cursor: pointer;
}

.ospf-pagination .active {
    background: #222;
    color: #fff;
    font-weight: bold;
}