/* =========================================================================
   Voice Page Styles
   ========================================================================= */

/* === Stats === */
.stats-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 20px;
}

.stats-main {
    text-align: center;
    margin-bottom: 20px;
}

.stats-label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.stats-num {
    font-family: var(--font-logo);
    font-size: 64px;
    color: var(--gold);
    line-height: 1;
    font-weight: 600;
}

.stats-num small {
    font-size: 32px;
}

.stats-sub {
    font-size: 16px;
    color: var(--text-sub);
}


/* === Filters === */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.filter-btn {
    border: 1px solid var(--border);
    background: var(--white);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.is-active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}


/* === Reviews Grid (Masonry-ish) === */
.voice-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.voice-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    display: flex;
    /* Changed to flex column for better height dist */
    flex-direction: column;
}

.voice-header {
    margin-bottom: 12px;
}

.voice-star {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 4px;
}

.voice-meta {
    font-size: 13px;
    color: #999;
}

.voice-menu {
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 15px;
    border-bottom: 1px solid var(--bg-sub);
    padding-bottom: 12px;
    display: inline-block;
}

.voice-comment {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-sub);
}

/* CTA Banner within Grid */
.voice-cta-banner {
    grid-column: 1 / -1;
    background: var(--gold);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-card);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-block: 20px;
}

.voice-cta-banner p {
    font-size: 20px;
    font-family: var(--font-heading-jp);
}

@media (max-width: 600px) {
    .voice-cta-banner {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
}


/* === Pagination === */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 80px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    /* button radius */
    color: var(--text-sub);
    background: var(--white);
    font-family: var(--font-logo);
    transition: var(--transition-base);
}

.page-link:hover,
.page-link.is-current {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.page-dots {
    color: var(--text-sub);
    padding-inline: 4px;
}