/* static/css/category_posts.css */

/* Container for Category Posts */
.category-posts-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Arial', sans-serif;
    color: #333333;
}

/* Category Title */
.category-posts-container h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #ff5722;
}

.category-posts-container .category-name {
    font-weight: normal;
}

/* Category Description */
.category-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555555;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Individual Post Card */
.post-card {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

/* Post Title */
.post-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ff5722;
}

.post-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.post-title a:hover {
    color: #e64a19;
}

/* Post Meta Information */
.post-meta {
    font-size: 0.9em;
    color: #777777;
    margin-bottom: 15px;
}

/* Post Excerpt */
.post-excerpt {
    flex-grow: 1;
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

/* Read More Button */
.read-more {
    align-self: flex-start;
    background-color: #ff5722;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-weight: bold;
}

.read-more:hover {
    background-color: #e64a19;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.page-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-link {
    background-color: #ff5722;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.page-link:hover {
    background-color: #e64a19;
}

.page-links .current {
    background-color: #cccccc;
    color: #333333;
    padding: 8px 12px;
    border-radius: 5px;
}

/* Back to Home Button */
.back-home {
    text-align: center;
    margin-top: 20px;
}

.home-button {
    background-color: #ff5722;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s;
}

.home-button:hover {
    background-color: #e64a19;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-posts-container h1 {
        font-size: 2em;
    }

    .post-title {
        font-size: 1.3em;
    }

    .read-more {
        padding: 8px 16px;
    }
}
