/*
Theme Name: 1993.info
Theme URI: https://1993.info
Author: taka
Author URI: https://1993.info
Description: Be somebody, not nobody
Version: 1.0
*/

/*General*/
body {
    margin: 0;
    font-family: sans-serif;
}
a{
	text-decoration: none;
}

/*Header*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}

.site-title a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/*Post*/
.post-card {
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    transition: background 0.2s;
}

.post-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
}

.post-link:hover {
    background-color: #f9f9f9;
}

.post-title {
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem;
}

.post-excerpt {
    color: #555;
}


/*Single*/
.single-post {
    font-size: 1.05rem;
    color: #222;
}

.single-post .post-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.single-post .post-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.single-post .post-content {
    margin-top: 1rem;
}

.single-post .post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem 0;
}

/*Pagination*/
.pagination {
    text-align: center;
    margin: 35px auto;
    display: block;
}
.page-numbers.current {
    color: #fff;
    background: #555;
    border-radius: 7px;
	font-size: 14px;
	margin: 0 3px;
	padding: 4px 9px 5px;
}
a.page-numbers {
    color: #555;
	font-size: 14px;
    border-radius: 7px;
	margin: 0 3px;
	padding: 4px 10px 5px;
}
a.page-numbers:hover{
	background: #f7f7f7;
	opacity: 1;
}
.next.page-numbers, .prev.page-numbers {
    background: #f7f7f7;
}
.pagination-prev, .pagination-next {
    font-size: 12px;
	color: #999;
}
/*SP Tablet*/
@media (max-width: 768px) {
	
}
/*SP*/
@media (max-width: 480px) {
	.page-numbers.current{
		font-size: 16px;
	}
	a.page-numbers{
		font-size: 16px;
	}
}