/*
 * 新着情報アーカイブ専用スタイル
 */

.archive-news-page {
    background: #f8f9fa;
}

.archive-news-page .page-header-section--news {
    background: #ffffff;
    padding: 80px 0 48px;
    border-bottom: 1px solid #e2e8f0;
}

.archive-news-page .page-header-section--news .container {
    display: flex;
    justify-content: center;
}

.archive-news-page .page-header-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: center !important;
    justify-content: center !important;
}

.archive-news-page .page-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0 !important;
}

.archive-news-page .page-subtitle {
    font-size: 1.1rem !important;
    color: #64748b !important;
    margin: 0 !important;
    max-width: 680px !important;
    line-height: 1.7 !important;
}

.archive-news-page .page-breadcrumb {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
}

.archive-news-page .page-breadcrumb .breadcrumb {
    font-size: 14px;
}

.archive-news-page .page-breadcrumb .breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.archive-news-page .page-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.archive-news-page .page-breadcrumb .breadcrumb-item::after {
    content: '›';
    font-size: 12px;
    color: #cbd5f5;
}

.archive-news-page .page-breadcrumb .breadcrumb-item:last-child::after {
    content: none;
}

.archive-news-page .page-breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: #1f4e79;
    transition: color 0.2s ease;
}

.archive-news-page .page-breadcrumb .breadcrumb-item a:hover {
    color: #e74c3c;
}

.archive-news-page .page-breadcrumb .breadcrumb-item.active {
    color: #94a3b8;
}

.archive-news-page .page-breadcrumb .breadcrumb-item--current {
    color: #94a3b8;
}

.archive-news-page .filter-section {
    background: #ffffff;
    padding: 32px 0;
    border-bottom: 1px solid #e2e8f0;
}

.archive-news-page .filter-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.archive-news-page .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.archive-news-page .filter-btn {
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    color: #475569;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.archive-news-page .filter-btn:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.archive-news-page .filter-btn.active {
    background: #e74c3c;
    border-color: #e74c3c;
    color: #ffffff;
}

.archive-news-page .news-date-filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.archive-news-page .news-date-filter__label {
    font-size: 14px;
    color: #475569;
    font-weight: 600;
}

.archive-news-page .news-date-filter__select {
    padding: 10px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #334155;
    background: #ffffff;
    min-width: 200px;
    transition: border-color 0.2s ease;
}

.archive-news-page .news-date-filter__select:focus {
    outline: none;
    border-color: #e74c3c;
}

.archive-news-page .news-grid-section {
    background: #ffffff;
    padding: 48px 0 64px;
}

.archive-news-page .news-summary {
    margin-bottom: 32px;
    text-align: right;
}

.archive-news-page .news-summary__text {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.archive-news-page .news-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.archive-news-page .news-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.archive-news-page .news-card.is-hidden {
    display: none;
}

.archive-news-page .news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.archive-news-page .news-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.archive-news-page .news-card__image {
    position: relative;
    height: 220px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-news-page .news-card__thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-news-page .news-card__thumbnail--logo {
    object-fit: contain;
    padding: 32px;
    background: #ffffff;
}

.archive-news-page .news-card__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13px;
}

.archive-news-page .news-card__placeholder i {
    font-size: 32px;
}

.archive-news-page .news-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e74c3c;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 999px;
}

.archive-news-page .news-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.archive-news-page .news-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.archive-news-page .news-card__date {
    font-size: 13px;
    font-weight: 600;
    color: #1f4e79;
}

.archive-news-page .news-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.archive-news-page .news-card__category {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0c4a6e;
    font-size: 12px;
    font-weight: 600;
}

.archive-news-page .news-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.5;
}

.archive-news-page .news-card__excerpt {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.8;
    min-height: 54px;
}

.archive-news-page .news-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1f4e79;
}

.archive-news-page .news-card__arrow {
    transition: transform 0.2s ease;
}

.archive-news-page .news-card:hover .news-card__arrow {
    transform: translateX(4px);
}

.archive-news-page .pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.archive-news-page .pagination-wrapper .page-numbers {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.archive-news-page .pagination-wrapper .page-numbers li {
    display: flex;
}

.archive-news-page .pagination-wrapper .page-numbers a,
.archive-news-page .pagination-wrapper .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.archive-news-page .pagination-wrapper .page-numbers a:hover,
.archive-news-page .pagination-wrapper .page-numbers .current {
    background: #1f4e79;
    border-color: #1f4e79;
    color: #ffffff;
}

.archive-news-page .news-empty {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 80px 32px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.archive-news-page .news-empty__content {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.archive-news-page .news-empty__content i {
    font-size: 48px;
    color: #1f4e79;
}

.archive-news-page .news-empty__content h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin: 0;
}

.archive-news-page .news-empty__content p {
    color: #64748b;
    margin: 0;
    line-height: 1.7;
}

.archive-news-page .news-empty__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: #1f4e79;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease;
}

.archive-news-page .news-empty__button:hover {
    background: #2c5aa0;
}

@media (max-width: 1024px) {
    .archive-news-page .page-title {
        font-size: 2.1rem !important;
    }

    .archive-news-page .filter-section {
        padding: 24px 0;
    }
}

@media (max-width: 768px) {
    .archive-news-page .page-header-section--news {
        padding: 60px 0 36px;
    }

    .archive-news-page .filter-buttons {
        justify-content: flex-start;
    }

    .archive-news-page .filter-controls {
        align-items: flex-start;
    }

    .archive-news-page .news-summary {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .archive-news-page .filter-buttons {
        justify-content: flex-start;
        gap: 8px;
    }

    .archive-news-page .news-date-filter {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .archive-news-page .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .archive-news-page .news-grid {
        grid-template-columns: 1fr;
    }

    .archive-news-page .news-card__body {
        padding: 20px;
    }

    .archive-news-page .news-card__excerpt {
        min-height: auto;
    }
}
