.posts-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .posts-list {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
    }
}

.post-item {
    padding: 20px;
    background: #111;
    border: 1px solid #222;
    transition: border-color 0.3s;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-item:hover {
    border-color: #00ff00;
    text-decoration: none !important;
}

.post-item * {
    text-decoration: none !important;
}

.post-item:hover * {
    text-decoration: none !important;
}

.post-item h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.5px;
    color: #e0e0e0;
    text-decoration: none !important;
}

.post-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    text-decoration: none !important;
}

.post-excerpt {
    color: #777;
    line-height: 1.5;
    font-size: 13px;
    margin: 0;
    flex-grow: 1;
    text-decoration: none !important;
}

.post-tags {
    margin-top: auto;
    padding-top: 12px;
}

.post-tags .tag {
    color: #666;
    font-size: 12px;
    margin-right: 10px;
    text-decoration: none !important;
    pointer-events: none;
}

.posts-section {
    margin-bottom: 40px;
}

.featured-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 18px;
    color: #00ff00;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.featured-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .featured-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .featured-posts {
        grid-template-columns: repeat(3, 1fr);
    }
}

.featured-post {
    padding: 20px;
    background: #111;
    border: 1px solid #333;
    border-radius: 5px;
    transition: border-color 0.3s;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.featured-post:hover {
    border-color: #00ff00;
    text-decoration: none !important;
}

.featured-post * {
    text-decoration: none !important;
}

.featured-post:hover * {
    text-decoration: none !important;
}

.featured-post h3 {
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: normal;
    color: #e0e0e0;
    text-decoration: none !important;
}

.filters {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter-label {
    color: #888;
    font-size: 13px;
}

.filter-tag {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    padding: 5px 12px;
    border: 1px solid #222;
    border-radius: 3px;
    transition: all 0.3s;
}

.filter-tag:hover {
    border-color: #00ff00;
    color: #00ff00;
}

.filter-tag.active {
    border-color: #00ff00;
    color: #00ff00;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.page-link {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    padding: 8px 12px;
    border: 1px solid #222;
    border-radius: 3px;
    transition: all 0.3s;
}

.page-link:hover {
    color: #00ff00;
    border-color: #00ff00;
}

.page-current {
    color: #888;
    font-size: 13px;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}
