.cpt-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cpt-social-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(120,145,159,1);
    color: #fff;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.cpt-social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cpt-social-icon:hover {
    background: #06212d;
    color: #ffffff;
    transform: translateY(-2px);
}