.grid-container {
    max-width: 100% !important;
}

.site-content {
    padding: 0 !important;
}

.category-2 .inside-navigation,
.category-2 .site-footer,
.category-2 .max-box {
    max-width: 1200px !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.inside-navigation {
    padding: 0 15px !important;
}

.page-header {
    margin-bottom: 0 !important;
}

.page-header h1 {
    text-align: center;
}

.generate-columns-container {
    display: block !important;
}

.subcategory-links {
    margin-bottom: 25px;
    padding: 0 15px;
}

.subcategory-link {
    display: inline-block;
    background-color: #f8f9fa;
    color: #495057;
    padding: 5px 10px;
    margin: 5px 5px 5px 0;
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid #dee2e6;
    transition: background-color 0.3s ease;
}

.subcategory-link:hover {
    background-color: #e9ecef;
    color: #007bff;
    border-color: #ced4da;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
}

.post-thumbnail img {
    border-radius: 12px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    max-width: none;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.post-title {
    color: #333;
    text-decoration: none;
}

.post-title:hover {
    color: #007bff;
}

.post-size {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: #575760;
    font-size: 85%;
}

.post-size::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23575760' viewBox='0 0 16 16'%3E%3Cpath d='M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5'/%3E%3Cpath d='M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .post-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}