.part-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.part-btn {
    background: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    min-width: 90px;
    text-align: center;
    flex: 1 1 calc(33% - 10px);
    box-sizing: border-box;
}

.part-btn:hover {
    background: #333;
}
.part-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.part-btn {
    background: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    flex: 1 1 calc(33.333% - 10px);
    box-sizing: border-box;
}

.part-btn:hover {
    background: #333;
}
/* =========================================================
   SPONSOR PROJECT
========================================================= */

.sponsor-section {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,.10);
}

.sponsor-section p {
    max-width: 540px;
    margin: 0 auto 14px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.sponsor-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0d6efd;
    color: #fff;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.sponsor-btn:hover {
    background: #0b5ed7;
    color: #fff;
    text-decoration: none;
}