/* Vergleichsbox */

.ps-vergleiche {
    margin: 30px 0;
}

.ps-vergleich-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ps-vergleich-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
}

.ps-vergleich-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.ps-vergleich-type {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
}

.ps-vergleich-scores,
.ps-vergleich-votes {
    font-size: 14px;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .ps-vergleich-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ps-vergleich-grid {
        grid-template-columns: 1fr;
    }
}

/* ENDE Vergleichsbox */

/* Beliebte Community-Vergleiche */
.ps-community-vote-box {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.ps-community-score {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.ps-community-vote-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ps-vote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 30px;
    padding: 0 10px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    box-shadow: none;
}

.ps-vote-button:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.ps-top-community-comparisons {
    margin: 28px 0 0;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.ps-top-community-comparisons h3 {
    margin: 0 0 14px;
    font-size: 20px;
}

.ps-top-community-comparisons ol {
    margin: 0;
    padding-left: 20px;
}

.ps-top-community-comparisons li {
    margin-bottom: 8px;
    font-size: 14px;
}

.ps-top-community-comparisons span {
    color: #6b7280;
    font-size: 13px;
}
/* ende Beliebte Community-Vergleiche */

/* Community Stats */

.ps-community-stats {
    display: flex;
    gap: 16px;
    margin: 28px 0;
}

.ps-community-stat {
    flex: 1;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
}

.ps-community-stat strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
    color: #111827;
}

.ps-community-stat span {
    font-size: 14px;
    color: #6b7280;
}

@media (max-width: 600px) {
    .ps-community-stats {
        flex-direction: column;
    }
}

/* ENDE Community Stats */