.cpp-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.cpp-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cpp-subtitle {
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
}

.cpp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.cpp-card {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: #f3f3f3;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.cpp-card:hover {
    background: #e0e0e0;
}

.cpp-card img {
    width: 28px;
    height: 20px;
}

.cpp-card strong {
    display: block;
    font-size: 14px;
}

.cpp-card span {
    font-size: 12px;
    color: #666;
}