/* ===============================
   Blog Archive
================================ */
.blog-archive {
    background: #fff;
    color: #111;
    padding: 64px 0 96px;
}

.blog-archive__head {
    max-width: 1040px;
    margin: 0 auto 28px;
    padding: 0 24px;
    text-align: center;
}

.blog-archive__eyebrow {
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #b21b1b;
    margin: 0 0 8px;
}

.blog-archive__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.blog-grid {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* カード */
.blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.blog-card__link:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.blog-card__thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card__body {
    padding: 16px;
}

.blog-card__date {
    display: inline-block;
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}

.blog-card__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 10px;
    color: #111;
}

.blog-card__excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ページネーション */
.blog-pagination {
    max-width: 1040px;
    margin: 32px auto 0;
    padding: 0 24px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    margin: 0 3px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: #b38b2d;
    border-color: #b38b2d;
    color: #fff;
    opacity: 1;
}

.blog-empty {
    text-align: center;
    color: #666;
    padding: 40px 0;
}

/* ===============================
   Blog Single
================================ */
.blog-single {
    background: #fff;
    padding: 64px 0 96px;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    color: #111;
}

.blog-article__head {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #b38b2d;
}

.blog-article__date {
    display: inline-block;
    font-size: 13px;
    color: #999;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.blog-article__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    color: #111;
}

.blog-article__thumb {
    margin-bottom: 36px;
    border-radius: 6px;
    overflow: hidden;
}

.blog-article__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-article__body {
    font-size: 17px;
    line-height: 2;
    color: #333;
}

.blog-article__body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 16px 0;
}

.blog-article__nav {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-article__back {
    font-size: 14px;
    color: #b38b2d;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: opacity 0.2s;
}

.blog-article__back:hover {
    opacity: 0.7;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-archive {
        padding: 40px 0 72px;
    }

    .blog-article__title {
        font-size: 22px;
    }

    .blog-article__body {
        font-size: 16px;
    }
}