/* What's Your Poly Style? — Types Reference Stylesheet */

#wyps-types-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px;
    font-family: Georgia, 'Times New Roman', serif;
    color: #2a2a2a;
}

/* ── Hero ── */
.wt-hero {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0cedd;
}
.wt-hero h2 {
    font-size: 1.9em;
    color: #7b3f6e;
    margin: 0 0 8px;
    font-weight: normal;
}
.wt-hero p {
    font-size: 0.95em;
    color: #777;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ── Filter buttons ── */
.wt-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2rem;
    justify-content: center;
}
.wt-filter button {
    font-family: Arial, sans-serif;
    font-size: 0.78em;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #d9c4d6;
    background: transparent;
    color: #888;
    cursor: pointer;
    transition: all 0.15s;
}
.wt-filter button:hover,
.wt-filter button.wt-active {
    background: #7b3f6e;
    color: #fff;
    border-color: #7b3f6e;
}

/* ── Section ── */
.wt-section {
    margin-bottom: 2.5rem;
}
.wt-section-label {
    font-family: Arial, sans-serif;
    font-size: 0.72em;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
    padding-bottom: 6px;
    border-bottom: 1px solid #ece0ea;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wt-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Grid & Cards ── */
.wt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}
.wt-card {
    background: #fdf8fc;
    border: 1px solid #e8d5e4;
    border-radius: 8px;
    padding: 1rem 1.2rem;
    transition: border-color 0.15s;
}
.wt-card:hover {
    border-color: #c4a0bb;
}
.wt-card-name {
    font-size: 1.05em;
    font-weight: bold;
    color: #4a2642;
    margin: 0 0 6px;
    line-height: 1.3;
}
.wt-card-def {
    font-family: Arial, sans-serif;
    font-size: 0.875em;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ── Count ── */
.wt-count {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 0.82em;
    color: #aaa;
    margin-top: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 520px) {
    .wt-grid {
        grid-template-columns: 1fr;
    }
    .wt-filter button {
        font-size: 0.72em;
        padding: 5px 12px;
    }
}
