/**
 * Archive Topic Page Styles (SP)
 */

/* Hero Section (FAQページと同様のスタイル) */
.archive-hero {
    position: relative;
    width: 100%;
    background: linear-gradient(179.804deg, rgb(0, 73, 129) 0.5824%, rgb(0, 104, 183) 59.443%, rgb(0, 73, 129) 98.683%);
    padding: 12px 20px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.archive-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    margin: 0;
    text-align: center;
}

.archive-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    text-align: center;
}

/* Topic Archive Section */
.section-topic-archive {
    padding: 40px 20px;
    background: #f8f8f8;
}

.topic-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Special Card */
.special-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* カード全体をリンクにするためのスタイル */
.special-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.special-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-content {
    padding: 20px;
}

.special-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: #002060;
    background: rgba(0, 32, 96, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.special-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
}

.special-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-view-more-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #002060;
    text-decoration: none;
}

.btn-view-more-sm .arrow-icon {
    width: 10px;
    height: 10px;
}

/* Pagination */
.navigation.pagination {
    margin-top: 32px;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    border: 1px solid #CDD8DE;
    border-radius: 4px;
    background-color: #fff;
}

.page-numbers.current {
    background: #002060;
    border-color: #002060;
    color: #fff;
}

.page-numbers.prev,
.page-numbers.next {
    width: auto;
    padding: 0 12px;
    border: none;
}

.page-numbers.prev img,
.page-numbers.next img {
    width: 14px;
    height: 14px;
}

/* No Posts */
.no-posts {
    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 60px 0;
}
