.cp-channel-section {
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
    line-height: 1.5;
}
.cp-channel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.cp-channel-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    background: #FFF3E0;
}
.cp-channel-info h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 3px 0;
    padding: 0;
}
.cp-channel-info p {
    font-size: 13px;
    color: #888;
    margin: 0;
    padding: 0;
}
.cp-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.1rem;
}
.cp-partner-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color .15s, box-shadow .15s;
    background: #fff;
}
.cp-partner-card:hover {
    border-color: #bbb;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.cp-logo-area {
    min-height: 44px;
    display: flex;
    align-items: center;
}
.cp-logo-area img {
    max-height: 44px;
    max-width: 160px;
    object-fit: contain;
}
.cp-logo-text {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    background: #f5f5f5;
    padding: 7px 14px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.cp-partner-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}
.cp-partner-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    flex: 1;
    margin: 0;
    padding: 0;
}
.cp-promo-box {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px 12px;
}
.cp-promo-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 3px;
}
.cp-promo-code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}
.cp-visit-btn {
    display: block;
    text-align: center;
    padding: 9px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    margin-top: auto;
    transition: background .12s;
}
.cp-visit-btn:hover {
    background: #f5f5f5;
}
@media(max-width: 600px) {
    .cp-partners-grid {
        grid-template-columns: 1fr;
    }
}