.news-archive-section p {
    margin: 0 0 12px;
}

.news-archive-section code {
    padding: 0.1em 0.35em;
    border-radius: 4px;
    background-color: #edf4f7;
    color: var(--theme-color);
    font-size: 0.9em;
}

.news-archive-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-fiscal-group {
    border: 1px solid #d7e0e4;
    border-radius: 12px;
    background-color: #f7fbfc;
    overflow: hidden;
}

.news-fiscal-group > summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 3.5rem 1rem 1.2rem;
    cursor: pointer;
    list-style: none;
    color: var(--theme-color);
    font-weight: 700;
}

.news-fiscal-group > summary::-webkit-details-marker {
    display: none;
}

.news-fiscal-group > summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 1.1rem;
    transform: translateY(-50%);
    font-size: 1.4rem;
    line-height: 1;
    color: var(--theme-color);
}

.news-fiscal-group[open] > summary {
    border-bottom: 1px solid #d7e0e4;
    background-color: #edf4f7;
}

.news-fiscal-group[open] > summary::after {
    content: "-";
}

.news-fiscal-title {
    font-size: 1.08rem;
}

.news-fiscal-count {
    margin-left: auto;
    color: #5b737d;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-fiscal-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px;
    background-color: #ffffff;
}

.news-entry {
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fcfcfc;
    overflow: hidden;
    scroll-margin-top: calc(var(--header-height) + 30px);
}

.news-entry[open] {
    background-color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.news-entry summary {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 1rem 3.5rem 1rem 1.2rem;
    cursor: pointer;
    list-style: none;
}

.news-entry summary::-webkit-details-marker {
    display: none;
}

.news-entry summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 1.1rem;
    transform: translateY(-50%);
    font-size: 1.4rem;
    line-height: 1;
    color: var(--theme-color);
}

.news-entry[open] summary {
    background-color: #f4f8fa;
    border-bottom: 1px solid #e0e0e0;
}

.news-entry[open] summary::after {
    content: "-";
}

.news-entry-date {
    display: inline-flex;
    width: fit-content;
    padding: 0.2em 0.7em;
    border-radius: 999px;
    background-color: #edf4f7;
    color: var(--theme-color);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.news-entry-title {
    display: block;
    color: var(--theme-color);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.55;
}

.news-entry-body {
    padding: 1rem 1.2rem 1.2rem;
}

.news-entry-body p {
    margin: 0;
    line-height: 1.8;
}

.news-entry-body p + p {
    margin-top: 0.9em;
}

.news-entry-body a {
    color: var(--theme-color);
}

.news-entry-body a:hover {
    text-decoration: underline;
}

.news-entry-links {
    margin-top: 0.9rem;
}

.news-entry-links li + li {
    margin-top: 0.35rem;
}

.news-entry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 1rem;
}

.news-entry-photo {
    margin: 0;
}

.news-entry-photo img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
}

.news-entry-photo figcaption {
    margin-top: 8px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .news-fiscal-group > summary {
        padding: 0.95rem 3rem 0.95rem 1rem;
    }

    .news-fiscal-title {
        font-size: 1rem;
    }

    .news-entry summary {
        padding: 0.95rem 3rem 0.95rem 1rem;
    }

    .news-entry-title {
        font-size: 0.98rem;
    }

    .news-entry-body {
        padding: 0.95rem 1rem 1rem;
    }
}
