/* EXACT COPY OF INLINE STYLES — сокращенные классы */

.ppg {
    display: grid;
    justify-content: center;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .ppg {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .ppg {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.ppi {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.ppt {
    padding: 0px 7px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.vc {
    margin: 0;
    text-align: center;
}
