body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Category Header */
.category-header {
    text-align: center;
    padding: 20px;
    background-color: #1C87C9;
    color: white;
}

.category-header h1 {
    font-size: 26px;
    margin-bottom: 5px;
}

.category-header p {
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto;
}

/* Category Content */
.category-content {
    width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

/* Category Posts Section */
.category-posts {
    width: 70%;
    padding: 10px;
}

/* Post Item */
.post-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.post-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.post-content h3 {
    margin: 0;
    font-size: 18px;
}

.post-content p {
    font-size: 13px;
    color: #555;
    margin: 5px 0;
}

.continue-link {
    display: inline-block;
    margin-top: 5px;
    color: #000080;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.continue-link:hover {
    text-decoration: underline;
}

/* Clue Posts Section */
.hint-articles {
    width: 30%;
    padding: 10px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hint-articles h2 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
}

/* Clue Post Item */
.hint-item {
    background: #f8f9fa;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    text-align: center;
}

.hint-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.hint-item h3 {
    font-size: 16px;
    margin: 8px 0;
}

.hint-item a {
    display: block;
    color: #000080;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.hint-item a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .category-content {
        flex-direction: column;
    }

    .category-posts {
        width: 100%;
    }

    .pagination {
        order: 2; /* Moves pagination right after category posts */
        text-align: center;
        margin-top: 10px;
    }

    .clue-posts {
        width: 100%;
        order: 3; /* Moves Clue Posts below pagination */
        margin-top: 15px;
    }
}
/* Pagination */
.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination a {
    display: inline-block;
    padding: 6px 12px;
    margin: 3px;
    border-radius: 4px;
    border: 1px solid #000080;
    color: #000080;
    text-decoration: none;
    font-size: 14px;
}

.pagination a.current {
    background-color: #000080;
    color: white;
    font-weight: bold;
}

