/* --- Wrapper & Typography --- */
.news-shiciran-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: sans-serif;
    color: #1b263b; /* Dark navy color */
}

/* --- Header & Titles --- */
.news-shiciran-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-shiciran-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.news-shiciran-text-green {
    color: #4CAF6A; /* Matches the green in the UI */
}

.news-shiciran-subtitle {
    font-size: 1.7rem;
    font-weight: bold;
    color: #1b263b;
    margin-top: 0;
}

/* --- Filter Tabs --- */
.news-shiciran-tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
}

.news-shiciran-tab {
    display: inline-block;
    padding: 8px 24px;
    background-color: #c4c4c4;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.news-shiciran-tab.active,
.news-shiciran-tab:hover {
    background-color: #4CAF6A;
}

/* --- News List Items --- */
.news-shiciran-list {
    border-top: 1px solid #eaeaea;
}

.news-shiciran-item {
    border-bottom: 1px solid #eaeaea;
    transition: background-color 0.2s ease;
}

.news-shiciran-item:hover {
    background-color: #fcfcfc;
}

.news-shiciran-link {
    display: flex;
    align-items: center;
    padding: 25px 10px;
    text-decoration: none;
    color: inherit;
}

.news-shiciran-badge {
    background-color: #4CAF6A;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 6px 12px;
    min-width: 90px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.news-shiciran-date {
    font-size: 0.85rem;
    font-weight: bold;
    margin: 0 30px;
    min-width: 80px;
    letter-spacing: 1px;
}

.news-shiciran-post-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    flex-grow: 1; /* Pushes the arrow to the far right */
}

.news-shiciran-arrow {
    color: #4CAF6A;
    font-size: 1.2rem;
    margin-left: 20px;
}

/* --- Pagination --- */
.news-shiciran-pagination {
    margin-top: 50px;
    text-align: center;
}

.news-shiciran-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: 0 5px;
    text-decoration: none;
    color: #1b263b;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 50%;
}

.news-shiciran-pagination .page-numbers.current {
    background-color: #f0f0f0;
}

.news-shiciran-pagination .page-numbers.next,
.news-shiciran-pagination .page-numbers.prev {
    border: 1px solid #ccc;
    color: #666;
}

/* --- Single News Wrapper --- */
.news-shosai-wrapper {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: sans-serif;
    color: #1b263b; /* Dark text color */
}

/* --- Top Meta (Badge & Date) --- */
.news-shosai-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.news-shosai-badge {
    background-color: #4CAF6A; /* Green from the UI */
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    letter-spacing: 1px;
}

.news-shosai-date {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* --- Main Title (H1) --- */
.news-shosai-title {
    font-size: 1.8rem;
    color: #4CAF6A; /* Green text for main title */
    margin-bottom: 40px;
    line-height: 1.4;
}

/* --- Content Area (Gutenberg Blocks) --- */
.news-shosai-content {
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 60px;
}

/* Automatically style H2 blocks inside the editor */
.news-shosai-content h2 {
    background-color: #eaf6ec; /* Light green background */
    color: #1b263b;
    padding: 15px 20px;
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Automatically style H3 blocks inside the editor */
.news-shosai-content h3 {
    border-left: 4px solid #4CAF6A; /* Green left border */
    padding-left: 15px;
    font-size: 1.1rem;
    color: #1b263b;
    margin-top: 35px;
    margin-bottom: 15px;
}

/* Ensure images inside the content are responsive */
.news-shosai-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    background-color: #e0e0e0; /* Placeholder grey for loading */
}

/* --- Footer & Back Button --- */
.news-shosai-footer {
    border-top: 1px solid #1b263b; /* Dark line separator */
    padding-top: 40px;
    text-align: center;
}

.news-shosai-back-btn {
    display: inline-block;
    border: 1px solid #4CAF6A;
    color: #4CAF6A;
    background-color: #ffffff;
    padding: 10px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-shosai-back-btn:hover {
    background-color: #4CAF6A;
    color: #ffffff;
}

@media (max-width: 768px) {
    .news-shiciran-link {
        flex-wrap: wrap;
        position: relative;
    }
    
    .news-shiciran-date {
        margin: 0 0 0 15px;
    }

    .news-shiciran-post-title {
        width: 100%;
        margin-top: 15px;
        padding-right: 30px;
    }

    .news-shiciran-arrow {
        position: absolute;
        right: 10px;
        bottom: 25px;
    }
    
    .news-shiciran-tabs {
        flex-wrap: wrap;
    }
}