/* ============================================================
   Blog — listing + single post
   ============================================================ */

.noctu-blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.noctu-blog-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #555;
    padding: 15px;
}

.noctu-blog-thumb img {
    width: 160px;
    height: auto;
    border: 1px solid #666;
}

.noctu-blog-card-body h2 {
    text-align: left;
    margin: 0 0 5px 0;
    font-size: 20px;
}

.noctu-blog-card-body h2 a {
    color: ghostwhite;
    text-decoration: none;
}

.noctu-blog-card-body h2 a:hover {
    color: greenyellow;
}

.noctu-blog-meta {
    color: silver;
    font-size: 13px;
    font-family: 'Trebuchet MS', serif;
    margin-bottom: 10px;
}

.noctu-blog-excerpt {
    color: ghostwhite;
    line-height: 1.5;
}

.noctu-blog-readmore {
    display: inline-block;
    margin-top: 10px;
    color: greenyellow;
    text-decoration: none;
    font-family: 'Trebuchet MS', serif;
    font-weight: bold;
}

.noctu-blog-readmore:hover {
    color: silver;
}

.noctu-blog-pagination {
    margin-top: 30px;
    text-align: center;
}

.noctu-blog-pagination a,
.noctu-blog-pagination span {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 4px;
    border: 1px solid #666;
    color: ghostwhite;
    text-decoration: none;
}

.noctu-blog-pagination .current {
    background: dimgray;
}

/* Single post */

.noctu-blog-single h1 {
    margin-bottom: 5px;
}

.noctu-blog-single-thumb {
    text-align: center;
    margin: 20px 0;
}

.noctu-blog-single-thumb img {
    max-width: 100%;
    border: 1px solid #666;
}

.noctu-blog-content {
    color: ghostwhite;
    line-height: 1.6;
    margin-top: 20px;
}

.noctu-blog-content a {
    color: greenyellow;
}

.noctu-blog-content a:hover {
    color: silver;
}
